diff --git a/code/__DEFINES/__game.dm b/code/__DEFINES/__game.dm index e667ccf6db3f..c07da056f403 100644 --- a/code/__DEFINES/__game.dm +++ b/code/__DEFINES/__game.dm @@ -31,7 +31,7 @@ #define MAP_KUTJEVO "Kutjevo Refinery" #define MAP_ICE_COLONY_V3 "Shivas Snowball" //Ice Rework, low pop enabled. #define MAP_RUNTIME "USS Runtime" -#define MAP_LV522_CHANCES_CLAIM "LV-522 Chance's Claim" // Highpop Only +#define MAP_LV522_CHANCES_CLAIM "LV-522 Chance's Claim" #define MAP_NEW_VARADERO "New Varadero"//ice colony underground but as its own map #define MAP_CHINOOK "Chinook 91 GSO" //admin level diff --git a/code/__DEFINES/mode.dm b/code/__DEFINES/mode.dm index 368553468af0..04c7993bd9f2 100644 --- a/code/__DEFINES/mode.dm +++ b/code/__DEFINES/mode.dm @@ -57,7 +57,7 @@ #define MODE_BASIC_RT (1<<11) #define MODE_RANDOM_HIVE (1<<12)// Makes Join-as-Xeno choose a hive to join as burrowed larva at random rather than at user's input.. #define MODE_THUNDERSTORM (1<<13)// Enables thunderstorm effects on maps that are compatible with it. (Lit exterior tiles, rain effects) -#define MODE_FACTION_CLASH (1<<14)// Disables scopes, sniper sentries, OBs, shooting corpses, dragging enemy corpses, stripping enemy corpses +#define MODE_FACTION_CLASH (1<<14)// Disables scopes, sniper sentries, OBs, shooting corpses, dragging enemy corpses, stripping enemy corpses, increase armor bullet/bomb/internal damage protection // Gamemode Toggleable Flags #define MODE_NO_SNIPER_SENTRY (1<<0) /// Upgrade kits will no longer allow you to select long-range upgrades diff --git a/code/__DEFINES/tgs.dm b/code/__DEFINES/tgs.dm index 4766b3dfe661..42f2d5fc31fe 100644 --- a/code/__DEFINES/tgs.dm +++ b/code/__DEFINES/tgs.dm @@ -1,7 +1,7 @@ // tgstation-server DMAPI // The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in IETF RFC 2119. -#define TGS_DMAPI_VERSION "7.2.1" +#define TGS_DMAPI_VERSION "7.3.0" // All functions and datums outside this document are subject to change with any version and should not be relied on. diff --git a/code/__HELPERS/unsorted.dm b/code/__HELPERS/unsorted.dm index 5a307ac02ed5..768f0da9704d 100644 --- a/code/__HELPERS/unsorted.dm +++ b/code/__HELPERS/unsorted.dm @@ -46,8 +46,8 @@ #define format_frequency(f) "[floor((f) / 10)].[(f) % 10]" #define reverse_direction(direction) ( \ - ( dir & (NORTH|SOUTH) ? ~dir & (NORTH|SOUTH) : 0 ) | \ - ( dir & (EAST|WEST) ? ~dir & (EAST|WEST) : 0 ) \ + ( direction & (NORTH|SOUTH) ? ~direction & (NORTH|SOUTH) : 0 ) | \ + ( direction & (EAST|WEST) ? ~direction & (EAST|WEST) : 0 ) \ ) // The sane, counter-clockwise angle to turn to get from /direction/ A to /direction/ B diff --git a/code/datums/decorators/gamemode_decorator.dm b/code/datums/decorators/gamemode_decorator.dm index bc89d7a20632..0684735e7205 100644 --- a/code/datums/decorators/gamemode_decorator.dm +++ b/code/datums/decorators/gamemode_decorator.dm @@ -44,3 +44,79 @@ /datum/decorator/gamemode/decorate(atom/object) for(var/edit in edits) object.vars[edit] = edits[edit] + +//*********************** Human Versus Human ***********************// +//************ USCM Armour Values ************// + +//**** Medium Armor ****// +GAMEMODE_DECORATOR(/obj/item/clothing/suit/storage/marine/medium, /datum/game_mode/extended/faction_clash, list( + ARMOR_EDIT(armor_bullet, CLOTHING_ARMOR_HIGH), + ARMOR_EDIT(armor_bomb, CLOTHING_ARMOR_MEDIUM), + ARMOR_EDIT(armor_internaldamage, CLOTHING_ARMOR_HIGH) +)) + +//**** Light Armor ****// +GAMEMODE_DECORATOR(/obj/item/clothing/suit/storage/marine/light, /datum/game_mode/extended/faction_clash, list( + ARMOR_EDIT(armor_bullet, CLOTHING_ARMOR_MEDIUM), + ARMOR_EDIT(armor_bomb, CLOTHING_ARMOR_MEDIUMLOW), + ARMOR_EDIT(armor_internaldamage, CLOTHING_ARMOR_MEDIUMHIGH) +)) + +//**** Heavy Armor ****// +GAMEMODE_DECORATOR(/obj/item/clothing/suit/storage/marine/heavy, /datum/game_mode/extended/faction_clash, list( + ARMOR_EDIT(armor_internaldamage, CLOTHING_ARMOR_HIGH) +)) + +//**** Smartgunner ****// +GAMEMODE_DECORATOR(/obj/item/clothing/suit/storage/marine/smartgunner, /datum/game_mode/extended/faction_clash, list( + ARMOR_EDIT(armor_bullet, CLOTHING_ARMOR_HIGH), + ARMOR_EDIT(armor_internaldamage, CLOTHING_ARMOR_HIGH) +)) + +//**** Military Police and Command ****// +GAMEMODE_DECORATOR(/obj/item/clothing/suit/storage/marine/MP, /datum/game_mode/extended/faction_clash, list( + ARMOR_EDIT(armor_bullet, CLOTHING_ARMOR_HIGH), + ARMOR_EDIT(armor_bomb, CLOTHING_ARMOR_MEDIUMHIGH), + ARMOR_EDIT(armor_internaldamage, CLOTHING_ARMOR_HIGH) +)) + +//**** B18 Spec Armor ****// +GAMEMODE_DECORATOR(/obj/item/clothing/suit/storage/marine/specialist, /datum/game_mode/extended/faction_clash, list( + ARMOR_EDIT(armor_bullet, CLOTHING_ARMOR_HIGHPLUS), + ARMOR_EDIT(armor_internaldamage, CLOTHING_ARMOR_HIGHPLUS) +)) + +//**** Grenadier Spec Armor ****// +GAMEMODE_DECORATOR(/obj/item/clothing/suit/storage/marine/M3G, /datum/game_mode/extended/faction_clash, list( + ARMOR_EDIT(armor_bullet, CLOTHING_ARMOR_HIGH), + ARMOR_EDIT(armor_internaldamage, CLOTHING_ARMOR_HIGH) +)) + +//**** RPG Spec Armor ****// +GAMEMODE_DECORATOR(/obj/item/clothing/suit/storage/marine/M3T, /datum/game_mode/extended/faction_clash, list( + ARMOR_EDIT(armor_bullet, CLOTHING_ARMOR_HIGH), + ARMOR_EDIT(armor_internaldamage, CLOTHING_ARMOR_HIGH) +)) + +//**** Scout Spec Armor ****// +GAMEMODE_DECORATOR(/obj/item/clothing/suit/storage/marine/M3S, /datum/game_mode/extended/faction_clash, list( + ARMOR_EDIT(armor_bullet, CLOTHING_ARMOR_HIGH), + ARMOR_EDIT(armor_bomb, CLOTHING_ARMOR_MEDIUM), + ARMOR_EDIT(armor_internaldamage, CLOTHING_ARMOR_HIGH) +)) + +//**** Sniper Spec Armor ****// +GAMEMODE_DECORATOR(/obj/item/clothing/suit/storage/marine/ghillie, /datum/game_mode/extended/faction_clash, list( + ARMOR_EDIT(armor_bullet, CLOTHING_ARMOR_HIGH), + ARMOR_EDIT(armor_bomb, CLOTHING_ARMOR_MEDIUM), + ARMOR_EDIT(armor_internaldamage, CLOTHING_ARMOR_HIGH) +)) + +//**** Pyro Spec Armor ****// +GAMEMODE_DECORATOR(/obj/item/clothing/suit/storage/marine/M35, /datum/game_mode/extended/faction_clash, list( + ARMOR_EDIT(armor_bullet, CLOTHING_ARMOR_HIGH), + ARMOR_EDIT(armor_bomb, CLOTHING_ARMOR_MEDIUM), + ARMOR_EDIT(armor_internaldamage, CLOTHING_ARMOR_HIGH) +)) + +//*********************** ------------------ ***********************// diff --git a/code/datums/emergency_calls/emergency_call.dm b/code/datums/emergency_calls/emergency_call.dm index 885844b6ec2e..e956a9731c7c 100644 --- a/code/datums/emergency_calls/emergency_call.dm +++ b/code/datums/emergency_calls/emergency_call.dm @@ -324,7 +324,7 @@ if(spawn_max_amount && i < mob_max) - for(var/c in i to mob_max) + for(var/c in i to mob_max - 1) create_member(null, override_spawn_loc) candidates = list() diff --git a/code/datums/pain/_pain.dm b/code/datums/pain/_pain.dm index 826773504151..6c494fc65ed2 100644 --- a/code/datums/pain/_pain.dm +++ b/code/datums/pain/_pain.dm @@ -286,15 +286,20 @@ /datum/pain/proc/oxyloss_drag(mob/living/source, mob/puller) SIGNAL_HANDLER if(isxeno(puller) && source.stat == UNCONSCIOUS) + var/mob/living/carbon/xenomorph/xeno_puller = puller + if(source.ally_of_hivenumber(xeno_puller.hivenumber)) + return if(source.get_species()) var/mob/living/carbon/human/H = source if(H.species.flags & HAS_HARDCRIT) source.apply_damage(20, OXY) -/datum/pain/proc/handle_devour(mob/living/source) +/datum/pain/proc/handle_devour(mob/living/source, mob/living/carbon/xenomorph/devourer) SIGNAL_HANDLER if(source.chestburst) return + if(source.ally_of_hivenumber(devourer.hivenumber)) + return oxy_kill(source) return COMPONENT_CANCEL_DEVOUR diff --git a/code/game/jobs/job/civilians/other/liaison.dm b/code/game/jobs/job/civilians/other/liaison.dm index cbbb87124957..765235233e85 100644 --- a/code/game/jobs/job/civilians/other/liaison.dm +++ b/code/game/jobs/job/civilians/other/liaison.dm @@ -6,7 +6,7 @@ selection_class = "job_cl" flags_startup_parameters = ROLE_ADD_TO_DEFAULT gear_preset = /datum/equipment_preset/uscm_ship/liaison - entry_message_body = "As a representative of Weyland-Yutani Corporation, your job requires you to stay in character at all times. You are not required to follow military orders; however, you cannot give military orders. Your primary job is to observe and report back your findings to Weyland-Yutani. Follow regular game rules unless told otherwise by your superiors. Use your office fax machine to communicate with corporate headquarters or to acquire new directives. You may not receive anything back, and this is normal." + entry_message_body = "As a representative of Weyland-Yutani Corporation, your job requires you to stay in character at all times. While in the AO (Area of Operation), you are subject to orders given by military personnel. On ship, you are subject to orders only by the Command and Security departments. You are not required to follow any orders but you can be arrested if you do not. Your primary job is to observe and report back your findings to Weyland-Yutani. Follow regular game rules unless told otherwise by your superiors. Use your office fax machine to communicate with corporate headquarters or to acquire new directives. You may not receive anything back, and this is normal." var/mob/living/carbon/human/active_liaison /datum/job/civilian/liaison/generate_entry_conditions(mob/living/liaison, whitelist_status) diff --git a/code/game/jobs/job/command/cic/executive.dm b/code/game/jobs/job/command/cic/executive.dm index f717a03e1229..f03c384bbb86 100644 --- a/code/game/jobs/job/command/cic/executive.dm +++ b/code/game/jobs/job/command/cic/executive.dm @@ -18,7 +18,8 @@ GLOB.marine_leaders -= JOB_XO AddTimelock(/datum/job/command/executive, list( - JOB_COMMAND_ROLES = 5 HOURS, + JOB_COMMAND_ROLES = 20 HOURS, + JOB_SQUAD_LEADER = 10 HOURS, )) /obj/effect/landmark/start/executive diff --git a/code/game/machinery/computer/groundside_operations.dm b/code/game/machinery/computer/groundside_operations.dm index 376357a49174..a4c3afeb7e7e 100644 --- a/code/game/machinery/computer/groundside_operations.dm +++ b/code/game/machinery/computer/groundside_operations.dm @@ -113,7 +113,7 @@ if(show_command_squad) dat += format_list_of_marines(list(GLOB.marine_leaders[JOB_CO], GLOB.marine_leaders[JOB_XO]) + GLOB.marine_leaders[JOB_SO], list(JOB_CO, JOB_XO, JOB_SO)) else if(current_squad) - dat += format_list_of_marines(current_squad.marines_list, list(JOB_SQUAD_LEADER, JOB_SQUAD_SPECIALIST, JOB_SQUAD_MEDIC, JOB_SQUAD_ENGI, JOB_SQUAD_SMARTGUN, JOB_SQUAD_MARINE)) + dat += format_list_of_marines(current_squad.marines_list, list(JOB_SQUAD_LEADER, JOB_SQUAD_TEAM_LEADER, JOB_SQUAD_SPECIALIST, JOB_SQUAD_SMARTGUN, JOB_SQUAD_MEDIC, JOB_SQUAD_ENGI, JOB_SQUAD_MARINE)) else dat += "No Squad selected!
" dat += "

" diff --git a/code/game/machinery/vending/vendor_types/requisitions.dm b/code/game/machinery/vending/vendor_types/requisitions.dm index ec3783837edf..e530b754d78b 100644 --- a/code/game/machinery/vending/vendor_types/requisitions.dm +++ b/code/game/machinery/vending/vendor_types/requisitions.dm @@ -4,7 +4,7 @@ /obj/structure/machinery/cm_vending/sorted/cargo_guns name = "\improper ColMarTech Automated Armaments Vendor" - desc = "An automated supply rack hooked up to a big storage of various firearms and explosives. Can be accessed by the Requisitions Officer and Cargo Techs." + desc = "An automated supply rack hooked up to a big storage of various firearms, explosives, load carrying equipment and other miscellaneous items. Can be accessed by the Quartermaster and Cargo Technicians." icon_state = "req_guns" req_access = list(ACCESS_MARINE_CARGO) vendor_theme = VENDOR_THEME_USCM @@ -224,7 +224,7 @@ /obj/structure/machinery/cm_vending/sorted/cargo_ammo name = "\improper ColMarTech Automated Munition Vendor" - desc = "An automated supply rack hooked up to a big storage of various ammunition types. Can be accessed by the Requisitions Officer and Cargo Techs." + desc = "An automated supply rack hooked up to a big storage of various ammunition types. Can be accessed by the Quartermaster and Cargo Technicians." icon_state = "req_ammo" req_access = list(ACCESS_MARINE_CARGO) vendor_theme = VENDOR_THEME_USCM @@ -367,7 +367,7 @@ /obj/structure/machinery/cm_vending/sorted/attachments name = "\improper Armat Systems Attachments Vendor" - desc = "An automated supply rack hooked up to a big storage of weapons attachments. Can be accessed by the Requisitions Officer and Cargo Techs." + desc = "An automated supply rack hooked up to a big storage of weapons attachments. Can be accessed by the Quartermaster and Cargo Technicians." req_access = list(ACCESS_MARINE_CARGO) vendor_theme = VENDOR_THEME_USCM icon_state = "req_attach" @@ -436,7 +436,7 @@ /obj/structure/machinery/cm_vending/sorted/uniform_supply name = "\improper ColMarTech Surplus Uniform Vendor" - desc = "An automated supply rack hooked up to a big storage of standard marine uniforms. Can be accessed by the Requisitions Officer and Cargo Techs." + desc = "An automated supply rack hooked up to a big storage of standard marine uniforms. Can be accessed by the Quartermaster and Cargo Technicians." icon_state = "clothing" req_access = list() req_one_access = list(ACCESS_MARINE_CARGO) @@ -466,7 +466,7 @@ list("ARMOR", -1, null, null), list("M10 Pattern Marine Helmet", 20, /obj/item/clothing/head/helmet/marine, VENDOR_ITEM_REGULAR), list("M10 Pattern Technician Helmet", 20, /obj/item/clothing/head/helmet/marine/tech, VENDOR_ITEM_REGULAR), - list("M10 Pattern Corpman Helmet", 20, /obj/item/clothing/head/helmet/marine/medic, VENDOR_ITEM_REGULAR), + list("M10 Pattern Corpsman Helmet", 20, /obj/item/clothing/head/helmet/marine/medic, VENDOR_ITEM_REGULAR), list("M3 Pattern Carrier Marine Armor", 20, /obj/item/clothing/suit/storage/marine/medium/carrier, VENDOR_ITEM_REGULAR), list("M3 Pattern Padded Marine Armor", 20, /obj/item/clothing/suit/storage/marine/medium/padded, VENDOR_ITEM_REGULAR), list("M3 Pattern Padless Marine Armor", 20, /obj/item/clothing/suit/storage/marine/medium/padless, VENDOR_ITEM_REGULAR), diff --git a/code/game/objects/items/devices/defibrillator.dm b/code/game/objects/items/devices/defibrillator.dm index 0497a75e6fba..2debcf82d7d0 100644 --- a/code/game/objects/items/devices/defibrillator.dm +++ b/code/game/objects/items/devices/defibrillator.dm @@ -166,7 +166,7 @@ var/mob/dead/observer/G = H.get_ghost() if(istype(G) && G.client) - playsound_client(G.client, 'sound/effects/revive_notify.ogg') + playsound_client(G.client, 'sound/effects/adminhelp_new.ogg') to_chat(G, SPAN_BOLDNOTICE(FONT_SIZE_LARGE("Someone is trying to revive your body. Return to it if you want to be resurrected! \ (Verbs -> Ghost -> Re-enter corpse, or click here!)"))) diff --git a/code/game/objects/items/storage/firstaid.dm b/code/game/objects/items/storage/firstaid.dm index d37bddf283db..a684586675a6 100644 --- a/code/game/objects/items/storage/firstaid.dm +++ b/code/game/objects/items/storage/firstaid.dm @@ -762,6 +762,24 @@ storage_flags = STORAGE_FLAGS_BOX display_maptext = FALSE +/obj/item/storage/pill_bottle/packet/Initialize() + . = ..() + RegisterSignal(src, COMSIG_ITEM_DROPPED, PROC_REF(try_forced_folding)) + +/obj/item/storage/pill_bottle/packet/proc/try_forced_folding(datum/source, mob/user) + SIGNAL_HANDLER + + if(!isturf(loc)) + return + + if(locate(/obj/item/reagent_container/pill) in src) + return + + UnregisterSignal(src, COMSIG_ITEM_DROPPED) + storage_close(user) + to_chat(user, SPAN_NOTICE("You throw away [src].")) + qdel(src) + /obj/item/storage/pill_bottle/packet/tricordrazine name = "Tricordazine pill packet" icon_state = "tricordrazine_packet" diff --git a/code/game/objects/structures/barricade/non_folding.dm b/code/game/objects/structures/barricade/non_folding.dm index 575f1da738bf..a7c2695061b2 100644 --- a/code/game/objects/structures/barricade/non_folding.dm +++ b/code/game/objects/structures/barricade/non_folding.dm @@ -290,6 +290,7 @@ force_level_absorption = 20 stack_type = /obj/item/stack/sheet/plasteel debris = list(/obj/item/stack/sheet/plasteel) + stack_amount = 6 destroyed_stack_amount = 3 barricade_type = "new_plasteel" repair_materials = list("plasteel" = 0.45) diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 2270685c0cf6..7fe5a1579b07 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -142,7 +142,8 @@ GLOBAL_LIST_INIT(admin_verbs_minor_event, list( /client/proc/toggle_hardcore_perma, /client/proc/toggle_bypass_joe_restriction, /client/proc/toggle_joe_respawns, - /datum/admins/proc/open_shuttlepanel + /datum/admins/proc/open_shuttlepanel, + /client/proc/get_whitelisted_clients, )) GLOBAL_LIST_INIT(admin_verbs_major_event, list( diff --git a/code/modules/admin/tabs/event_tab.dm b/code/modules/admin/tabs/event_tab.dm index fa0f43780031..332f7185fd57 100644 --- a/code/modules/admin/tabs/event_tab.dm +++ b/code/modules/admin/tabs/event_tab.dm @@ -42,6 +42,23 @@ CEI.handle_event_info_update(faction) +/client/proc/get_whitelisted_clients() + set name = "Find Whitelisted Players" + set category = "Admin.Events" + if(!admin_holder) + return + + var/flag = tgui_input_list(src, "Which flag?", "Whitelist Flags", GLOB.bitfields["whitelist_status"]) + + var/list/ckeys = list() + for(var/client/test_client in GLOB.clients) + if(test_client.check_whitelist_status(GLOB.bitfields["whitelist_status"][flag])) + ckeys += test_client.ckey + if(!length(ckeys)) + to_chat(src, SPAN_NOTICE("There are no players with that whitelist online")) + return + to_chat(src, SPAN_NOTICE("Whitelist holders: [ckeys.Join(", ")].")) + /client/proc/change_security_level() if(!check_rights(R_ADMIN)) return diff --git a/code/modules/mob/living/carbon/human/say.dm b/code/modules/mob/living/carbon/human/say.dm index c0083181fcf2..79a178b9c99c 100644 --- a/code/modules/mob/living/carbon/human/say.dm +++ b/code/modules/mob/living/carbon/human/say.dm @@ -71,6 +71,9 @@ message = trim(strip_html(message)) + if(!filter_message(src, message)) + return + if(stat == DEAD) return say_dead(message) @@ -87,6 +90,10 @@ to_chat(src, SPAN_WARNING(fail_message)) return message = parsed["message"] + + if(!filter_message(src, message)) + return + var/datum/language/speaking = parsed["language"] if(!speaking) speaking = get_default_language() diff --git a/code/modules/mob/living/carbon/human/species/zombie.dm b/code/modules/mob/living/carbon/human/species/zombie.dm index 21a220e48e55..4e8a0b5e98e2 100644 --- a/code/modules/mob/living/carbon/human/species/zombie.dm +++ b/code/modules/mob/living/carbon/human/species/zombie.dm @@ -127,7 +127,7 @@ /datum/species/zombie/proc/handle_alert_ghost(mob/living/carbon/human/zombie) var/mob/dead/observer/ghost = zombie.get_ghost() if(ghost?.client) - playsound_client(ghost.client, 'sound/effects/revive_notify.ogg') + playsound_client(ghost.client, 'sound/effects/adminhelp_new.ogg') to_chat(ghost, SPAN_BOLDNOTICE(FONT_SIZE_LARGE("Your body has risen! (Verbs -> Ghost -> Re-enter corpse, or click here!)"))) /datum/species/zombie/proc/remove_from_revive(mob/living/carbon/human/zombie) diff --git a/code/modules/mob/living/carbon/xenomorph/castes/Queen.dm b/code/modules/mob/living/carbon/xenomorph/castes/Queen.dm index 037c154ab2dc..0cbb6bec8b35 100644 --- a/code/modules/mob/living/carbon/xenomorph/castes/Queen.dm +++ b/code/modules/mob/living/carbon/xenomorph/castes/Queen.dm @@ -413,6 +413,7 @@ hivenumber = XENO_HIVE_MUTATED /mob/living/carbon/xenomorph/queen/combat_ready + AUTOWIKI_SKIP(FALSE) queen_aged = TRUE /mob/living/carbon/xenomorph/queen/Initialize() diff --git a/code/modules/mob/living/say.dm b/code/modules/mob/living/say.dm index 5bd2b4283c86..944d54d16106 100644 --- a/code/modules/mob/living/say.dm +++ b/code/modules/mob/living/say.dm @@ -97,11 +97,11 @@ GLOBAL_LIST_INIT(department_radio_keys, list( /mob/living/say(message, datum/language/speaking = null, verb="says", alt_name="", italics=0, message_range = GLOB.world_view_size, sound/speech_sound, sound_vol, nolog = 0, message_mode = null, bubble_type = bubble_icon) var/turf/T - if(SEND_SIGNAL(src, COMSIG_LIVING_SPEAK, message, speaking, verb, alt_name, italics, message_range, speech_sound, sound_vol, nolog, message_mode) & COMPONENT_OVERRIDE_SPEAK) return - if(!filter_message(src, message)) return + if(SEND_SIGNAL(src, COMSIG_LIVING_SPEAK, message, speaking, verb, alt_name, italics, message_range, speech_sound, sound_vol, nolog, message_mode) & COMPONENT_OVERRIDE_SPEAK) return + message = process_chat_markup(message, list("~", "_")) for(var/dst=0; dst<=1; dst++) //Will run twice if src has a clone diff --git a/code/modules/nightmare/nmnodes/mapload.dm b/code/modules/nightmare/nmnodes/mapload.dm index 0bfdc437bd4a..64e4bc8dd0b9 100644 --- a/code/modules/nightmare/nmnodes/mapload.dm +++ b/code/modules/nightmare/nmnodes/mapload.dm @@ -94,7 +94,7 @@ . = ..() if(!.) return var/dir_path = context.get_file_path(filepath, "map") - var/regex/matcher = new(@"^([0-9]+)([\.\+])(([^_]+)(_.*))?\.dmm$", "i") + var/regex/matcher = new(@"^([0-9]+)([\.\+])(([^_]+)(.*))?\.dmm$", "i") var/list/dircontents = flist(dir_path) for(var/filename in dircontents) if(!matcher.Find(filename)) diff --git a/code/modules/reagents/chemistry_properties/prop_positive.dm b/code/modules/reagents/chemistry_properties/prop_positive.dm index 843332272453..051befa14fba 100644 --- a/code/modules/reagents/chemistry_properties/prop_positive.dm +++ b/code/modules/reagents/chemistry_properties/prop_positive.dm @@ -603,7 +603,7 @@ var/mob/dead/observer/ghost = dead.get_ghost() if(ghost?.client) COOLDOWN_START(src, ghost_notif, 30 SECONDS) - playsound_client(ghost.client, 'sound/effects/revive_notify.ogg') + playsound_client(ghost.client, 'sound/effects/adminhelp_new.ogg') to_chat(ghost, SPAN_BOLDNOTICE("Your heart is struggling to pump! There is a chance you might get up!(Verbs -> Ghost -> Re-enter corpse, or click here!)")) return TRUE diff --git a/code/modules/shuttle/shuttles/crashable/escape_shuttle.dm b/code/modules/shuttle/shuttles/crashable/escape_shuttle.dm index c2c6b818b37b..7d1c1eeb24cc 100644 --- a/code/modules/shuttle/shuttles/crashable/escape_shuttle.dm +++ b/code/modules/shuttle/shuttles/crashable/escape_shuttle.dm @@ -78,11 +78,11 @@ cryos += list(cryotube) if (occupant_count > max_capacity) playsound(src,'sound/effects/escape_pod_warmup.ogg', 50, 1) + mode = SHUTTLE_CRASHED sleep(31) var/turf/sploded = return_center_turf() cell_explosion(sploded, 100, 20, EXPLOSION_FALLOFF_SHAPE_LINEAR, null, create_cause_data("escape pod malfunction")) //Clears out walls sleep(25) - mode = SHUTTLE_CRASHED for(var/obj/structure/machinery/cryopod/evacuation/cryotube in cryos) cryotube.go_out() door_handler.control_doors("force-unlock") diff --git a/code/modules/shuttles/shuttle_supply.dm b/code/modules/shuttles/shuttle_supply.dm index acbcb2937ab9..2ff7ceaced2a 100644 --- a/code/modules/shuttles/shuttle_supply.dm +++ b/code/modules/shuttles/shuttle_supply.dm @@ -88,6 +88,11 @@ for(var/turf/T in away_area) elevator_animation.vis_contents += T + for(var/turf/vis_turf in elevator_animation.vis_contents) + for(var/atom/movable/vis_content in vis_turf.contents) + vis_content.blocks_emissive = FALSE + vis_content.update_emissive_block() + //If we are at the away_area then we are just pretending to move, otherwise actually do the move if (origin != away_area) playsound(locate(Elevator_x,Elevator_y,Elevator_z), 'sound/machines/asrs_lowering.ogg', 50, 0) @@ -126,6 +131,12 @@ moving_status = SHUTTLE_IDLE stop_gears() + + for(var/turf/vis_turf in elevator_animation.vis_contents) + for(var/atom/movable/vis_content in vis_turf.contents) + vis_content.blocks_emissive = initial(vis_content.blocks_emissive) + vis_content.update_emissive_block() + elevator_animation.vis_contents.Cut() if (!at_station()) //at centcom diff --git a/code/modules/tgs/v5/__interop_version.dm b/code/modules/tgs/v5/__interop_version.dm index f4806f7adb97..29ea239ad84d 100644 --- a/code/modules/tgs/v5/__interop_version.dm +++ b/code/modules/tgs/v5/__interop_version.dm @@ -1 +1 @@ -"5.9.0" +"5.10.0" diff --git a/code/modules/tgs/v5/_defines.dm b/code/modules/tgs/v5/_defines.dm index 92c7a8388a71..a47bfd78000b 100644 --- a/code/modules/tgs/v5/_defines.dm +++ b/code/modules/tgs/v5/_defines.dm @@ -95,6 +95,7 @@ #define DMAPI5_TOPIC_PARAMETER_NEW_SERVER_VERSION "newServerVersion" #define DMAPI5_TOPIC_PARAMETER_BROADCAST_MESSAGE "broadcastMessage" +#define DMAPI5_TOPIC_RESPONSE_CLIENT_COUNT "clientCount" #define DMAPI5_TOPIC_RESPONSE_COMMAND_RESPONSE "commandResponse" #define DMAPI5_TOPIC_RESPONSE_COMMAND_RESPONSE_MESSAGE "commandResponseMessage" #define DMAPI5_TOPIC_RESPONSE_CHAT_RESPONSES "chatResponses" diff --git a/code/modules/tgs/v5/topic.dm b/code/modules/tgs/v5/topic.dm index e1f2cb638578..59e5e63e5cd4 100644 --- a/code/modules/tgs/v5/topic.dm +++ b/code/modules/tgs/v5/topic.dm @@ -149,7 +149,9 @@ if(DMAPI5_TOPIC_COMMAND_HEALTHCHECK) if(event_handler && event_handler.receive_health_checks) event_handler.HandleEvent(TGS_EVENT_HEALTH_CHECK) - return TopicResponse() + var/list/health_check_response = TopicResponse() + health_check_response[DMAPI5_TOPIC_RESPONSE_CLIENT_COUNT] = TGS_CLIENT_COUNT + return health_check_response; if(DMAPI5_TOPIC_COMMAND_WATCHDOG_REATTACH) detached = FALSE diff --git a/code/modules/tgs/v5/undefs.dm b/code/modules/tgs/v5/undefs.dm index 237207fdfd05..acd19dfa6411 100644 --- a/code/modules/tgs/v5/undefs.dm +++ b/code/modules/tgs/v5/undefs.dm @@ -18,7 +18,6 @@ #undef DMAPI5_PARAMETER_ACCESS_IDENTIFIER #undef DMAPI5_PARAMETER_CUSTOM_COMMANDS -#undef DMAPI5_PARAMETER_TOPIC_PORT #undef DMAPI5_CHUNK #undef DMAPI5_CHUNK_PAYLOAD @@ -95,6 +94,7 @@ #undef DMAPI5_TOPIC_PARAMETER_NEW_SERVER_VERSION #undef DMAPI5_TOPIC_PARAMETER_BROADCAST_MESSAGE +#undef DMAPI5_TOPIC_RESPONSE_CLIENT_COUNT #undef DMAPI5_TOPIC_RESPONSE_COMMAND_RESPONSE #undef DMAPI5_TOPIC_RESPONSE_COMMAND_RESPONSE_MESSAGE #undef DMAPI5_TOPIC_RESPONSE_CHAT_RESPONSES diff --git a/code/modules/vehicles/hardpoints/wheels/treads.dm b/code/modules/vehicles/hardpoints/wheels/treads.dm index 561795b8531e..31dccab7bdb8 100644 --- a/code/modules/vehicles/hardpoints/wheels/treads.dm +++ b/code/modules/vehicles/hardpoints/wheels/treads.dm @@ -18,7 +18,7 @@ /obj/item/hardpoint/locomotion/treads/robust name = "\improper Reinforced Treads" - desc = "These treads are made of a tougher material and are more durable. However, the extra weight slows the tank down slightly." + desc = "These treads are made of a tougher material and are more durable. However, the extra weight slows the tank down." health = 500 acid_resistant = TRUE diff --git a/html/changelogs/archive/2024-08.yml b/html/changelogs/archive/2024-08.yml index b16979aec4e2..f82eac047a4a 100644 --- a/html/changelogs/archive/2024-08.yml +++ b/html/changelogs/archive/2024-08.yml @@ -452,3 +452,33 @@ - admin: Moved shuttle manipulator to minor event perms rather than admin. - code_imp: Changed rights check on Toggle Remote Control and Shuttle Manipulator to check for mod/minor event perms respectively, or debug. +2024-08-28: + MistChristmas: + - spellcheck: Req vendor descs remove RO. Fix Corpsman Typo +2024-08-29: + SubjectD9341: + - rscadd: xenos don't kill crit allies by dragging/devouring anymore + TheGamerdk: + - rscadd: CIC groundside operations console now correctly sorts FTLs and SGs +2024-08-30: + FOFFLES105: + - bugfix: fixed issue where nightmare inserts would not spawn + - bugfix: moved unused nightmare inserts to "unused" folder so that they don't cause + errors. + Willzadl: + - qol: changed reinforced treads item description + cuberound: + - bugfix: taking apart plasteel baricade gives back 8 not 4 plasteel + kiVts: + - bugfix: ERT no longer gets one extra free member in freed mobs if the beacon wasnt + completely taken + zzzmike: + - bugfix: CL intro text is more clear regarding legal orders +2024-08-31: + Git-Nivrak: + - bugfix: Fixes crates showing up pitch black while the ASRS platform is moving + Steelpoint: + - balance: If the 'Faction Clash' human versus human game mode is enabled, all marine + armours will have their defensive values significantly buffed to make marine + armour far more valuable and effective in resisting permanent damage. The average + Marine should experience less fractures and other permanent wounds from gunfire. diff --git a/html/changelogs/archive/2024-09.yml b/html/changelogs/archive/2024-09.yml new file mode 100644 index 000000000000..fe79112d1037 --- /dev/null +++ b/html/changelogs/archive/2024-09.yml @@ -0,0 +1,24 @@ +2024-09-02: + SpartanBobby: + - maptweak: LV522 changes relating to the overall size of the map, redefining chokepoints + in the reactor, changes to engineering and the west side of the map and removing + the poplock + - maptweak: LV522, LZ1 Tunnel (the place FORECON holds) has been given fog for the + start of the round meaning FORECON will have to adapt to survive. + - maptweak: buffed crashed ship lootspawns on LV522 + Steelpoint: + - maptweak: The northern half of the main colony of Solaris Ridge has received an + aesthetic upgrade. + hislittlecuzingames: + - qol: Deletes empty pill packets when dropped. +2024-09-05: + benbot16: + - bugfix: Fixes stacking explosions in overloaded escape pods. + joookschad: + - sounddel: removed the new revive notification + realforest2001: + - rscadd: Added a staff event verb to check for a particular whitelist and report + online players that have it. Code for the proc from HarryOB +2024-09-06: + hislittlecuzingames: + - config: Adjusted XO Hour Requirements. diff --git a/map_config/maps.txt b/map_config/maps.txt index 885b1e76faad..ad05898bed6d 100644 --- a/map_config/maps.txt +++ b/map_config/maps.txt @@ -54,7 +54,6 @@ map sorokyne_strata endmap map lv522_chances_claim - minplayers 130 endmap map new_varadero diff --git a/maps/map_files/BigRed/BigRed.dmm b/maps/map_files/BigRed/BigRed.dmm index 5142f571a4a9..ec03a01d7633 100644 --- a/maps/map_files/BigRed/BigRed.dmm +++ b/maps/map_files/BigRed/BigRed.dmm @@ -167,13 +167,6 @@ /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, @@ -253,10 +246,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"abe" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) "abf" = ( /obj/effect/decal/cleanable/blood/gibs/up, /turf/open/floor/dark, @@ -425,6 +414,16 @@ "abM" = ( /turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_north) +"abN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) "abO" = ( /turf/open/mars_cave, /area/bigredv2/caves_north) @@ -463,6 +462,13 @@ "abV" = ( /turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_north) +"abW" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/e) "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..."; @@ -574,20 +580,12 @@ /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) -"acB" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) "acC" = ( /turf/open/floor/white, /area/bigredv2/outside/marshal_office) @@ -627,21 +625,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) @@ -763,26 +750,6 @@ /obj/structure/machinery/computer/arcade, /turf/open/floor/white, /area/bigredv2/outside/marshal_office) -"adn" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"ado" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"adp" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/marshal_office) "adr" = ( /obj/structure/machinery/light{ dir = 4 @@ -855,14 +822,6 @@ }, /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{ @@ -896,11 +855,6 @@ }, /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, @@ -934,15 +888,6 @@ /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{ - dir = 4 - }, -/obj/effect/landmark/objective_landmark/close, -/obj/item/paper/bigred/crazy, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) "adW" = ( /turf/open/floor/wood, /area/bigredv2/outside/marshal_office) @@ -1068,11 +1013,6 @@ /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, @@ -1249,10 +1189,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"afh" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) "afi" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Marshal Office Isolation" @@ -1290,24 +1226,6 @@ /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 @@ -1412,13 +1330,6 @@ /obj/structure/bed/chair/office/dark, /turf/open/floor/dark, /area/bigredv2/outside/telecomm) -"afK" = ( -/obj/structure/machinery/power/apc/no_power/south, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/greengrid, -/area/bigredv2/outside/telecomm) "afL" = ( /obj/structure/showcase{ icon_state = "broadcaster_send" @@ -1447,10 +1358,6 @@ }, /turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) -"afR" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) "afS" = ( /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) @@ -1478,6 +1385,10 @@ }, /turf/open/floor/wood, /area/bigredv2/outside/marshal_office) +"afX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteblue/north, +/area/bigredv2/outside/medical) "afY" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -1570,12 +1481,6 @@ "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) @@ -1629,35 +1534,11 @@ /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, -/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, -/area/bigredv2/outside/marshal_office) -"agG" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) "agH" = ( /obj/structure/pipes/vents/pump, /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; @@ -1774,14 +1655,6 @@ /obj/structure/surface/table, /turf/open/floor, /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" = ( /obj/effect/landmark/crap_item, /turf/open/mars, @@ -1816,26 +1689,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"aho" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/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, @@ -1965,34 +1824,13 @@ "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"; @@ -2059,14 +1897,6 @@ /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 - }, -/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; @@ -2077,12 +1907,6 @@ "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, @@ -2120,13 +1944,6 @@ "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) @@ -2150,35 +1967,6 @@ /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/no_power/north, -/turf/open/floor/dark, -/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" - }, -/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 @@ -2190,23 +1978,6 @@ /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, /turf/open/floor, @@ -2256,15 +2027,6 @@ "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, /obj/structure/surface/table, @@ -2300,27 +2062,6 @@ /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 @@ -2417,10 +2158,6 @@ /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 @@ -2446,32 +2183,12 @@ /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{ - dir = 8 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) "ajJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"ajK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - name = "\improper Marshal Office Armory" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) "ajL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -2482,28 +2199,11 @@ /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 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/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" = ( -/obj/structure/surface/table, -/obj/item/trash/kepler, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) "ajQ" = ( /obj/structure/surface/table, /obj/structure/machinery/recharger, @@ -2549,24 +2249,6 @@ }, /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{ - 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, @@ -2576,10 +2258,6 @@ /obj/structure/window/framed/solaris, /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, @@ -2588,12 +2266,6 @@ "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" = ( /obj/structure/window/framed/solaris, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -2603,12 +2275,6 @@ }, /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, @@ -2769,10 +2435,6 @@ /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) "akW" = ( /turf/open/mars/mars_dirt_13, /area/bigredv2/caves_north) @@ -2830,10 +2492,6 @@ "all" = ( /turf/open/floor/asteroidwarning, /area/bigredv2/outside/telecomm) -"alm" = ( -/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) @@ -2967,11 +2625,6 @@ /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, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) "alU" = ( /turf/open/floor/darkpurple2/west, /area/bigredv2/caves/lambda/xenobiology) @@ -3013,12 +2666,6 @@ /obj/structure/window_frame/solaris, /turf/open/floor/plating, /area/bigredv2/outside/marshal_office) -"amc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) "amd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -3044,11 +2691,6 @@ }, /turf/closed/wall/solaris, /area/bigredv2/outside/general_offices) -"ami" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/effect/landmark/crap_item, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) "amj" = ( /obj/structure/window/framed/solaris, /turf/open/floor/plating, @@ -3068,11 +2710,6 @@ "amn" = ( /turf/closed/wall/solaris, /area/bigredv2/outside/dorms) -"amo" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) "amp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -3103,15 +2740,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/red/east, /area/bigredv2/outside/marshal_office) -"amt" = ( -/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 @@ -3274,13 +2902,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /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 @@ -3300,13 +2921,6 @@ /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 @@ -3372,11 +2986,6 @@ }, /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" = ( /obj/structure/window/framed/solaris, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -3420,14 +3029,6 @@ }, /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 @@ -3435,10 +3036,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"anC" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) "anD" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor, @@ -3644,13 +3241,6 @@ /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, @@ -3725,10 +3315,6 @@ /obj/item/tool/weedkiller, /turf/open/floor/whitegreenfull, /area/bigredv2/caves/lambda/xenobiology) -"aoN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) "aoO" = ( /turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/nw) @@ -3765,11 +3351,6 @@ }, /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, @@ -3803,34 +3384,12 @@ /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" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"apj" = ( -/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/delivery, -/area/bigredv2/outside/general_offices) "apk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -3843,15 +3402,6 @@ }, /turf/open/floor/dark, /area/bigredv2/outside/general_offices) -"apm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Dormitories EVA" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/general_offices) "apn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -3892,17 +3442,6 @@ /obj/structure/window_frame/solaris, /turf/open/floor/plating, /area/bigredv2/outside/general_store) -"apv" = ( -/obj/structure/machinery/power/apc/no_power/west{ - name = "Xenbiology Lab APC" - }, -/obj/structure/machinery/door_control{ - id = "lambda"; - name = "Lambda Lockdown"; - pixel_y = -25 - }, -/turf/open/floor/whitepurple/southwest, -/area/bigredv2/caves/lambda/xenobiology) "apw" = ( /turf/open/floor/whitepurplecorner/west, /area/bigredv2/caves/lambda/xenobiology) @@ -3977,21 +3516,6 @@ /obj/structure/bed/chair, /turf/open/floor, /area/bigredv2/outside/general_offices) -"apL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"apM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - 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{ dir = 4 @@ -4002,14 +3526,6 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) -"apP" = ( -/obj/structure/surface/table, -/obj/structure/bedsheetbin, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) "apQ" = ( /obj/structure/window/framed/solaris, /turf/open/floor/plating, @@ -4038,11 +3554,6 @@ /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, @@ -4181,10 +3692,6 @@ /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) @@ -4214,9 +3721,6 @@ }, /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, @@ -4246,6 +3750,17 @@ /obj/structure/barricade/wooden, /turf/open/mars, /area/bigredv2/outside/n) +"aqP" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "filtration"; + name = "Filtration Lockdown" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/filtration_cave_cas) "aqQ" = ( /obj/structure/machinery/light{ dir = 4 @@ -4256,19 +3771,6 @@ /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{ @@ -4277,10 +3779,6 @@ }, /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, @@ -4328,11 +3826,6 @@ /obj/effect/landmark/crap_item, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/nw) -"are" = ( -/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, @@ -4348,22 +3841,9 @@ /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) @@ -4377,37 +3857,6 @@ }, /turf/open/floor, /area/bigredv2/outside/general_offices) -"arw" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/plating, -/area/bigredv2/outside/general_offices) -"arx" = ( -/obj/structure/surface/table, -/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{ - 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/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" = ( /obj/structure/machinery/light{ dir = 4 @@ -4470,11 +3919,6 @@ /obj/effect/spawner/random/powercell, /turf/open/floor/purple/west, /area/bigredv2/caves/lambda/research) -"arO" = ( -/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/effect/decal/cleanable/dirt, @@ -4489,12 +3933,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/white, /area/bigredv2/outside/medical) -"arS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) "arT" = ( /obj/structure/window/framed/solaris, /turf/open/floor/plating, @@ -4526,6 +3964,10 @@ "asa" = ( /turf/open/mars/mars_dirt_9, /area/bigredv2/outside/n) +"asb" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/mars, +/area/bigredv2/outside/s) "asc" = ( /turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/n) @@ -4563,14 +4005,6 @@ }, /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{ @@ -4657,14 +4091,6 @@ /obj/effect/glowshroom, /turf/open/mars_cave, /area/bigredv2/caves_lambda) -"asy" = ( -/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) "asz" = ( /obj/item/device/reagent_scanner, /turf/open/floor/whitepurplecorner/north, @@ -4679,23 +4105,6 @@ /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 @@ -4723,19 +4132,6 @@ "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/general_offices) "asN" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor, @@ -4748,18 +4144,6 @@ /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" = ( -/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, @@ -4869,10 +4253,6 @@ /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, @@ -4887,14 +4267,14 @@ /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) +"ats" = ( +/obj/effect/acid_hole, +/turf/closed/wall/solaris, +/area/bigredv2/outside/general_offices) "atw" = ( /obj/structure/window/framed/solaris, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -4931,13 +4311,6 @@ /obj/structure/closet/crate, /turf/open/floor/wood, /area/bigredv2/outside/dorms) -"atC" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) "atD" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, @@ -5041,16 +4414,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/whitepurplecorner/east, /area/bigredv2/outside/medical) -"atT" = ( -/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) "atU" = ( /obj/structure/window_frame/solaris, /turf/open/floor/plating, @@ -5110,11 +4473,6 @@ /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{ @@ -5252,24 +4610,11 @@ "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" = ( -/obj/structure/surface/table, -/obj/item/storage/box/bodybags, -/turf/open/floor/whitepurplecorner/east, -/area/bigredv2/outside/medical) -"auK" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) "auL" = ( /turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) @@ -5277,15 +4622,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) -"auN" = ( -/obj/structure/machinery/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; @@ -5447,12 +4783,6 @@ "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 @@ -5472,28 +4802,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/dorms) -"avF" = ( -/obj/structure/machinery/power/apc/power/north{ - name = "Dormitories APC" - }, -/turf/open/floor, -/area/bigredv2/outside/dorms) "avG" = ( /obj/structure/machinery/light{ dir = 1 }, /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 @@ -5563,23 +4877,12 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating, /area/bigredv2/outside/nw/ceiling) -"avW" = ( -/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) "avX" = ( /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" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -5595,18 +4898,6 @@ }, /turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) -"awb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/whitegreencorner/north, -/area/bigredv2/outside/medical) -"awc" = ( -/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) @@ -5615,27 +4906,6 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/purple/southwest, /area/bigredv2/caves/lambda/research) -"awg" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"awh" = ( -/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) -"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, @@ -5659,29 +4929,12 @@ "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 }, /turf/open/floor, /area/bigredv2/outside/dorms) -"awt" = ( -/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 = 8; - health = 25000 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) "awu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -5689,17 +4942,6 @@ /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/general_offices) "aww" = ( /obj/effect/landmark/crap_item, /turf/open/floor, @@ -5782,12 +5024,6 @@ }, /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) @@ -5806,10 +5042,6 @@ /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"; @@ -5821,22 +5053,11 @@ "awT" = ( /turf/open/floor/whitegreencorner/west, /area/bigredv2/outside/medical) -"awU" = ( -/obj/effect/decal/cleanable/dirt, -/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{ dir = 4 @@ -5852,16 +5073,6 @@ /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 @@ -5873,39 +5084,10 @@ /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" - }, -/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 - }, -/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) "axn" = ( /obj/structure/window/reinforced/toughened{ dir = 1; @@ -5931,14 +5113,6 @@ }, /turf/open/floor/carpet, /area/bigredv2/caves/lambda/breakroom) -"axq" = ( -/obj/structure/machinery/light/built, -/obj/structure/extinguisher_cabinet{ - pixel_y = -30 - }, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/darkish, -/area/bigredv2/caves/lambda/breakroom) "axr" = ( /obj/structure/window/framed/solaris, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -5965,15 +5139,6 @@ "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" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ @@ -6006,24 +5171,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor, /area/bigredv2/outside/dorms) -"axH" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/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, @@ -6052,18 +5199,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/grimy, /area/bigredv2/outside/dorms) -"axP" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) -"axQ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor, -/area/bigredv2/outside/general_offices) "axR" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -6071,13 +5206,6 @@ }, /turf/open/floor/delivery, /area/bigredv2/outside/general_offices) -"axS" = ( -/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/general_offices) "axT" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -6145,12 +5273,6 @@ "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/white, -/area/bigredv2/outside/medical) "ayh" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, /turf/open/floor/whitegreen/northwest, @@ -6161,12 +5283,6 @@ }, /turf/open/floor/whitegreen/northeast, /area/bigredv2/outside/medical) -"ayj" = ( -/obj/structure/pipes/unary/freezer{ - icon_state = "freezer_1" - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) "ayk" = ( /obj/structure/machinery/cryo_cell, /obj/structure/pipes/standard/cap, @@ -6176,12 +5292,6 @@ /obj/structure/pipes/standard/tank/oxygen, /turf/open/floor/white, /area/bigredv2/outside/medical) -"aym" = ( -/obj/structure/sign/safety/autodoc{ - pixel_x = -32 - }, -/turf/open/floor/whitegreen/west, -/area/bigredv2/outside/medical) "ayn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ @@ -6246,9 +5356,6 @@ }, /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, @@ -6285,10 +5392,6 @@ /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{ dir = 8 @@ -6314,12 +5417,6 @@ /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/whitebluefull/northeast, -/area/bigredv2/outside/medical) "ayN" = ( /turf/open/floor/delivery, /area/bigredv2/outside/medical) @@ -6328,11 +5425,6 @@ /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, @@ -6341,30 +5433,6 @@ /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" = ( -/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/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) "ayV" = ( /turf/open/floor/plating, /area/bigredv2/outside/medical) @@ -6380,10 +5448,6 @@ /obj/structure/window/framed/solaris, /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{ @@ -6456,25 +5520,12 @@ /obj/structure/cargo_container/horizontal/blue/top, /turf/open/floor/plating, /area/bigredv2/outside/nw/ceiling) -"azp" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitegreen/southwest, -/area/bigredv2/outside/medical) "azq" = ( /obj/structure/machinery/camera/autoname{ 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 @@ -6495,42 +5546,12 @@ }, /turf/open/floor/white, /area/bigredv2/outside/medical) -"azw" = ( -/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 }, /turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) -"azy" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"azz" = ( -/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) -"azA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/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{ @@ -6540,14 +5561,6 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/engineering) -"azD" = ( -/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) "azE" = ( /obj/item/shard, /obj/effect/decal/cleanable/blood/xeno, @@ -6568,12 +5581,17 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) -"azH" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Medical Clinic Power Station" +"azJ" = ( +/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; + pixel_y = 3; + pixel_x = 17 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) "azK" = ( /obj/effect/decal/cleanable/dirt, /turf/open/mars, @@ -6669,15 +5687,6 @@ }, /turf/open/floor, /area/bigredv2/outside/dorms) -"aAf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) -"aAg" = ( -/turf/open/floor/plating, -/area/bigredv2/outside/bar) "aAi" = ( /turf/open/floor/whitepurple/west, /area/bigredv2/caves/lambda/research) @@ -6713,20 +5722,6 @@ /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/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, @@ -6739,15 +5734,6 @@ /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, -/area/bigredv2/outside/medical) "aAz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ @@ -6782,12 +5768,6 @@ }, /turf/open/floor/delivery, /area/bigredv2/outside/dorms) -"aAH" = ( -/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 @@ -6897,9 +5877,6 @@ /obj/structure/bed/chair, /turf/open/floor/darkish, /area/bigredv2/outside/medical) -"aBc" = ( -/turf/open/floor/darkish, -/area/bigredv2/outside/medical) "aBd" = ( /obj/structure/bed/chair, /obj/structure/machinery/light{ @@ -6919,22 +5896,6 @@ /obj/item/device/healthanalyzer, /turf/open/floor/whitegreencorner, /area/bigredv2/outside/medical) -"aBg" = ( -/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) -"aBh" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 32 - }, -/turf/open/floor/whitegreen/southeast, -/area/bigredv2/outside/medical) "aBi" = ( /obj/structure/machinery/light{ dir = 4 @@ -6982,12 +5943,6 @@ }, /turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) -"aBo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/dorms) "aBp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -7001,12 +5956,6 @@ /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, /area/bigredv2/outside/ne) @@ -7083,19 +6032,6 @@ /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 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) "aBO" = ( /obj/structure/surface/table, /obj/structure/machinery/recharger, @@ -7147,10 +6083,6 @@ /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) @@ -7291,20 +6223,6 @@ }, /turf/open/floor/delivery, /area/bigredv2/outside/medical) -"aCD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - 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/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{ @@ -7322,19 +6240,6 @@ /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, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) "aCL" = ( /turf/closed/wall/solaris, /area/bigredv2/caves/eta/xenobiology) @@ -7368,10 +6273,6 @@ /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/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -7488,62 +6389,15 @@ /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 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"aDz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"aDA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/nw) "aDB" = ( /turf/open/floor/whitegreen/northeast, /area/bigredv2/caves/lambda/virology) -"aDC" = ( -/obj/structure/surface/table, -/obj/item/tool/surgery/bonesetter, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) "aDD" = ( /obj/structure/surface/table, /obj/item/storage/box/masks, /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 @@ -7559,44 +6413,18 @@ }, /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, -/turf/open/floor/white, -/area/bigredv2/outside/medical) "aDM" = ( /obj/structure/curtain/medical, /turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) -"aDN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) "aDO" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) -"aDP" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3; - pixel_x = 24 - }, -/obj/item/trash/chips, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) "aDQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/door_control{ @@ -7613,18 +6441,6 @@ }, /turf/open/floor/wood, /area/bigredv2/outside/dorms) -"aDV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aDW" = ( -/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) @@ -7647,12 +6463,6 @@ }, /turf/open/floor/wood, /area/bigredv2/outside/bar) -"aEb" = ( -/obj/structure/machinery/power/apc/power/north{ - name = "Bar APC" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) "aEc" = ( /obj/structure/reagent_dispensers/beerkeg, /turf/open/floor/wood, @@ -7677,10 +6487,6 @@ /obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, /area/bigredv2/caves/eta/living) -"aEm" = ( -/obj/structure/machinery/power/apc/no_power/west, -/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, @@ -7714,10 +6520,6 @@ "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, @@ -7756,32 +6558,6 @@ "aEF" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/caves/lambda/research) -"aEG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"aEH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aEI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"aEJ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) "aEK" = ( /obj/structure/pipes/vents/pump, /turf/open/floor, @@ -7964,12 +6740,6 @@ "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 @@ -7991,12 +6761,6 @@ }, /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, @@ -8017,27 +6781,6 @@ /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, -/area/bigredv2/outside/medical) -"aFK" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - id_tag = "mbayexit"; - name = "Medbay Reception"; - req_one_access_txt = "2;8;19" - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) "aFL" = ( /obj/effect/landmark/crap_item, /turf/open/mars, @@ -8067,12 +6810,6 @@ /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"; @@ -8090,23 +6827,6 @@ }, /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 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) -"aFY" = ( -/obj/structure/reagent_dispensers/beerkeg, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) "aGa" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -8210,23 +6930,6 @@ "aGr" = ( /turf/open/mars/mars_dirt_10, /area/bigredv2/outside/virology) -"aGs" = ( -/obj/structure/machinery/light{ - 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, @@ -8248,19 +6951,6 @@ }, /turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) -"aGz" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/storage/firstaid/adv, -/turf/open/floor/whitegreencorner, -/area/bigredv2/outside/medical) -"aGA" = ( -/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{ @@ -8268,24 +6958,11 @@ }, /turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) -"aGC" = ( -/obj/structure/bed/chair{ - 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{ - dir = 8 - }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) "aGF" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Dormitories" @@ -8354,13 +7031,6 @@ }, /turf/open/floor/purple/southeast, /area/bigredv2/caves/lambda/research) -"aGZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/caves/lambda/virology) "aHa" = ( /obj/structure/surface/table, /obj/item/storage/pill_bottle/spaceacillin, @@ -8387,24 +7057,6 @@ /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, -/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, @@ -8428,54 +7080,11 @@ /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{ - dir = 4 - }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) "aHC" = ( /turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/c) @@ -8494,14 +7103,6 @@ }, /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, -/obj/structure/surface/table/woodentable, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) "aHK" = ( /obj/structure/surface/table, /obj/item/toy/sword, @@ -8597,18 +7198,6 @@ "aHZ" = ( /turf/open/mars/mars_dirt_3, /area/bigredv2/outside/virology) -"aIa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/virology) -"aIb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/virology) "aIc" = ( /obj/structure/closet/wardrobe/virology_white, /obj/effect/landmark/objective_landmark/science, @@ -8619,51 +7208,12 @@ /obj/item/pizzabox/vegetable, /turf/open/floor/redfull/northwest, /area/bigredv2/outside/lambda_cave_cas) -"aIg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "viro"; - name = "Virology Lockdown" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/virology) -"aIi" = ( -/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/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/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) @@ -8674,21 +7224,10 @@ }, /turf/open/floor/carpet15_15/west, /area/bigredv2/outside/bar) -"aIr" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 8 - }, -/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, -/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, @@ -8889,30 +7428,11 @@ /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) +"aJk" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/mars, +/area/bigredv2/outside/c) "aJm" = ( /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/mars/mars_dirt_12, @@ -8920,13 +7440,6 @@ "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{ dir = 1 @@ -9036,6 +7549,10 @@ }, /turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/research) +"aJK" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/caves/eta/xenobiology) "aJL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -9187,10 +7704,6 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/whitegreen/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) @@ -9207,11 +7720,6 @@ }, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) -"aKn" = ( -/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, @@ -9235,11 +7743,6 @@ "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, @@ -9248,11 +7751,6 @@ /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, @@ -9289,10 +7787,6 @@ /obj/structure/machinery/gibber, /turf/open/floor/freezerfloor, /area/bigredv2/outside/hydroponics) -"aKH" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/hydroponics) "aKI" = ( /obj/structure/machinery/processor, /turf/open/floor/freezerfloor, @@ -9301,6 +7795,10 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) +"aKL" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/dark, +/area/bigredv2/outside/chapel) "aKO" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 @@ -9395,12 +7893,6 @@ "aLd" = ( /turf/open/mars/mars_dirt_13, /area/bigredv2/outside/c) -"aLe" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Command Complex" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/admin_building) "aLf" = ( /obj/structure/surface/table, /obj/item/clothing/mask/cigarette, @@ -9444,13 +7936,6 @@ }, /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 @@ -9464,14 +7949,6 @@ /obj/item/tool/extinguisher, /turf/open/floor/wood, /area/bigredv2/outside/bar) -"aLt" = ( -/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) "aLu" = ( /obj/structure/surface/table/woodentable, /obj/effect/landmark/monkey_spawn, @@ -9595,30 +8072,6 @@ }, /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, -/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" = ( -/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) @@ -9652,18 +8105,6 @@ "aMg" = ( /turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/c) -"aMh" = ( -/obj/structure/bed/chair/wood/normal{ - dir = 1 - }, -/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, @@ -9802,17 +8243,6 @@ /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; @@ -10009,23 +8439,6 @@ /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, @@ -10079,9 +8492,6 @@ /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, @@ -10118,30 +8528,12 @@ }, /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 @@ -10155,18 +8547,6 @@ }, /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, @@ -10225,6 +8605,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) +"aOj" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/eta) "aOk" = ( /turf/open/mars/mars_dirt_11, /area/bigredv2/outside/e) @@ -10234,9 +8620,6 @@ /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) @@ -10404,13 +8787,6 @@ /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; @@ -10537,6 +8913,13 @@ }, /turf/open/floor/yellowfull, /area/bigredv2/outside/hydroponics) +"aPn" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/stack/sheet/metal{ + amount = 3 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/medical) "aPq" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ dir = 1; @@ -10595,27 +8978,6 @@ /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, @@ -10740,12 +9102,6 @@ /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, @@ -10905,12 +9261,6 @@ /obj/item/frame/table, /turf/open/floor/white, /area/bigredv2/outside/virology) -"aQC" = ( -/obj/structure/machinery/power/apc/power/north{ - name = "Virology APC" - }, -/turf/open/floor/white, -/area/bigredv2/outside/virology) "aQD" = ( /obj/structure/surface/table, /obj/item/stock_parts/smes_coil, @@ -10935,25 +9285,6 @@ /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{ @@ -11099,17 +9430,6 @@ /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{ @@ -11165,6 +9485,11 @@ }, /turf/open/floor/delivery, /area/bigredv2/outside/library) +"aRv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) "aRx" = ( /obj/structure/machinery/teleport/station, /turf/open/floor/podhatch, @@ -11270,18 +9595,6 @@ /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, @@ -11338,22 +9651,12 @@ }, /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) @@ -11363,12 +9666,6 @@ "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) @@ -11465,20 +9762,6 @@ /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, @@ -11589,13 +9872,6 @@ /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 @@ -11610,12 +9886,6 @@ }, /turf/open/floor/white, /area/bigredv2/outside/admin_building) -"aSZ" = ( -/obj/structure/machinery/power/apc/power/north{ - name = "Control Center APC" - }, -/turf/open/floor/plating, -/area/bigredv2/outside/admin_building) "aTa" = ( /turf/open/floor/plating, /area/bigredv2/outside/admin_building) @@ -11637,57 +9907,18 @@ }, /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 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) "aTh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/asteroidwarning, /area/bigredv2/outside/c) -"aTi" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"aTj" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) "aTk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /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/asteroidfloor/north, -/area/bigredv2/outside/e) "aTp" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, @@ -11701,20 +9932,16 @@ "aTs" = ( /turf/open/floor/delivery, /area/bigred/ground/garage_workshop) -"aTt" = ( -/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) +"aTy" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/mars, +/area/bigredv2/outside/n) "aTC" = ( /obj/structure/bed, /obj/item/bedsheet/medical, @@ -11774,18 +10001,6 @@ }, /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, @@ -11877,22 +10092,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/e) -"aUm" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/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 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/lambda_cave_cas) "aUD" = ( /obj/structure/bed, /obj/item/bedsheet/medical, @@ -11939,10 +10138,6 @@ /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, @@ -11975,24 +10170,6 @@ /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, @@ -12073,10 +10250,6 @@ }, /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) @@ -12097,9 +10270,6 @@ /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{ @@ -12142,21 +10312,6 @@ /obj/structure/machinery/reagentgrinder, /turf/open/floor/white, /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" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/w) -"aVI" = ( -/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" @@ -12225,19 +10380,6 @@ }, /turf/open/floor/darkblue2/north, /area/bigredv2/outside/admin_building) -"aVW" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/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) "aVX" = ( /obj/structure/machinery/computer/cameras{ dir = 8 @@ -12413,11 +10555,6 @@ /obj/effect/landmark/hunter_secondary, /turf/open/mars, /area/bigredv2/outside/e) -"aWM" = ( -/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, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -12476,10 +10613,6 @@ }, /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, @@ -12495,10 +10628,6 @@ /obj/item/restraint/adjustable/cable/cyan, /turf/open/floor, /area/bigredv2/outside/general_store) -"aXb" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating, -/area/bigredv2/outside/cargo) "aXc" = ( /obj/structure/machinery/light, /turf/open/floor/bluegrid/bcircuitoff, @@ -12526,10 +10655,6 @@ }, /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{ dir = 4 @@ -12596,9 +10721,6 @@ }, /turf/open/floor/freezerfloor, /area/bigredv2/outside/virology) -"aXA" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/w) "aXB" = ( /obj/structure/surface/table, /obj/item/toy/prize/mauler, @@ -12654,10 +10776,6 @@ }, /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, @@ -12759,16 +10877,6 @@ }, /turf/open/floor/freezerfloor, /area/bigredv2/outside/admin_building) -"aYr" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/item/prop/alien/hugger, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/admin_building) "aYs" = ( /obj/structure/machinery/vending/cola, /turf/open/floor, @@ -12853,10 +10961,6 @@ /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; @@ -13012,13 +11116,6 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) -"aZz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/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) @@ -13067,6 +11164,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/cargo) +"aZP" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/se) "aZQ" = ( /obj/structure/surface/table, /obj/item/tool/lighter/random, @@ -13132,12 +11233,6 @@ /obj/effect/landmark/good_item, /turf/open/floor/darkred2, /area/bigredv2/outside/admin_building) -"aZZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/admin_building) "baa" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/asteroidfloor/north, @@ -13334,13 +11429,6 @@ "baW" = ( /turf/open/floor/chapel, /area/bigredv2/outside/chapel) -"bba" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/w) "bbb" = ( /obj/effect/decal/cleanable/blood{ dir = 4; @@ -13706,10 +11794,6 @@ }, /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..."; @@ -13786,14 +11870,6 @@ }, /turf/open/floor/delivery, /area/bigredv2/outside/cargo) -"bcE" = ( -/obj/structure/surface/table, -/obj/structure/pipes/vents/pump{ - 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 @@ -13910,23 +11986,11 @@ }, /turf/open/floor, /area/bigredv2/outside/office_complex) -"bcZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/north{ - name = "Interview Room APC" - }, -/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) @@ -13974,11 +12038,6 @@ "bdo" = ( /turf/open/floor/darkred2/southwest, /area/bigredv2/outside/admin_building) -"bdp" = ( -/obj/effect/decal/cleanable/dirt, -/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, @@ -14038,16 +12097,6 @@ }, /turf/open/floor/delivery, /area/bigredv2/outside/office_complex) -"bdD" = ( -/obj/structure/machinery/light{ - 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"; @@ -14060,10 +12109,6 @@ /obj/structure/machinery/light, /turf/open/floor/dark, /area/bigredv2/outside/chapel) -"bdG" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/dark, -/area/bigredv2/outside/chapel) "bdI" = ( /obj/structure/machinery/alarm{ dir = 1; @@ -14097,28 +12142,12 @@ /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 - }, -/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/open/floor, /area/bigredv2/outside/office_complex) -"bdY" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/office_complex) "bdZ" = ( /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/w) @@ -14203,14 +12232,6 @@ /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 @@ -14238,16 +12259,6 @@ }, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) -"beE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"beF" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) "beG" = ( /obj/structure/barricade/wooden, /turf/open/floor/asteroidwarning/southeast, @@ -14273,11 +12284,6 @@ /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) "beN" = ( /obj/structure/machinery/light{ dir = 1 @@ -14352,6 +12358,10 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/dark, /area/bigredv2/outside/office_complex) +"bff" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) "bfi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -14398,13 +12408,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) -"bfq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/office_complex) "bfr" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -14412,13 +12415,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/office_complex) -"bfs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/trash/cheesie, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) "bft" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -14628,16 +12624,6 @@ }, /turf/open/floor/redcorner/west, /area/bigredv2/outside/office_complex) -"bgl" = ( -/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/redcorner, -/area/bigredv2/outside/office_complex) "bgm" = ( /obj/structure/janitorialcart, /obj/effect/decal/cleanable/dirt, @@ -14652,10 +12638,6 @@ /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, @@ -14679,11 +12661,6 @@ "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 @@ -14716,23 +12693,10 @@ /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 - }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/c) "bgI" = ( /obj/structure/surface/table, /obj/item/trash/semki, @@ -14796,26 +12760,11 @@ }, /turf/open/floor/redcorner/west, /area/bigredv2/outside/office_complex) -"bgS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/surface/table, -/obj/item/storage/box/m94, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/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" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -14845,10 +12794,6 @@ /obj/structure/machinery/light, /turf/open/floor/bot/north, /area/bigredv2/outside/cargo) -"bhf" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor, -/area/bigredv2/outside/cargo) "bhi" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/outside/c) @@ -14862,17 +12807,6 @@ }, /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, @@ -14926,17 +12860,9 @@ /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, -/area/bigredv2/outside/cargo) +"bhF" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) "bhI" = ( /obj/item/stack/sheet/metal/med_small_stack, /turf/open/mars_cave/mars_dirt_4, @@ -14987,12 +12913,6 @@ /obj/structure/flora/pottedplant, /turf/open/floor/wood, /area/bigredv2/outside/office_complex) -"bhZ" = ( -/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; @@ -15014,12 +12934,6 @@ "bie" = ( /turf/open/floor/plating, /area/bigredv2/outside/space_port_lz2) -"bik" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/floor4, -/area/bigredv2/outside/cargo) "biq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -15056,17 +12970,6 @@ /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 - }, -/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"; @@ -15099,10 +13002,6 @@ }, /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, @@ -15119,33 +13018,6 @@ }, /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" = ( -/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 @@ -15153,10 +13025,6 @@ /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) @@ -15238,25 +13106,6 @@ }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/s) -"bjE" = ( -/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) @@ -15303,23 +13152,19 @@ }, /turf/open/floor/delivery, /area/bigredv2/outside/cargo) +"bjT" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/w) "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) @@ -15582,18 +13427,6 @@ /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{ - 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) @@ -16586,10 +14419,6 @@ /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, @@ -16605,20 +14434,9 @@ "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 @@ -16999,6 +14817,23 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"bsw" = ( +/obj/item/trash/hotdog{ + pixel_x = -12; + pixel_y = -11 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 3; + pixel_y = 13 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) "bsB" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, @@ -17150,10 +14985,6 @@ /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) @@ -17213,6 +15044,21 @@ }, /turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) +"btT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/spacecash/c1{ + pixel_x = -6; + pixel_y = -8 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"btZ" = ( +/obj/item/clothing/under/color/orange{ + pixel_y = -7; + pixel_x = 6 + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) "bua" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -17232,6 +15078,11 @@ "buj" = ( /turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves/mining) +"buk" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) "bun" = ( /turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/s) @@ -17253,6 +15104,22 @@ /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) +"buF" = ( +/obj/structure/closet/crate/trashcart{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/ganucci, +/obj/item/stack/sheet/cardboard{ + pixel_x = 7; + pixel_y = -2 + }, +/obj/item/trash/eat{ + pixel_x = -9; + pixel_y = -5 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) "buJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/asteroidwarning/west, @@ -17265,6 +15132,10 @@ /obj/effect/landmark/hunter_primary, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/lz2_south_cas) +"buU" = ( +/obj/item/ammo_casing/shell, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "buY" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib1" @@ -17369,6 +15240,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/eta) +"bwe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) "bwj" = ( /turf/open/mars/mars_dirt_10, /area/bigredv2/caves/eta/xenobiology) @@ -18624,6 +16499,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/jungle/impenetrable, /area/bigredv2/caves/eta/research) +"bBE" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) "bBH" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ name = "\improper Eta Lab Cell" @@ -19217,6 +17096,20 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) +"bDY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/plantspray/weeds, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"bEa" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/toxin{ + pixel_y = 6; + pixel_x = -7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "bEc" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ @@ -19453,9 +17346,28 @@ "bET" = ( /turf/open/floor/delivery, /area/bigredv2/outside/office_complex) +"bFd" = ( +/obj/item/frame/rack, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "bFw" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/telecomm/warehouse) +"bFx" = ( +/obj/item/trash/crushed_cup{ + pixel_x = -7; + pixel_y = -8 + }, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/ne) +"bFz" = ( +/obj/structure/largecrate/random/mini{ + pixel_x = -6; + pixel_y = 7; + layer = 3.1 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "bGp" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, @@ -19468,11 +17380,36 @@ "bGL" = ( /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/lz2_south_cas) +"bGP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/s) +"bGQ" = ( +/turf/open/asphalt/cement/cement4, +/area/bigredv2/caves_lambda) +"bGX" = ( +/obj/item/tool/weldingtool{ + pixel_x = 9; + pixel_y = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"bHk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) "bII" = ( /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) +"bJb" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement, +/area/bigredv2/caves_lambda) "bJz" = ( /obj/structure/bed/chair{ dir = 8; @@ -19481,6 +17418,14 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"bJJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) "bJQ" = ( /turf/open/mars/mars_dirt_10, /area/bigredv2/outside/n) @@ -19489,16 +17434,43 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"bJZ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/space_port_lz2) +"bKV" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/lambda_cave_cas) "bKY" = ( /obj/structure/fence, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_cave_16, /area/bigredv2/outside/filtration_cave_cas) +"bLi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "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) +"bLG" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"bLO" = ( +/obj/item/trash/sosjerky{ + pixel_x = 8; + pixel_y = 12 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/w) "bMa" = ( /obj/structure/surface/rack, /obj/item/weapon/gun/pistol/mod88, @@ -19511,29 +17483,63 @@ "bMz" = ( /turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/ne) +"bMJ" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/platebotc, +/area/bigredv2/outside/space_port) "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, /area/bigredv2/outside/marshal_office) -"bOZ" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"bNK" = ( +/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"; + locked = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"bOR" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/shell, +/turf/open/floor/whiteblue/southeast, +/area/bigredv2/outside/medical) +"bPl" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump, +/obj/structure/transmitter/colony_net{ + phone_category = "Solaris Ridge"; + phone_color = "green"; + phone_id = "Clinic"; + pixel_y = 24 }, /turf/open/floor/white, /area/bigredv2/outside/medical) +"bPq" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "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) +"bPY" = ( +/obj/structure/surface/table, +/obj/item/trash/kepler{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) "bQb" = ( /turf/open/mars_cave/mars_cave_18, /area/bigredv2/outside/lz2_west_cas) @@ -19547,6 +17553,11 @@ "bQi" = ( /turf/open/floor/darkish, /area/bigredv2/caves/lambda/virology) +"bQw" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement/cement9, +/area/bigredv2/caves_lambda) "bQG" = ( /turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves_lambda) @@ -19582,6 +17593,10 @@ /obj/structure/machinery/power/reactor/colony, /turf/open/floor/white, /area/bigredv2/outside/virology) +"bSk" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/filtration_plant) "bSw" = ( /obj/structure/cable{ icon_state = "1-4" @@ -19597,6 +17612,11 @@ }, /turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/c) +"bSL" = ( +/obj/structure/window_frame/solaris, +/obj/item/shard, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) "bTm" = ( /obj/structure/surface/table, /obj/item/folder/black_random, @@ -19608,6 +17628,27 @@ "bTW" = ( /turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_se) +"bUy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-in" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) +"bUJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) +"bVq" = ( +/obj/item/trash/chips{ + pixel_y = 4; + pixel_x = -8 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) "bVX" = ( /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..."; @@ -19624,15 +17665,46 @@ /obj/structure/largecrate/random/barrel/red, /turf/open/floor/asteroidfloor/north, /area/bigred/ground/garage_workshop) +"bWw" = ( +/obj/item/ammo_casing/shell, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "bXe" = ( /obj/structure/closet/crate/freezer/rations, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) +"bXq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"bXz" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/c) +"bXC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitegreencorner/west, +/area/bigredv2/outside/medical) "bYa" = ( /obj/item/reagent_container/spray/cleaner, /turf/open/floor, /area/bigredv2/outside/cargo) +"bYx" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3; + pixel_x = 24 + }, +/obj/item/trash/chips{ + pixel_y = -6; + pixel_x = -3 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"bYF" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached16, +/area/bigredv2/outside/virology) "bYW" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/darkyellow2/north, @@ -19643,6 +17715,12 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/nw/ceiling) +"bZH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "bZJ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/clothing/suit/radiation, @@ -19657,20 +17735,15 @@ /obj/effect/landmark/crap_item, /turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/s) +"caL" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) "caN" = ( /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/no_power/north, -/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) "ccP" = ( /obj/structure/surface/table, /obj/effect/spawner/random/bomb_supply, @@ -19680,6 +17753,12 @@ "cdA" = ( /turf/open/mars_cave/mars_cave_5, /area/bigredv2/outside/lz2_west_cas) +"cdI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) "cec" = ( /obj/structure/bed, /obj/item/toy/plush/farwa, @@ -19703,17 +17782,91 @@ }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) +"cgi" = ( +/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" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement, +/area/bigredv2/outside/lambda_cave_cas) +"cgo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/wooden{ + dir = 8; + pixel_y = 12; + pixel_x = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "cgt" = ( /turf/open/floor/delivery, /area/bigredv2/outside/dorms) -"cgO" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/telecomm/n_cave) +"cgz" = ( +/obj/structure/surface/table, +/obj/item/clothing/suit/armor/det_suit{ + pixel_x = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"cgB" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump, +/obj/item/device/flashlight/lamp{ + pixel_y = 8; + pixel_x = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ashtray/glass{ + icon_state = "ashtray_half_gl"; + pixel_x = -5 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"cgL" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/gold, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "chq" = ( /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) +"chx" = ( +/obj/structure/surface/table, +/obj/item/trash/kepler{ + pixel_y = 9 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"chz" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"chH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Dormitories EVA"; + icon_state = "door_open"; + density = 0 + }, +/obj/item/stack/sheet/wood, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) "ciG" = ( /obj/effect/landmark/hunter_secondary, /turf/open/mars_cave/mars_cave_7, @@ -19724,12 +17877,41 @@ }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) +"ckr" = ( +/obj/item/device/defibrillator{ + pixel_x = -9; + pixel_y = -9 + }, +/obj/item/reagent_container/hypospray/autoinjector/adrenaline{ + pixel_y = 6; + pixel_x = 9 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "cla" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/dark, /area/bigredv2/outside/engineering) +"cln" = ( +/obj/structure/girder/reinforced, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/outside/space_port) +"cls" = ( +/obj/structure/machinery/iv_drip, +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + pixel_x = -5; + pixel_y = 2; + layer = 2.8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) "clB" = ( /turf/open/floor/asteroidfloor/north, /area/bigred/ground/garage_workshop) @@ -19772,12 +17954,20 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) +"cnF" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/eta) "cnG" = ( /obj/structure/platform{ dir = 1 }, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm/n_cave) +"cnQ" = ( +/obj/item/paper, +/turf/open/floor, +/area/bigredv2/outside/office_complex) "coT" = ( /obj/effect/landmark/objective_landmark/science, /turf/open/floor/wood, @@ -19787,6 +17977,16 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_se) +"cpo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/engineer, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/gm/river/darkred, +/area/bigredv2/outside/c) +"cpw" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/n) "cpQ" = ( /obj/structure/machinery/camera/autoname{ dir = 1 @@ -19797,6 +17997,12 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark, /area/bigredv2/caves/eta/storage) +"cqp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) "cqZ" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/mars_cave/mars_cave_2, @@ -19842,6 +18048,19 @@ "csE" = ( /turf/open/mars_cave/mars_cave_6, /area/bigredv2/outside/lz1_telecomm_cas) +"ctw" = ( +/obj/item/tool/warning_cone, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/se) +"ctE" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Private Office"; + density = 0; + icon_state = "door_open" + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) "ctT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, @@ -19855,10 +18074,18 @@ }, /turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) +"cui" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) "cuG" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark, /area/bigredv2/outside/chapel) +"cuW" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/mars, +/area/bigredv2/outside/n) "cvi" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/tunnel{ @@ -19872,6 +18099,19 @@ }, /turf/open/jungle/impenetrable, /area/bigredv2/caves/eta/xenobiology) +"cya" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_x = 8; + pixel_y = -5 + }, +/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, +/area/bigredv2/outside/medical) "cyv" = ( /obj/structure/machinery/prop/almayer/computer/PC{ pixel_x = 3; @@ -19880,6 +18120,28 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"czE" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = -4; + pixel_y = -10 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"czI" = ( +/obj/item/stack/rods{ + pixel_x = -11; + pixel_y = -8 + }, +/obj/item/stack/rods{ + pixel_y = 13; + pixel_x = 17 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) "czS" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating, @@ -19892,14 +18154,15 @@ /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" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"cAR" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/mars, +/area/bigredv2/outside/n) "cBq" = ( /obj/structure/machinery/camera/autoname{ dir = 1 @@ -19914,6 +18177,19 @@ /obj/structure/machinery/portable_atmospherics/powered/scrubber, /turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) +"cCY" = ( +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"cCZ" = ( +/obj/effect/decal/cleanable/ash{ + pixel_y = -21 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) "cDx" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -19921,10 +18197,43 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"cGc" = ( -/obj/structure/machinery/botany, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) +"cDC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"cDG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + name = "Interview Room APC" + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"cDI" = ( +/obj/item/stack/sheet/metal{ + pixel_y = 9; + pixel_x = 9 + }, +/obj/item/stack/rods{ + pixel_y = 4; + pixel_x = -13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"cFd" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/se) +"cFx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"cFE" = ( +/turf/open/mars/mars_dirt_6, +/area/bigredv2/outside/nw) "cGi" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -19932,11 +18241,18 @@ }, /turf/open/floor/red/west, /area/bigredv2/outside/marshal_office) -"cGT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) +"cGR" = ( +/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"; + density = 0; + icon_state = "door_open" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) "cGZ" = ( /turf/open/mars_cave/mars_cave_20, /area/bigredv2/outside/lz1_north_cas) @@ -19948,14 +18264,6 @@ /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 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/lz2_cave) "cHH" = ( /turf/open/mars/mars_dirt_11, /area/bigredv2/outside/ne) @@ -19967,6 +18275,24 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/wood, /area/bigredv2/outside/dorms) +"cIq" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_plant) +"cIC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"cIE" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) "cIP" = ( /obj/item/paper/bigred/smuggling, /turf/open/floor, @@ -19997,6 +18323,11 @@ }, /turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) +"cJn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/ne) "cJA" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/mars_cave/mars_cave_2, @@ -20008,6 +18339,32 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) +"cKy" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/weapon/baton/damaged{ + pixel_y = 20; + pixel_x = 16 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"cKH" = ( +/obj/effect/spawner/random/bomb_supply{ + pixel_x = 6; + pixel_y = -3 + }, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"cLg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"cLo" = ( +/turf/open/floor/whitegreencorner/east, +/area/bigredv2/outside/medical) "cLq" = ( /obj/structure/bed/chair{ dir = 4 @@ -20022,6 +18379,26 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) +"cMB" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"cMU" = ( +/obj/structure/surface/table, +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/tool/hand_labeler{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) "cNb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ @@ -20041,6 +18418,14 @@ /obj/effect/landmark/crap_item, /turf/open/floor/dark, /area/bigredv2/outside/engineering) +"cOc" = ( +/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/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/c) "cOl" = ( /turf/open/mars_cave/mars_cave_18, /area/bigredv2/caves_research) @@ -20062,6 +18447,19 @@ /obj/effect/landmark/crap_item, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/n) +"cPh" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"cPr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/c) +"cPE" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/whiteblue, +/area/bigredv2/outside/medical) "cPZ" = ( /obj/structure/window/framed/solaris/reinforced, /obj/effect/decal/cleanable/dirt, @@ -20088,11 +18486,21 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) +"cRy" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/mars, +/area/bigredv2/outside/c) "cRP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/splatter, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"cSl" = ( +/obj/effect/decal/cleanable/ash{ + pixel_y = 19 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) "cSu" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A heavy duty power cable for high voltage applications"; @@ -20106,6 +18514,41 @@ }, /turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) +"cSB" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/stack/sheet/wood{ + pixel_x = 4 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"cSD" = ( +/obj/item/shard, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"cSK" = ( +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) +"cSP" = ( +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/filtration_cave_cas) +"cUt" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"cUK" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"cUN" = ( +/obj/item/clothing/accessory/storage/holster/armpit, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) "cVd" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -20123,21 +18566,38 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_se) +"cVS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) "cVY" = ( /turf/open/mars, /area/bigredv2/outside/space_port_lz2) +"cWD" = ( +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/turf/open/mars, +/area/bigredv2/outside/nw) +"cWX" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars, +/area/bigredv2/outside/filtration_plant) "cXG" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"cYy" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) +"cYC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/coffin/woodencrate, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) "cYI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -20156,10 +18616,21 @@ /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/dark, /area/bigredv2/outside/engineering) +"cZW" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) "daf" = ( /obj/effect/landmark/crap_item, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) +"day" = ( +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) "daB" = ( /obj/structure/surface/table/reinforced, /obj/structure/transmitter/colony_net/rotary{ @@ -20168,15 +18639,64 @@ }, /turf/open/floor/whitepurple/east, /area/bigredv2/caves/lambda/xenobiology) +"daY" = ( +/obj/item/stack/sheet/metal{ + pixel_x = 6; + pixel_y = -9 + }, +/turf/open/mars, +/area/bigredv2/outside/c) "dbi" = ( /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/outside/telecomm/lz2_cave) +"dbO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"dcB" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"dcD" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/mars, +/area/bigredv2/outside/s) "ddt" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) +"ddu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"dex" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/telecomm/lz2_cave) +"dfA" = ( +/obj/item/clothing/mask/gas{ + pixel_y = 9 + }, +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"dgi" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/trash/crushed_cup{ + pixel_x = -7; + pixel_y = -8 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) "dgy" = ( /obj/structure/barricade/handrail/wire{ dir = 4 @@ -20186,6 +18706,30 @@ "dgH" = ( /turf/open/floor/asteroidwarning, /area/bigredv2/caves_north) +"dgI" = ( +/obj/item/tool/weldingtool{ + pixel_x = 9; + pixel_y = 1 + }, +/obj/structure/barricade/wooden{ + dir = 8; + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"dgQ" = ( +/obj/item/device/flashlight/lamp/tripod{ + layer = 6; + pixel_y = 11 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/n) +"dhB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "dhN" = ( /obj/structure/window/framed/solaris, /obj/structure/machinery/door/poddoor/almayer{ @@ -20213,28 +18757,67 @@ }, /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) +"diJ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"diR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) +"djV" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) "dka" = ( /obj/effect/landmark/crap_item, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/n) +"dkl" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/nw) "dkY" = ( /obj/structure/platform, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm/n_cave) +"dme" = ( +/turf/open/mars/mars_dirt_5, +/area/bigredv2/outside/nw) "dmB" = ( /obj/item/tool/pickaxe, /turf/open/mars, /area/bigredv2/outside/filtration_plant) +"dmE" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/e) "dmO" = ( /obj/structure/machinery/fuelcell_recycler, /turf/open/floor/plating, /area/bigredv2/caves/eta/storage) +"dnw" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"dnz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"dnC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/surface/table/woodentable{ + dir = 8; + flipped = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "dnV" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidwarning/west, @@ -20251,6 +18834,17 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) +"doN" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"dpU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/e) "dqy" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -20274,6 +18868,10 @@ }, /turf/open/floor/wood, /area/bigredv2/outside/library) +"drI" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) "drT" = ( /obj/structure/disposalpipe/broken{ dir = 4 @@ -20296,6 +18894,16 @@ /obj/item/stack/sheet/metal, /turf/open/floor/dark, /area/bigredv2/outside/engineering) +"dsn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "dsy" = ( /obj/structure/platform, /obj/structure/platform{ @@ -20303,10 +18911,29 @@ }, /turf/open/gm/river, /area/bigredv2/outside/engineering) +"dsU" = ( +/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) "dtf" = ( /obj/structure/prop/server_equipment/broken, /turf/open/floor/podhatch/southwest, /area/bigredv2/caves/lambda/research) +"dtC" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"dtP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/pill/happy, +/obj/item/reagent_container/pill/happy, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) "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..."; @@ -20319,12 +18946,32 @@ /obj/effect/landmark/corpsespawner/colonist/burst, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"duw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/botany, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) "duA" = ( /obj/structure/platform{ dir = 1 }, /turf/open/gm/river, /area/bigredv2/outside/engineering) +"duG" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"dvq" = ( +/obj/item/trash/pistachios{ + pixel_x = -11; + pixel_y = -9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/virology) "dvz" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/solaris/reinforced, @@ -20367,9 +19014,18 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"dxH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/e) "dxV" = ( /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_sw) +"dyj" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "dyv" = ( /turf/open/mars, /area/bigredv2/caves/eta/xenobiology) @@ -20380,15 +19036,34 @@ /obj/structure/surface/table, /turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) -"dzY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning, +"dyX" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidfloor/north, /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) +"dzd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/se) +"dzD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = -1; + pixel_x = -4 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"dAg" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) "dAi" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/plating, @@ -20448,10 +19123,29 @@ /obj/item/weapon/twohanded/folded_metal_chair, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"dCD" = ( +/turf/closed/wall/solaris{ + damage = 1870; + damage_overlay = 5; + current_bulletholes = 3 + }, +/area/bigredv2/outside/medical) "dCU" = ( /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/mars, /area/bigredv2/outside/space_port_lz2) +"dDx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/bodybag, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"dEd" = ( +/obj/structure/sign/safety/biohazard{ + pixel_x = 7; + pixel_y = -24 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/virology) "dEf" = ( /obj/structure/closet/toolcloset, /obj/structure/machinery/light, @@ -20463,9 +19157,34 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_se) +"dEN" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"dEQ" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) "dEV" = ( /turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/lz2_south_cas) +"dEW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/tool/warning_cone{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"dFr" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/s) "dFz" = ( /obj/item/tool/pickaxe{ pixel_x = -18; @@ -20476,19 +19195,28 @@ }, /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, -/area/bigredv2/outside/lambda_cave_cas) "dFR" = ( /obj/item/stack/sheet/wood{ pixel_y = -8 }, /turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) +"dGs" = ( +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"dGw" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 1 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"dGz" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) "dHr" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6"; @@ -20496,6 +19224,11 @@ }, /turf/open/mars_cave, /area/bigredv2/caves/mining) +"dHs" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) "dHH" = ( /obj/effect/landmark/crap_item, /turf/open/mars_cave/mars_cave_2, @@ -20503,6 +19236,16 @@ "dIb" = ( /turf/open/floor, /area/bigredv2/caves) +"dIn" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 9; + pixel_y = -3 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "dIz" = ( /turf/open/mars_cave/mars_cave_8, /area/bigredv2/caves_virology) @@ -20524,25 +19267,22 @@ }, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port_lz2) +"dIJ" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "dJc" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor, /area/bigredv2/outside/dorms) -"dJr" = ( -/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) "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; @@ -20560,6 +19300,14 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_lambda) +"dLJ" = ( +/obj/structure/platform/kutjevo/rock, +/obj/item/trash/used_stasis_bag{ + pixel_y = 8; + pixel_x = 9 + }, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/nw) "dLS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/flora/pottedplant{ @@ -20572,6 +19320,10 @@ }, /turf/open/floor/wood, /area/bigredv2/outside/library) +"dME" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/bar) "dNd" = ( /obj/item/stack/cable_coil/cut, /turf/open/mars_cave/mars_dirt_4, @@ -20592,6 +19344,17 @@ /obj/effect/landmark/crap_item, /turf/open/floor/carpet, /area/bigredv2/outside/library) +"dOl" = ( +/obj/item/prop/colony/folded_bedroll{ + pixel_x = -5; + pixel_y = -4 + }, +/obj/item/stack/medical/bruise_pack{ + pixel_x = -8; + pixel_y = 2 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) "dOu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -20624,19 +19387,42 @@ "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, +"dPW" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/trash/cigbutt{ + icon_state = "ucigbutt"; + pixel_x = 2; + pixel_y = 8 + }, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/nw) +"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) +"dQY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"dQZ" = ( +/obj/structure/closet/toolcloset, /obj/effect/decal/cleanable/dirt, /turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/filtration_plant) @@ -20661,6 +19447,28 @@ "dTB" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/lambda_cave_cas) +"dTF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"dTI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/e) +"dUc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"dUi" = ( +/obj/item/stack/folding_barricade, +/turf/open/mars, +/area/bigredv2/outside/c) "dUj" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -8; @@ -20668,11 +19476,24 @@ }, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) +"dUs" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) "dUz" = ( /obj/effect/landmark/corpsespawner/miner, /obj/effect/decal/cleanable/blood/splatter, /turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves/mining) +"dVj" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) "dVp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -20696,6 +19517,13 @@ /obj/structure/closet/toolcloset, /turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/engineering) +"dWx" = ( +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/lambda_cave_cas) +"dXr" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) "dXs" = ( /obj/item/tool/pickaxe{ pixel_y = 12 @@ -20703,14 +19531,53 @@ /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) -"dXu" = ( -/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) +"dXL" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/marshal_office) +"dYv" = ( +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"dYO" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/obj/item/stack/folding_barricade, +/turf/open/mars, +/area/bigredv2/outside/c) +"dZl" = ( +/obj/effect/landmark/objective_landmark/close, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -6; + pixel_y = 6; + layer = 3.1 + }, +/obj/effect/decal/cleanable/generic, +/obj/item/trash/cheesie{ + pixel_y = 6; + pixel_x = 9 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"dZL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/telecomm/lz2_cave) "dZO" = ( /obj/effect/decal/cleanable/blood{ dir = 8; @@ -20721,6 +19588,14 @@ }, /turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves/mining) +"dZX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/virology) +"eak" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/c) "eaW" = ( /obj/structure/disposalpipe/segment, /obj/item/frame/rack, @@ -20741,6 +19616,14 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/darkyellowcorners2/east, /area/bigredv2/outside/engineering) +"ebT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/crushed_cup{ + pixel_x = 7; + pixel_y = -5 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) "ebZ" = ( /turf/open/floor/darkgreencorners2, /area/bigredv2/caves/eta/storage) @@ -20760,6 +19643,11 @@ }, /turf/open/mars_cave/mars_cave_19, /area/bigredv2/caves/mining) +"ecC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) "ecK" = ( /turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_east) @@ -20770,6 +19658,29 @@ /obj/structure/largecrate, /turf/open/floor/asteroidfloor/north, /area/bigred/ground/garage_workshop) +"ecZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"edk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"edO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-in" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) "eeI" = ( /obj/structure/machinery/light, /obj/structure/window{ @@ -20782,18 +19693,54 @@ }, /turf/open/floor/wood, /area/bigredv2/outside/library) +"eeR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/s) "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 +"eft" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) +/obj/structure/surface/table, +/obj/item/storage/box/m94{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"efF" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) +"efT" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/close{ + pixel_x = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"egg" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "filtration"; + name = "Filtration Lockdown" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/filtration_cave_cas) "egI" = ( /obj/item/ore, /obj/item/ore{ @@ -20811,6 +19758,23 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"egZ" = ( +/obj/item/trash/sosjerky{ + pixel_x = -12; + pixel_y = 17 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"eha" = ( +/obj/structure/barricade/handrail/medical{ + dir = 1 + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"eiK" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/mars, +/area/bigredv2/outside/c) "ejp" = ( /obj/effect/landmark/nightmare{ insert_tag = "filtration_restored" @@ -20824,9 +19788,34 @@ }, /turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) +"ejG" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/ne) "ejP" = ( /turf/closed/wall/solaris, /area/bigredv2/outside/se) +"ekl" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"eku" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"ekz" = ( +/obj/item/stack/sheet/wood{ + pixel_y = 5; + pixel_x = -4 + }, +/obj/item/dartboard{ + pixel_y = 28 + }, +/turf/open/floor/carpet11_12/west, +/area/bigredv2/outside/bar) "ekV" = ( /obj/effect/decal/cleanable/blood{ dir = 8; @@ -20853,10 +19842,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/darkyellowcorners2, /area/bigredv2/caves/eta/living) +"emi" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/mars, +/area/bigredv2/outside/c) "emC" = ( /obj/effect/decal/cleanable/ash, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"enb" = ( +/obj/effect/decal/strata_decals/grime/grime2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/nw) "ene" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/cans/souto/diet/blue{ @@ -20866,6 +19863,14 @@ /obj/item/reagent_container/food/snacks/cookie, /turf/open/mars_cave, /area/bigredv2/caves/mining) +"enx" = ( +/obj/structure/largecrate/random/mini{ + pixel_x = -8; + pixel_y = -7; + layer = 2.9 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "enD" = ( /obj/item/trash/cigbutt/ucigbutt, /obj/item/trash/cigbutt/cigarbutt{ @@ -20887,6 +19892,24 @@ }, /turf/open/floor/delivery, /area/bigredv2/outside/dorms) +"enR" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/dirt, +/obj/item/prop{ + desc = "A bunch of tiny bits of shattered metal."; + icon = 'icons/obj/items/shards.dmi'; + icon_state = "shrapnelsmall"; + name = "piece of shrapnel"; + pixel_x = -1; + pixel_y = 4 + }, +/turf/open/floor/whiteblue/north, +/area/bigredv2/outside/medical) +"eoB" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) "eoU" = ( /turf/open/floor/almayer/w_y2/north, /area/bigredv2/outside/admin_building) @@ -20903,6 +19926,36 @@ }, /turf/open/floor/delivery, /area/bigredv2/outside/dorms) +"eqz" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/FixOVein{ + pixel_x = -7; + pixel_y = -6 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"erf" = ( +/obj/structure/barricade/wooden{ + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"eri" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/ganucci{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/trash/cigbutt{ + pixel_x = -14; + pixel_y = -6 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "erA" = ( /obj/item/ore, /turf/open/mars_cave/mars_dirt_4, @@ -20912,9 +19965,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"erJ" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/eta) "erX" = ( /obj/structure/machinery/light/small, /turf/open/mars_cave/mars_cave_20, @@ -20926,6 +19976,24 @@ /obj/structure/window, /turf/open/floor/wood, /area/bigredv2/outside/library) +"etg" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/nw) +"etw" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/e) +"euk" = ( +/obj/structure/bed/roller, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) "eup" = ( /obj/structure/bed/chair, /obj/item/trash/cigbutt, @@ -20937,6 +20005,18 @@ "euF" = ( /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/lz2_south_cas) +"euI" = ( +/obj/structure/largecrate/random/secure{ + pixel_x = -9; + pixel_y = 20 + }, +/obj/structure/largecrate/supply/supplies/tables_racks{ + pixel_y = 1; + pixel_x = -6; + layer = 3.1 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "euO" = ( /turf/open/mars_cave/mars_cave_22, /area/bigredv2/caves_research) @@ -20949,6 +20029,9 @@ }, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) +"evt" = ( +/turf/open/asphalt/cement/cement9, +/area/bigredv2/caves_lambda) "evA" = ( /obj/structure/platform_decoration/shiva{ dir = 8 @@ -20956,10 +20039,25 @@ /obj/structure/platform_decoration/shiva, /turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) +"evQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"evV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) "evX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) +"ewo" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/w) "ewv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/curtain/red, @@ -20968,6 +20066,17 @@ "exc" = ( /turf/open/floor/asteroidwarning/east, /area/bigred/ground/garage_workshop) +"ezz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/hotdog{ + pixel_x = -12; + pixel_y = -11 + }, +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "ezQ" = ( /obj/structure/largecrate/supply/supplies/flares, /turf/open/floor/plating/platingdmg3/west, @@ -20983,12 +20092,22 @@ /obj/effect/spawner/gibspawner/xeno, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) +"eBq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/c) "eBL" = ( /obj/structure/bookcase{ icon_state = "book-5" }, /turf/open/floor/wood, /area/bigredv2/outside/library) +"eCM" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 1 + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) "eDQ" = ( /obj/structure/closet/secure_closet/engineering_personal, /obj/effect/landmark/objective_landmark/medium, @@ -21003,10 +20122,20 @@ /obj/effect/landmark/queen_spawn, /turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) +"eEp" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/space_port_lz2) "eEy" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave, /area/bigredv2/outside/lz2_west_cas) +"eEO" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) "eER" = ( /obj/structure/machinery/power/port_gen/pacman/super, /turf/open/floor/plating/platingdmg3/west, @@ -21040,34 +20169,102 @@ /obj/structure/machinery/light/double, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) +"eGq" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "filtration"; + name = "Filtration Lockdown" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/filtration_cave_cas) +"eGB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/dorms) "eGM" = ( /turf/open/floor/darkyellowcorners2, /area/bigredv2/outside/engineering) +"eGR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/filtration_cave_cas) "eHA" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) +"eIj" = ( +/obj/item/clothing/shoes/galoshes{ + pixel_x = 4; + pixel_y = -6 + }, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) "eIN" = ( /obj/structure/machinery/power/port_gen/pacman, /obj/effect/decal/cleanable/dirt, /turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) +"eJf" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/mars, +/area/bigredv2/outside/ne) +"eJp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/space_port_lz2) +"eJu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/bigredv2/caves_lambda) "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 +"eJI" = ( +/obj/item/prop{ + icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi'; + icon_state = "m41ae2"; + name = "M41AE2 Heavy Pulse Rifle"; + desc = "A large claw mark across this weapon indicates it is inoperable."; + pixel_x = 4; + pixel_y = 7 }, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"eKe" = ( +/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; + pixel_y = 4; + pixel_x = 22 + }, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) "eKm" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) +"eKS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "viro"; + name = "Virology Lockdown" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) "eKU" = ( /obj/structure/machinery/door_control{ id = "filtration"; @@ -21077,6 +20274,10 @@ }, /turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) +"eKY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/space_port_lz2) "eKZ" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras/wooden_tv{ @@ -21101,14 +20302,25 @@ "eLQ" = ( /turf/open/mars_cave/mars_dirt_5, /area/bigredv2/outside/filtration_plant) +"eMN" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"eMP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4" + }, +/obj/item/reagent_container/glass/bottle/toxin{ + pixel_y = 12; + pixel_x = 12 + }, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) "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" @@ -21123,10 +20335,52 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_telecomm_cas) +"eOf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 7; + pixel_y = -6 + }, +/obj/item/trash/eat{ + pixel_x = -9; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"eOS" = ( +/turf/closed/wall/solaris{ + damage = 1870; + damage_overlay = 5; + current_bulletholes = 3 + }, +/area/bigredv2/outside/office_complex) +"ePi" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/tonic{ + pixel_x = 7 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 1 + }, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = -5 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) "ePk" = ( /obj/structure/prop/server_equipment/broken, /turf/open/floor/greengrid, /area/bigredv2/caves/lambda/research) +"ePz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) "eRc" = ( /turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/filtration_plant) @@ -21139,6 +20393,21 @@ "eRI" = ( /turf/open/floor/delivery, /area/bigredv2/outside/c) +"eRL" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_y = -9; + pixel_x = -7 + }, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_y = -2 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"eRN" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) "eSm" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/darkyellow2/east, @@ -21147,6 +20416,10 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) +"eSK" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/filtration_cave_cas) "eSN" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -21154,10 +20427,23 @@ }, /turf/open/floor/dark, /area/bigredv2/outside/admin_building) +"eSO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "eTj" = ( /obj/structure/reagent_dispensers/fueltank/gas, /turf/open/mars/mars_dirt_14, /area/bigredv2/outside/c) +"eTK" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "eUs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/reinforced/prison, @@ -21168,6 +20454,16 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"eUX" = ( +/turf/closed/wall/solaris{ + damage = 1870; + damage_overlay = 5 + }, +/area/bigredv2/outside/office_complex) +"eVb" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/mars, +/area/bigredv2/outside/nw) "eVo" = ( /obj/effect/decal/cleanable/dirt, /obj/item/weapon/gun/pistol/m4a3, @@ -21183,6 +20479,10 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"eVL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) "eVM" = ( /obj/structure/largecrate/random/barrel/true_random, /turf/open/floor/asteroidfloor/north, @@ -21190,6 +20490,13 @@ "eWd" = ( /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port_lz2) +"eWk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "eWo" = ( /obj/effect/decal/cleanable/dirt, /turf/open/mars, @@ -21232,6 +20539,11 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) +"eWW" = ( +/obj/item/tool/warning_cone, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement9, +/area/bigredv2/outside/filtration_cave_cas) "eYy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/fuelcell_recycler/full, @@ -21243,6 +20555,10 @@ }, /turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/e) +"eYC" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) "eYH" = ( /obj/structure/machinery/camera/autoname{ dir = 4 @@ -21255,6 +20571,13 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/floor4, /area/bigredv2/outside/cargo) +"eZb" = ( +/obj/item/trash/wy_chips_pepper{ + pixel_y = -13; + pixel_x = 24 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) "eZw" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -21265,6 +20588,10 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"eZD" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) "fbf" = ( /turf/open/mars/mars_dirt_8, /area/bigredv2/outside/sw) @@ -21292,6 +20619,33 @@ "feS" = ( /turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_sw) +"ffl" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/sosjerky{ + pixel_x = 14; + pixel_y = -4 + }, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"ffK" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/ne) +"fgu" = ( +/obj/structure/surface/rack, +/obj/item/trash/wy_chips_pepper{ + pixel_y = -13; + pixel_x = 24 + }, +/obj/item/explosive/grenade/high_explosive{ + pixel_x = -1; + pixel_y = -2 + }, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) "fgD" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ name = "\improper Lambda Lab Server Room" @@ -21306,6 +20660,11 @@ }, /turf/open/floor/podhatchfloor, /area/bigredv2/outside/engineering) +"fhx" = ( +/obj/structure/bed/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "fhy" = ( /obj/structure/bed/chair/comfy/blue{ dir = 8 @@ -21316,9 +20675,33 @@ /obj/effect/landmark/hunter_secondary, /turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves_north) +"fhJ" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/virology) +"fia" = ( +/obj/effect/landmark/crap_item, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) +"fik" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_casing/bullet, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "fin" = ( /turf/open/floor/plating, /area/bigredv2/caves/eta/xenobiology) +"fiI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) "fjz" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/objective{ @@ -21333,6 +20716,23 @@ "fjP" = ( /turf/open/floor/delivery, /area/bigredv2/caves) +"fkD" = ( +/obj/item/ammo_magazine/shotgun/slugs, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"fkV" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement, +/area/bigredv2/outside/space_port) +"flu" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) "fmd" = ( /obj/structure/machinery/light{ dir = 1 @@ -21342,11 +20742,20 @@ "fmn" = ( /turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves_virology) +"fmx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/bigredv2/outside/lambda_cave_cas) "fmL" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/camera/oldcamera, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"fmW" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/mars, +/area/bigredv2/outside/n) "fnh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -21355,12 +20764,6 @@ /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/delivery, -/area/bigredv2/outside/medical) "fnv" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/carpet, @@ -21378,18 +20781,70 @@ }, /turf/closed/wall/wood, /area/bigredv2/caves/mining) +"fps" = ( +/obj/item/bedsheet/brown{ + pixel_y = -1; + pixel_x = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"fqx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"fsy" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/n) +"fsO" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) "fsT" = ( /turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/n) "fsY" = ( /turf/open/mars/mars_dirt_6, /area/bigredv2/outside/space_port_lz2) +"ftt" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/s) +"ftO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) +"ftR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/prop/helmetgarb/spent_buckshot{ + pixel_y = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) "ftY" = ( /turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/sw) +"fuj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) "fus" = ( /turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/lz2_south_cas) +"fuB" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) "fvb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/invuln/minecart_tracks{ @@ -21397,11 +20852,19 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"fvu" = ( -/obj/structure/machinery/light/double, -/turf/open/mars_cave/mars_cave_5, -/area/bigredv2/outside/lz2_south_cas) -"fwa" = ( +"fvr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"fvu" = ( +/obj/structure/machinery/light/double, +/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" = ( @@ -21427,31 +20890,71 @@ /obj/structure/surface/table, /turf/open/floor, /area/bigredv2/caves) +"fxa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/bigredv2/outside/virology) +"fxe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/warning_cone{ + pixel_x = 6 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) "fxh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/floor/dark, /area/bigredv2/caves/eta/living) +"fxj" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/w) "fxn" = ( /obj/item/stack/cable_coil/cut, /turf/open/floor/plating/warnplate/west, /area/bigredv2/oob) +"fxu" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) "fxK" = ( /turf/open/mars_cave/mars_cave_10, /area/bigredv2/outside/lz1_telecomm_cas) +"fxO" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) "fxZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_lambda) -"fyp" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/darkgreencorners2, -/area/bigredv2/caves/eta/storage) +"fyo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) "fyz" = ( /obj/structure/bed, /turf/open/floor/wood, /area/bigredv2/caves/eta/living) +"fyC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Armory"; + locked = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) "fyO" = ( /obj/structure/transmitter/colony_net{ phone_category = "Solaris Ridge"; @@ -21468,6 +20971,25 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/redfull/northwest, /area/bigredv2/outside/lambda_cave_cas) +"fzt" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"fAT" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = -7 + }, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = 1 + }, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = 7 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) "fBc" = ( /obj/structure/pipes/standard/tank/phoron, /turf/open/floor/plating, @@ -21475,9 +20997,21 @@ "fBo" = ( /turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) +"fBJ" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8; + layer = 2.9; + pixel_x = -3 + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) "fCb" = ( /turf/open/floor, /area/bigredv2/outside/filtration_cave_cas) +"fCQ" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) "fDf" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -21488,6 +21022,9 @@ "fDr" = ( /turf/open/floor/darkred2/north, /area/bigredv2/caves/eta/research) +"fEb" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/se) "fEv" = ( /obj/structure/machinery/door/airlock/almayer/secure/colony{ name = "\improper Engine Reactor" @@ -21497,6 +21034,13 @@ "fEE" = ( /turf/open/mars_cave/mars_cave_15, /area/bigredv2/outside/ne) +"fFs" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/e) "fFG" = ( /obj/structure/largecrate/random/barrel, /turf/open/mars_cave/mars_cave_13, @@ -21504,6 +21048,15 @@ "fFO" = ( /turf/open/mars/mars_dirt_3, /area/bigredv2/outside/space_port_lz2) +"fGq" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"fGz" = ( +/obj/structure/machinery/botany, +/obj/item/seeds/goldappleseed, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/marshal_office) "fGK" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" @@ -21526,15 +21079,27 @@ /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, /turf/open/floor/wood, /area/bigredv2/outside/library) +"fKg" = ( +/obj/structure/machinery/body_scanconsole, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"fKC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "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..."; @@ -21544,10 +21109,11 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_north) -"fKW" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/darkyellowcorners2/north, -/area/bigredv2/caves/eta/living) +"fLd" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) "fLj" = ( /turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_virology) @@ -21568,6 +21134,10 @@ /obj/item/device/flashlight/lantern, /turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) +"fMJ" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "fML" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/reinforced/prison, @@ -21592,9 +21162,19 @@ }, /turf/open/floor/dark, /area/bigredv2/caves/lambda/xenobiology) +"fNT" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/s) "fOc" = ( /turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves_virology) +"fOf" = ( +/obj/item/trash/eat{ + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "fOo" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -21627,10 +21207,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"fOV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) "fPe" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/telecomm/n_cave) +"fPi" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) "fPB" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -21652,13 +21242,51 @@ /obj/item/tool/pickaxe/drill, /turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves/mining) +"fRr" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"fRF" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 13; + pixel_y = 13 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) "fRH" = ( /turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves_se) +"fRP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/crushed_cup{ + pixel_x = 3; + pixel_y = 14 + }, +/obj/structure/largecrate/random/barrel/red{ + pixel_y = -1; + pixel_x = 3 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) "fRW" = ( /obj/structure/machinery/light/small, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) +"fSg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/weldingtool{ + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) "fSJ" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/delivery, @@ -21670,14 +21298,17 @@ "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/asteroidfloor/north, -/area/bigredv2/outside/c) +"fTj" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/e) +"fTw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/outside/medical) "fUk" = ( /obj/structure/surface/table, /obj/item/clothing/head/hardhat, @@ -21705,9 +21336,37 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) +"fVz" = ( +/obj/structure/girder, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/medical) +"fVX" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) +"fWb" = ( +/obj/item/clothing/under/darkred{ + pixel_y = 7; + pixel_x = 10 + }, +/obj/structure/surface/rack, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"fWg" = ( +/obj/item/storage/pill_bottle/tramadol{ + pixel_y = -6; + pixel_x = 6 + }, +/obj/item/trash/burger, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) "fWw" = ( /turf/open/jungle/impenetrable, /area/bigredv2/caves/eta/xenobiology) +"fWH" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/mars, +/area/bigredv2/outside/nw) "fWY" = ( /obj/structure/window, /obj/structure/window{ @@ -21718,6 +21377,10 @@ /obj/item/prop/magazine/book/starshiptroopers, /turf/open/floor/wood, /area/bigredv2/outside/library) +"fXg" = ( +/obj/item/reagent_container/glass/fertilizer/ez, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) "fXm" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -21725,11 +21388,44 @@ }, /turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) +"fXA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) +"fXF" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/c) "fXR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/portable_atmospherics/hydroponics, /turf/open/floor/whitegreenfull, /area/bigredv2/outside/hydroponics) +"fXZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 5; + layer = 3.01; + pixel_y = -7 + }, +/obj/item/trash/eat{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/item/trash/eat{ + pixel_x = -9; + pixel_y = -5 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) "fYH" = ( /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/caves/mining) @@ -21739,6 +21435,14 @@ /obj/structure/machinery/light, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"fYQ" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"fYU" = ( +/obj/structure/girder, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) "fZg" = ( /obj/structure/window/framed/solaris/reinforced, /obj/effect/decal/cleanable/dirt, @@ -21750,9 +21454,23 @@ "fZm" = ( /turf/open/mars/mars_dirt_10, /area/bigredv2/outside/eta) +"fZA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/flour, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) "gad" = ( /turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) +"gae" = ( +/obj/structure/barricade/wooden, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "gan" = ( /obj/structure/platform_decoration/shiva{ dir = 1 @@ -21762,10 +21480,42 @@ }, /turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) +"gat" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"gaY" = ( +/obj/item/trash/hotdog{ + pixel_x = -12; + pixel_y = -11 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) "gbA" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/ne) +"gcs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/e) +"gcI" = ( +/obj/item/weapon/broken_bottle, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"gcL" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "gcR" = ( /obj/effect/landmark/crap_item, /turf/open/mars_cave/mars_cave_3, @@ -21776,6 +21526,15 @@ "gdx" = ( /turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) +"gdy" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Dormitories Tool Storage Maintenance"; + welded = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) "gdK" = ( /turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/n) @@ -21783,12 +21542,22 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars, /area/bigredv2/caves/eta/xenobiology) -"gej" = ( -/turf/open/floor/whiteblue/southeast, -/area/bigredv2/outside/medical) +"geo" = ( +/obj/item/weapon/dart/green{ + pixel_y = -11 + }, +/turf/open/floor/carpet11_12/west, +/area/bigredv2/outside/bar) "geC" = ( /turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/lz1_north_cas) +"geJ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"gfo" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) "gfX" = ( /obj/structure/sign/safety/hazard{ pixel_y = -32 @@ -21804,6 +21573,17 @@ "ggW" = ( /turf/open/floor/whitepurple/east, /area/bigredv2/caves/lambda/research) +"ghz" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"gii" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/mars, +/area/bigredv2/outside/nw) "gio" = ( /turf/open/mars_cave, /area/bigredv2/outside/filtration_cave_cas) @@ -21811,6 +21591,11 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave, /area/bigredv2/caves_sw) +"giC" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) "giY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -21820,6 +21605,23 @@ }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/s) +"gjB" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random{ + pixel_y = 6; + pixel_x = -4 + }, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"gjH" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/eta) +"gjN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/e) "gke" = ( /obj/item/tool/warning_cone, /turf/open/mars_cave/mars_dirt_7, @@ -21830,6 +21632,20 @@ }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) +"gkj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) +"gkA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) "gkD" = ( /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..."; @@ -21838,10 +21654,31 @@ }, /turf/open/floor/delivery, /area/bigredv2/outside/cargo) +"gkO" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) "glB" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/lz2_south_cas) +"glH" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -7 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/reagent_container/food/drinks/coffee, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 7 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) "gmm" = ( /obj/structure/window/framed/solaris, /obj/effect/decal/cleanable/molten_item, @@ -21851,6 +21688,14 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/engineering) +"gmp" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/filtration_plant) +"gmE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) "gmN" = ( /turf/open/mars_cave/mars_cave_18, /area/bigredv2/caves_lambda) @@ -21859,6 +21704,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"goa" = ( +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) "gpg" = ( /turf/open/mars_cave, /area/bigredv2/caves_east) @@ -21868,10 +21719,6 @@ /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, @@ -21888,6 +21735,29 @@ /obj/effect/landmark/crap_item, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz2_south_cas) +"gqF" = ( +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/vomit{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"gqH" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/space_port) +"gqJ" = ( +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 2; + pixel_y = -4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) "gqS" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/spawner/random/tool, @@ -21900,14 +21770,26 @@ }, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/nw/ceiling) -"grU" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ +"grM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll{ + dir = 5 + }, +/obj/item/prop/colony/usedbandage{ dir = 4; - id = "viro"; - name = "Virology Lockdown" + pixel_x = -2; + pixel_y = 7 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/virology) +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"gsb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/c) +"gsM" = ( +/obj/structure/fence, +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) "gsW" = ( /obj/structure/platform/kutjevo/rock, /obj/structure/platform/kutjevo/rock{ @@ -21924,6 +21806,12 @@ }, /turf/open/floor/whiteblue/north, /area/bigredv2/outside/medical) +"gtt" = ( +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) "gtX" = ( /turf/open/mars_cave, /area/bigredv2/caves_se) @@ -21934,12 +21822,22 @@ "guM" = ( /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_research) +"guY" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/engineering) "gvd" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ name = "\improper Lambda Lab Break Room" }, /turf/open/floor/delivery, /area/bigredv2/caves/lambda/breakroom) +"gvC" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + layer = 3.5 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "gvI" = ( /obj/structure/transmitter/colony_net{ dir = 4; @@ -21951,13 +21849,81 @@ }, /turf/open/floor/elevatorshaft/north, /area/bigredv2/caves/lambda/breakroom) +"gvU" = ( +/obj/item/shard, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"gvY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Dormitories"; + welded = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/dorms) +"gvZ" = ( +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet13_5/west, +/area/bigredv2/outside/bar) +"gwf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/e) "gwg" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) +"gwD" = ( +/obj/structure/closet/bodybag, +/obj/structure/bed/bedroll{ + dir = 10 + }, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"gwP" = ( +/obj/structure/sign/safety/autodoc{ + pixel_x = -32 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" + }, +/obj/structure/barricade/handrail/medical, +/obj/structure/sign/safety/med_cryo{ + pixel_x = -16 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"gxo" = ( +/obj/item/trash/cigbutt{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) "gxJ" = ( /turf/open/mars_cave/mars_cave_18, /area/bigredv2/caves_sw) +"gxQ" = ( +/obj/structure/barricade/wooden, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/c) +"gyb" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/mars, +/area/bigredv2/outside/nw) +"gyp" = ( +/obj/effect/decal/strata_decals/grime/grime1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"gyv" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) "gyJ" = ( /obj/structure/machinery/power/port_gen/pacman/super, /turf/open/mars_cave/mars_cave_2, @@ -21976,6 +21942,20 @@ }, /turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) +"gzj" = ( +/obj/item/stack/sheet/cardboard{ + pixel_x = -6; + pixel_y = -2 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"gzm" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) "gzG" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -9; @@ -22002,6 +21982,10 @@ }, /turf/open/floor/dark, /area/bigredv2/outside/office_complex) +"gBv" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/s) "gCx" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -22040,18 +22024,53 @@ /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) +"gGf" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) "gGO" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/platingdmg2/west, /area/bigredv2/caves/mining) +"gHC" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"gHD" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "filtration"; + name = "Filtration Lockdown" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/filtration_cave_cas) "gHH" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) +"gHR" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/reagent_container/food/snacks/wrapped/booniebars{ + pixel_y = 7; + pixel_x = -2 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "gHV" = ( /obj/structure/surface/table, /turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/engineering) +"gIi" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) "gIT" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ dir = 4; @@ -22060,22 +22079,92 @@ }, /turf/open/floor/delivery, /area/bigredv2/caves_north) +"gIW" = ( +/obj/structure/machinery/light, +/obj/item/trash/crushed_cup{ + pixel_x = -4; + pixel_y = -7 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"gJk" = ( +/obj/item/trash/pistachios{ + pixel_x = -11; + pixel_y = -9 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) "gJw" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave, /area/bigredv2/caves_virology) +"gJB" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/lambda_cave_cas) +"gJF" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/w) "gKk" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_cave_4, /area/bigredv2/caves_virology) -"gMj" = ( +"gKF" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/mars, +/area/bigredv2/outside/se) +"gKJ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/eta) +"gKM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/snack_bowl{ + pixel_y = 5; + pixel_x = -8 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"gKY" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 1 + icon_state = "SE-in" }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) +"gLa" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/mars, +/area/bigredv2/outside/s) +"gLe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/se) +"gLi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/virology) +"gLv" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"gLC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/wood{ + pixel_x = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"gMa" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/e) "gMC" = ( /obj/structure/surface/table, /obj/effect/spawner/random/bomb_supply, @@ -22085,6 +22174,15 @@ /obj/structure/machinery/power/turbine, /turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) +"gNv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) "gNz" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -22093,11 +22191,26 @@ "gNH" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves) +"gOd" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) "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) +"gOK" = ( +/obj/item/prop/magazine/dirty/torn/alt{ + pixel_x = -11; + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 7; + pixel_y = -18 + }, +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/ne) "gPc" = ( /turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/telecomm/n_cave) @@ -22113,22 +22226,53 @@ /obj/item/device/flashlight/lantern, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"gPI" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/tool/surgery/circular_saw{ + pixel_x = 10 + }, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) "gQj" = ( /obj/structure/cargo_container/horizontal/blue/top, /turf/open/mars, /area/bigredv2/outside/space_port_lz2) -"gSg" = ( +"gQM" = ( +/obj/effect/decal/cleanable/generic, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/se) -"gSB" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8 +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/space_port_lz2) +"gRT" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = -5 }, -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/caves/mining) -"gTJ" = ( -/obj/structure/machinery/autolathe, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 1 + }, +/obj/item/reagent_container/food/drinks/flask/vacuumflask{ + pixel_x = 7 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"gSB" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8 + }, +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/caves/mining) +"gSL" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"gTJ" = ( +/obj/structure/machinery/autolathe, /turf/open/floor/plating, /area/bigredv2/caves/mining) "gTN" = ( @@ -22143,6 +22287,11 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"gUA" = ( +/obj/item/tool/warning_cone, +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) "gUD" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -22162,6 +22311,24 @@ "gVm" = ( /turf/open/floor/darkblue2/southeast, /area/bigredv2/caves/eta/research) +"gVn" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_2" + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/mono{ + pixel_x = -11; + pixel_y = 8 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/partypopper{ + pixel_x = 17; + pixel_y = 16 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"gVF" = ( +/obj/effect/decal/remains/human, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/lambda_cave_cas) "gWv" = ( /obj/effect/landmark/nightmare{ insert_tag = "eta_carp" @@ -22198,6 +22365,19 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) +"gYI" = ( +/obj/structure/machinery/light, +/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/redcorner, +/area/bigredv2/outside/marshal_office) +"gYR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/w) "gZc" = ( /obj/structure/machinery/light{ dir = 8 @@ -22218,13 +22398,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) -"hbx" = ( -/obj/structure/machinery/light{ - dir = 8 +"haV" = ( +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/e) +"hby" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"hbY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair/wood/normal{ + dir = 1 }, -/obj/structure/bed/roller, -/turf/open/floor/white, -/area/bigredv2/outside/medical) +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "hcb" = ( /obj/effect/landmark/hunter_secondary, /turf/open/mars_cave/mars_cave_2, @@ -22235,6 +22421,26 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) +"hcK" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/se) +"hcR" = ( +/obj/effect/decal/remains/human, +/turf/open/asphalt/cement/cement15, +/area/bigredv2/caves_lambda) +"hda" = ( +/obj/structure/surface/table, +/obj/effect/landmark/objective_landmark/medium, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -7 + }, +/obj/item/reagent_container/food/drinks/coffee, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 7 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) "hdc" = ( /obj/structure/bed/chair{ dir = 1 @@ -22258,6 +22464,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"heR" = ( +/obj/structure/surface/table/reinforced, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"hfo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/caves_lambda) "hfB" = ( /obj/item/ore{ pixel_x = -5; @@ -22265,6 +22484,17 @@ }, /turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) +"hfC" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_x = 30 + }, +/obj/item/tool/soap/deluxe{ + pixel_y = -7; + pixel_x = -9 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) "hgr" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_cave_16, @@ -22273,9 +22503,22 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_cave_14, /area/bigredv2/outside/n) +"hgP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/w) "hgT" = ( /turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/lz1_north_cas) +"hhf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor, +/area/bigredv2/outside/office_complex) "hho" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair/wood/normal{ @@ -22286,12 +22529,25 @@ "hhK" = ( /turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) -"hhX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"hik" = ( +/obj/structure/surface/table, +/obj/item/bodybag/cryobag{ + pixel_y = -3; + pixel_x = 10 }, -/turf/open/floor/plating, -/area/bigredv2/outside/bar) +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ + pixel_y = 3; + pixel_x = 7 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"hip" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/c) "hiP" = ( /obj/structure/sign/safety/one{ pixel_x = 16 @@ -22305,12 +22561,32 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/bigredv2/caves/eta/storage) +"hkJ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/spawner/random/tool{ + pixel_x = -8; + pixel_y = -6 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"hkS" = ( +/obj/structure/platform/kutjevo/rock, +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/nw) "hkY" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/darkred2/east, /area/bigredv2/outside/admin_building) +"hlH" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/w) "hmm" = ( /turf/open/floor/delivery, /area/bigredv2/caves/lambda/research) @@ -22325,12 +22601,34 @@ }, /turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) +"hmW" = ( +/obj/structure/surface/table, +/obj/item/tool/pen/blue{ + pixel_y = -8; + pixel_x = 3 + }, +/turf/open/floor/grimy, +/area/bigredv2/outside/office_complex) "hnh" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves_research) +"hos" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8; + layer = 2.9; + pixel_x = -3 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"hoI" = ( +/obj/structure/bed/roller, +/obj/structure/closet/bodybag, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) "hoQ" = ( /obj/effect/landmark/hunter_secondary, /turf/open/mars_cave/mars_cave_2, @@ -22342,9 +22640,25 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"hpd" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "hpg" = ( /turf/open/mars/mars_dirt_13, /area/bigredv2/outside/space_port_lz2) +"hpl" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"hpM" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/nw) "hqC" = ( /obj/item/ammo_magazine/rifle/mar40/lmg, /turf/open/mars_cave/mars_cave_2, @@ -22362,6 +22676,31 @@ }, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) +"hrs" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4" + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_plant) +"hrX" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"hso" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/mars, +/area/bigredv2/outside/n) +"hsq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) "hsF" = ( /obj/structure/closet/firecloset/full, /obj/effect/landmark/objective_landmark/close, @@ -22371,11 +22710,21 @@ /obj/item/ore, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/filtration_plant) -"hto" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/cola, -/turf/open/floor, -/area/bigredv2/outside/general_offices) +"htb" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/c) +"hvd" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-interior"; + name = "Lambda Checkpoint Interior" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/asphalt/cement, +/area/bigredv2/outside/lambda_cave_cas) "hvQ" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -22394,6 +22743,20 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/dark, /area/bigredv2/caves/lambda/research) +"hwC" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"hxn" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/nw) "hxs" = ( /obj/structure/closet/secure_closet/personal/cabinet, /obj/effect/landmark/objective_landmark/far, @@ -22404,9 +22767,19 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) +"hyB" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/cargo) "hyC" = ( /turf/open/floor/bcircuit, /area/bigredv2/outside/telecomm/warehouse) +"hyO" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/space_port) "hzg" = ( /obj/structure/cable{ icon_state = "1-6" @@ -22416,6 +22789,16 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"hzo" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/bedsheet/medical{ + pixel_x = 4; + pixel_y = -12 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "hzy" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -22425,10 +22808,30 @@ /obj/item/paper/bigred/final, /turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) +"hAa" = ( +/obj/structure/surface/table/woodentable{ + dir = 8; + flipped = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) "hAj" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave, /area/bigredv2/caves_research) +"hAl" = ( +/obj/structure/machinery/light, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"hBk" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ + pixel_y = 8; + pixel_x = -11 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "hBD" = ( /obj/structure/bed/chair, /turf/open/floor, @@ -22451,11 +22854,36 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"hDe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/white, +/obj/item/stack/medical/ointment{ + pixel_x = 2; + pixel_y = 16 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "hDK" = ( /obj/structure/largecrate/supply, /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) +"hDT" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars, +/area/bigredv2/outside/e) +"hDX" = ( +/turf/closed/wall/solaris{ + damage = 1000; + damage_overlay = 3 + }, +/area/bigredv2/outside/office_complex) +"hEr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) "hEz" = ( /turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves/mining) @@ -22470,11 +22898,28 @@ /obj/structure/reagent_dispensers/fueltank/gas, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"hEN" = ( +/turf/open/asphalt/cement/cement3, +/area/bigredv2/caves_lambda) +"hEP" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4" + }, +/obj/structure/largecrate/random/mini/med{ + pixel_x = -6; + pixel_y = -1 + }, +/turf/open/floor/whitegreencorner/east, +/area/bigredv2/outside/medical) "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) +"hFl" = ( +/obj/item/shard/shrapnel, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) "hFv" = ( /obj/structure/platform{ dir = 4 @@ -22494,6 +22939,31 @@ /obj/structure/machinery/light, /turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/n) +"hGy" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/mars, +/area/bigredv2/caves_north) +"hGD" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 6; + pixel_y = 6 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/marshal_office) +"hGH" = ( +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/item/weapon/gun/revolver/cmb{ + pixel_x = 7; + pixel_y = -13 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/item/explosive/grenade/high_explosive{ + pixel_x = -11; + pixel_y = 17 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) "hHa" = ( /obj/structure/fence, /turf/open/floor/asteroidfloor/north, @@ -22502,14 +22972,47 @@ /obj/structure/sign/safety/ladder, /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/oob) +"hHl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) "hHG" = ( /obj/structure/machinery/power/reactor/colony, /turf/open/floor/plating, /area/bigredv2/caves/eta/storage) +"hIk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"hIu" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/c) +"hJk" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"hJp" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/w) "hJH" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/floor/podhatchfloor, /area/bigredv2/outside/telecomm/n_cave) +"hJU" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/surface/table/woodentable{ + flipped = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "hKl" = ( /obj/structure/surface/rack, /obj/item/reagent_container/food/drinks/bottle/goldschlager, @@ -22538,23 +23041,28 @@ /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, /area/bigredv2/caves/mining) +"hMW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) "hNg" = ( /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/research) -"hNW" = ( -/obj/structure/machinery/light, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/lambda_cave_cas) +"hNh" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) "hOx" = ( /obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/stationary, /turf/open/floor/asteroidwarning/north, @@ -22564,36 +23072,80 @@ /obj/item/clothing/head/collectable/tophat/super, /turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/general_store) +"hPa" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) "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) +"hQD" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/ne) "hQO" = ( /turf/open/mars_cave/mars_cave_14, /area/bigredv2/outside/n) +"hRc" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/darkgreencorners2, +/area/bigredv2/caves/eta/storage) "hRy" = ( /obj/structure/surface/rack, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"hRE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/c) "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" +"hST" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/se) +"hSX" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -3; + pixel_y = 12 }, -/turf/open/floor/delivery, -/area/bigredv2/outside/virology) +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"hSZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) +"hTY" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/space_port_lz2) +"hUe" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/se) "hUh" = ( /obj/item/spacecash/c1, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"hUu" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"hVG" = ( +/obj/effect/decal/strata_decals/grime/grime2, +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) "hVP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -22609,6 +23161,13 @@ }, /turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) +"hYx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/whitegreencorner/west, +/area/bigredv2/outside/medical) "hYB" = ( /obj/structure/platform{ dir = 1 @@ -22643,6 +23202,18 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"hZE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1/north, +/area/bigredv2/outside/space_port) +"iaa" = ( +/obj/item/stack/sheet/metal{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor, +/area/bigredv2/outside/office_complex) "ian" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/machinery/door_control{ @@ -22656,11 +23227,27 @@ /obj/structure/platform, /turf/open/gm/river, /area/bigredv2/outside/engineering) +"iaD" = ( +/obj/item/shard, +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) "iaN" = ( /obj/structure/largecrate/random/barrel/red, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"iaO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/strata_decals/grime/grime3, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/e) "iaS" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -22672,6 +23259,27 @@ /obj/effect/landmark/corpsespawner/colonist/random/burst, /turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) +"ibn" = ( +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 10; + pixel_y = 6 + }, +/obj/item/stack/sheet/cardboard{ + pixel_x = 2; + pixel_y = -5; + layer = 3.01 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"ibx" = ( +/obj/item/shard/shrapnel, +/obj/item/shard, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/marshal_office) "ibP" = ( /turf/open/floor/plating, /area/bigredv2/caves_research) @@ -22693,6 +23301,19 @@ "icQ" = ( /turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_sw) +"idb" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/rifle/lmg/heap{ + pixel_x = -8; + pixel_y = -2; + max_rounds = 0 + }, +/obj/item/clothing/mask/cigarette/cigar{ + pixel_x = 9; + pixel_y = 5 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) "idn" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_dirt_4, @@ -22704,11 +23325,13 @@ "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) +"iea" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) "iep" = ( /obj/structure/surface/rack, /obj/item/clothing/head/hardhat/dblue{ @@ -22724,6 +23347,20 @@ }, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) +"ier" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) +"iev" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + name = "\improper Medical Clinic Morgue"; + locked = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) "ieD" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/copper{ @@ -22737,6 +23374,29 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"ieW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/lambda_cave_cas) +"ifh" = ( +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 8; + pixel_y = -19 + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = 3; + pixel_y = -1 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/marshal_office) +"ifo" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"ifC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) "ifF" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -22747,6 +23407,17 @@ /obj/item/ammo_box/magazine/misc/flares/empty, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"igb" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"igD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) "igM" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = 6 @@ -22768,6 +23439,10 @@ /obj/structure/window/framed/solaris, /turf/open/floor/plating, /area/bigredv2/outside/engineering) +"iih" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) "iis" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -22775,6 +23450,11 @@ }, /turf/open/floor/red, /area/bigredv2/outside/marshal_office) +"ijb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) "ijU" = ( /obj/structure/prop/almayer/cannon_cables{ name = "\improper Cables" @@ -22786,6 +23466,19 @@ }, /turf/open/shuttle/escapepod/floor1, /area/bigredv2/oob) +"ikm" = ( +/obj/effect/decal/cleanable/ash{ + pixel_x = 11; + pixel_y = 25 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"ikq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/rack, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "ilH" = ( /obj/structure/machinery/light, /obj/structure/machinery/portable_atmospherics/hydroponics, @@ -22797,15 +23490,71 @@ }, /turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves/mining) +"ilZ" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopleft" + }, +/obj/structure/barricade/handrail/medical{ + dir = 1 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"imc" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "viro"; + name = "Virology Lockdown" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) "iml" = ( /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) +"imP" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_id = "Clinic Reception"; + pixel_y = 9; + pixel_x = 6 + }, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"ing" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 9; + layer = 3.01; + pixel_y = 1 + }, +/obj/item/trash/hotdog{ + pixel_x = -5; + pixel_y = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"ino" = ( +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/space_port) "inx" = ( /obj/item/tool/warning_cone, /turf/open/floor/asteroidwarning, /area/bigredv2/outside/filtration_plant) +"inN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/se) "ioA" = ( /obj/item/tool/pickaxe{ pixel_y = -7 @@ -22847,6 +23596,25 @@ }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_north) +"ipA" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_dirt_7, +/area/bigredv2/outside/eta) +"iqd" = ( +/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 + }, +/obj/item/reagent_container/food/drinks/flask{ + pixel_x = 7 + }, +/obj/item/reagent_container/food/drinks/flask{ + pixel_x = -5 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) "iqF" = ( /obj/structure/prop/invuln/minecart_tracks, /turf/open/mars_cave/mars_dirt_7, @@ -22865,25 +23633,113 @@ }, /turf/open/floor/red/southeast, /area/bigredv2/outside/lambda_cave_cas) +"isS" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/trash/crushed_cup{ + pixel_x = -3; + pixel_y = 11 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"ity" = ( +/obj/item/stack/sheet/wood{ + pixel_x = 4 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"itF" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/mars, +/area/bigredv2/outside/s) "itL" = ( /obj/structure/closet/l3closet/virology, /obj/effect/landmark/objective_landmark/science, /turf/open/floor/white, /area/bigredv2/outside/virology) +"itN" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/medical_decals{ + icon_state = "cryocell1decal" + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) "iuu" = ( /turf/open/mars_cave/mars_cave_16, /area/bigredv2/outside/lz1_north_cas) +"iuI" = ( +/turf/open/asphalt/cement, +/area/bigredv2/outside/space_port) +"iuU" = ( +/turf/closed/wall/solaris{ + damage = 500; + damage_overlay = 2; + current_bulletholes = 1 + }, +/area/bigredv2/outside/office_complex) +"ivN" = ( +/obj/effect/landmark/crap_item, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) "ivW" = ( /turf/open/mars_cave/mars_cave_9, /area/bigredv2/outside/ne) -"iwG" = ( +"iwo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"iww" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) +"iwG" = ( /obj/effect/landmark/crap_item, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_virology) +"ixx" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"ixy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/s) "ixA" = ( /obj/item/ore, /turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) +"ixB" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/mars, +/area/bigredv2/outside/c) +"ixH" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/mars, +/area/bigredv2/outside/e) +"iyp" = ( +/turf/open/asphalt/cement, +/area/bigredv2/caves_lambda) +"iyS" = ( +/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 = 8; + health = 25000 + }, +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/outside/medical) "iyY" = ( /turf/open/mars_cave/mars_cave_13, /area/bigredv2/outside/lz1_north_cas) @@ -22896,6 +23752,22 @@ "izh" = ( /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_se) +"izC" = ( +/obj/item/ashtray/glass, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"izJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"izT" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/outside/medical) "iAi" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, @@ -22920,16 +23792,33 @@ }, /turf/open/gm/river, /area/bigredv2/outside/engineering) -"iCu" = ( -/obj/effect/decal/cleanable/dirt, +"iAL" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/space_port_lz2) +"iBi" = ( +/obj/item/tool/wirecutters, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"iBF" = ( /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/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/filtration_plant) +"iCQ" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"iDu" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + name = "Emergency NanoMed"; + pixel_x = 30 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/w) +/obj/item/shard, +/turf/open/floor/red/southeast, +/area/bigredv2/outside/marshal_office) +"iDC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) "iDJ" = ( /obj/effect/landmark/corpsespawner/miner, /obj/effect/decal/cleanable/blood{ @@ -22970,19 +23859,33 @@ /obj/structure/bed/chair/wood/normal, /turf/open/floor/carpet, /area/bigredv2/outside/library) +"iEv" = ( +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/space_port) +"iEw" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/s) +"iEN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) "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" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/lambda_cave_cas) +"iFr" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"iGp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) "iGK" = ( /turf/open/mars_cave, /area/bigredv2/caves_sw) @@ -22990,10 +23893,20 @@ /obj/item/stack/sheet/wood, /turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_north) -"iHe" = ( +"iJs" = ( +/obj/effect/decal/strata_decals/grime/grime2, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/space_port) +"iJu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ + pixel_x = -11; + pixel_y = 12 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "iJF" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6"; @@ -23002,9 +23915,24 @@ /obj/item/stack/sheet/wood, /turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) -"iKn" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/lambda_cave_cas) +"iJO" = ( +/obj/item/stack/rods{ + pixel_y = -2 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"iKK" = ( +/obj/structure/surface/table/woodentable{ + dir = 8; + flipped = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"iKU" = ( +/obj/structure/prop/wooden_cross, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/nw) "iLs" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -23014,6 +23942,19 @@ /obj/structure/girder, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"iMC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 6 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"iNe" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/mars, +/area/bigredv2/outside/ne) "iNE" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/floor/bcircuit, @@ -23031,6 +23972,12 @@ }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) +"iQf" = ( +/obj/structure/sign/nosmoking_1{ + pixel_x = -32 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) "iQw" = ( /obj/item/ore, /turf/open/gm/river, @@ -23057,6 +24004,13 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_research) +"iSq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) "iSz" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -23066,6 +24020,18 @@ /obj/structure/barricade/handrail, /turf/open/floor/plating/plating_catwalk, /area/bigredv2/outside/engineering) +"iTD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/buritto{ + pixel_y = 12; + pixel_x = -7 + }, +/obj/item/stack/tile/plasteel{ + pixel_x = 16 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) "iTN" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -23074,6 +24040,10 @@ }, /turf/open/floor/plating/warnplate/southwest, /area/bigredv2/outside/telecomm/warehouse) +"iTZ" = ( +/obj/effect/landmark/crap_item, +/turf/open/asphalt/cement/cement9, +/area/bigredv2/outside/space_port) "iUe" = ( /turf/open/floor/darkred2/southeast, /area/bigredv2/caves/eta/research) @@ -23093,9 +24063,48 @@ /obj/structure/fence, /turf/open/mars, /area/bigredv2/outside/se) -"iXp" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/filtration_cave_cas) +"iVu" = ( +/obj/structure/largecrate/random/barrel/green{ + pixel_y = 5; + pixel_x = 3 + }, +/obj/item/storage/fancy/cigar/matchbook{ + pixel_x = 6; + pixel_y = 17 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"iVz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/roller, +/obj/structure/machinery/iv_drip, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"iVW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xtracks, +/obj/item/explosive/grenade/custom/large{ + pixel_x = 6; + pixel_y = 9 + }, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/outside/medical) +"iWi" = ( +/obj/item/trash/uscm_mre{ + pixel_y = 42; + pixel_x = -3 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"iXo" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) "iXs" = ( /obj/structure/platform_decoration{ dir = 1 @@ -23109,6 +24118,10 @@ "iXx" = ( /turf/open/mars_cave, /area/bigredv2/outside/n) +"iXD" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) "iXN" = ( /obj/item/ore{ pixel_x = -7; @@ -23116,6 +24129,14 @@ }, /turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) +"iXV" = ( +/obj/item/stack/sheet/metal{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "iYN" = ( /obj/structure/closet/secure_closet, /obj/effect/landmark/objective_landmark/close, @@ -23131,6 +24152,14 @@ }, /turf/open/floor/dark, /area/bigredv2/outside/admin_building) +"iZm" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/mars, +/area/bigredv2/outside/c) +"iZp" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) "iZA" = ( /obj/structure/surface/rack, /turf/open/floor, @@ -23142,6 +24171,16 @@ /obj/structure/machinery/portable_atmospherics/hydroponics, /turf/open/floor/whitegreenfull, /area/bigredv2/outside/hydroponics) +"jbd" = ( +/obj/structure/barricade/wooden{ + pixel_y = 2 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"jbq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/lambda_cave_cas) "jbU" = ( /obj/effect/decal/cleanable/blood{ base_icon = 'icons/obj/items/weapons/grenade.dmi'; @@ -23156,12 +24195,20 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_research) +"jde" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/c) "jdj" = ( /obj/effect/landmark/nightmare{ insert_tag = "crashlanding-offices" }, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) +"jdN" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/mars, +/area/bigredv2/outside/n) "jdQ" = ( /obj/structure/prop/dam/truck/mining{ desc = "A crawler, imported from the Alpha Centauri colonies."; @@ -23171,12 +24218,29 @@ }, /turf/open/mars/mars_dirt_3, /area/bigredv2/outside/s) +"jeJ" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars, +/area/bigredv2/outside/virology) "jeO" = ( /turf/open/mars/mars_dirt_13, /area/bigredv2/outside/n) +"jfc" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/w) "jfr" = ( /turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/se) +"jgg" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "jgw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -23184,6 +24248,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) +"jgK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/eta) +"jgO" = ( +/obj/item/trash/cheesie{ + pixel_y = -4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "jgW" = ( /turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves_lambda) @@ -23199,10 +24273,33 @@ /obj/item/paper/bigred/witness, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"jiS" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating, -/area/bigredv2/outside/general_store) +"jij" = ( +/obj/item/trash/cigbutt{ + pixel_x = -14; + pixel_y = -6 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) +"jjq" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/landmark/corpsespawner/colonist/random, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"jjL" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/lambda_cave_cas) +"jjR" = ( +/obj/effect/landmark/crap_item, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/e) +"jkb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/space_port) "jkn" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, @@ -23229,16 +24326,34 @@ /obj/structure/reagent_dispensers/fueltank/gas, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"jlr" = ( +/obj/structure/bed, +/obj/effect/landmark/corpsespawner/colonist, +/obj/item/grown/sunflower{ + pixel_x = -2; + pixel_y = -7 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"jlJ" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/w) "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, -/area/bigredv2/outside/admin_building) +"jmQ" = ( +/turf/open/floor/plating/platebotc, +/area/bigredv2/outside/space_port) +"jnd" = ( +/obj/item/stack/sheet/wood{ + pixel_y = -8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) "jnR" = ( /turf/open/floor/darkblue2/northwest, /area/bigredv2/caves/eta/research) @@ -23254,6 +24369,10 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"jou" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/w) "jph" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -23263,6 +24382,12 @@ }, /turf/open/floor, /area/bigredv2/outside/dorms) +"jpk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) "jpT" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -23271,6 +24396,20 @@ }, /turf/open/floor/wood, /area/bigredv2/outside/dorms) +"jqL" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + pixel_x = 12 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"jrj" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/mars, +/area/bigredv2/outside/e) "jrA" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 @@ -23284,6 +24423,20 @@ /obj/structure/closet/crate/trashcart, /turf/open/floor/asteroidplating, /area/bigredv2/outside/space_port_lz2) +"jrW" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars, +/area/bigredv2/outside/nw) +"jsc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/lighter/random{ + pixel_x = -9; + pixel_y = 2 + }, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) "jsL" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -23291,6 +24444,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/platingdmg2/west, /area/bigredv2/caves/mining) +"jsY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"jtH" = ( +/obj/structure/surface/table, +/obj/structure/machinery/camera/autoname, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "jtL" = ( /turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves/mining) @@ -23300,18 +24463,9 @@ }, /turf/open/floor/podhatch/northwest, /area/bigredv2/caves/lambda/research) -"juZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/lambda_cave_cas) -"jvW" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/caves_lambda) +"juF" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/se) "jwj" = ( /obj/structure/platform/shiva{ dir = 8 @@ -23319,6 +24473,24 @@ /obj/item/disk, /turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) +"jwU" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"jwV" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/s) +"jxj" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/red, +/area/bigredv2/outside/lambda_cave_cas) +"jxp" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) "jxA" = ( /obj/structure/barricade/handrail, /turf/open/floor/plating/plating_catwalk, @@ -23329,10 +24501,34 @@ }, /turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) +"jxV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/s) +"jxZ" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"jyS" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/mars, +/area/bigredv2/outside/c) +"jyZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) "jzD" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/darkish, /area/bigredv2/caves/lambda/virology) +"jzO" = ( +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/w) "jAm" = ( /obj/structure/coatrack{ pixel_x = -8; @@ -23359,9 +24555,28 @@ /obj/structure/bookcase/manuals/engineering, /turf/open/floor/wood, /area/bigredv2/outside/marshal_office) +"jAV" = ( +/obj/item/trash/cheesie{ + pixel_y = -1; + pixel_x = -11 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) "jAX" = ( /turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves_lambda) +"jBc" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/w) +"jBl" = ( +/obj/effect/decal/strata_decals/grime/grime2, +/obj/item/trash/kepler/flamehot{ + pixel_y = 13; + pixel_x = 14 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/nw) "jBq" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/asteroidfloor/north, @@ -23405,6 +24620,10 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"jDG" = ( +/obj/item/trash/uscm_mre, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "jDT" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, @@ -23414,6 +24633,33 @@ /obj/structure/machinery/power/port_gen/pacman/super, /turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) +"jEX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"jFq" = ( +/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; + pixel_y = 6; + pixel_x = 7 + }, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"jFs" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 32 + }, +/obj/item/storage/box/gloves, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) "jGd" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_2, @@ -23432,10 +24678,28 @@ /obj/item/device/flashlight/lantern, /turf/open/floor/plating/platingdmg2/west, /area/bigredv2/caves/mining) +"jGS" = ( +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/mars, +/area/bigredv2/outside/c) "jGT" = ( /obj/effect/decal/cleanable/dirt, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) +"jHH" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/reaper, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/reaper{ + pixel_y = 8; + pixel_x = 17 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"jHK" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/mars, +/area/bigredv2/outside/nw) "jHS" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/decal/cleanable/blood/oil/streak, @@ -23448,10 +24712,21 @@ "jIQ" = ( /turf/open/mars_cave/mars_cave_19, /area/bigredv2/outside/lz1_north_cas) +"jIV" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/turf/open/mars_cave/mars_cave_17, +/area/bigredv2/outside/nw) "jJB" = ( /obj/effect/decal/cleanable/dirt, /turf/open/mars, /area/bigredv2/caves/eta/xenobiology) +"jJG" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/eta) "jJH" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A heavy duty power cable for high voltage applications"; @@ -23466,6 +24741,32 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves_north) +"jJP" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/raisins{ + pixel_x = 9; + pixel_y = 11 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"jJU" = ( +/obj/structure/window_frame/solaris, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"jKh" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/obj/effect/decal/cleanable/blood, +/turf/open/mars, +/area/bigredv2/outside/n) +"jKm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) "jKp" = ( /obj/structure/machinery/light{ dir = 1 @@ -23482,6 +24783,10 @@ }, /turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) +"jLj" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/mars, +/area/bigredv2/outside/n) "jMm" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -23495,6 +24800,13 @@ /obj/effect/decal/cleanable/ash, /turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) +"jNf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) "jNE" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/washing_machine{ @@ -23539,6 +24851,10 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"jPJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet13_5/west, +/area/bigredv2/outside/bar) "jPQ" = ( /turf/open/mars_cave/mars_cave_16, /area/bigredv2/outside/ne) @@ -23600,6 +24916,19 @@ /obj/item/stack/sheet/wood, /turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves_north) +"jSt" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) +"jSL" = ( +/obj/item/reagent_container/glass/rag{ + pixel_x = -9; + pixel_y = -7 + }, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) "jTa" = ( /obj/structure/machinery/camera/autoname, /obj/effect/decal/warning_stripes{ @@ -23637,9 +24966,17 @@ }, /turf/open/floor/wood, /area/bigredv2/outside/library) -"jUM" = ( -/obj/structure/surface/table/woodentable, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +"jUK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/c) +"jUO" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/bed/chair/wood/normal, /turf/open/floor/wood, /area/bigredv2/outside/bar) "jUW" = ( @@ -23703,12 +25040,30 @@ }, /turf/open/floor/red/northwest, /area/bigredv2/outside/marshal_office) +"jWY" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "jXf" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, /turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) +"jXw" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/nw) +"jXA" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor, +/area/bigredv2/outside/office_complex) "jXJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light_construct{ @@ -23723,6 +25078,27 @@ "jXX" = ( /turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves_sw) +"jYb" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"jYd" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_x = -8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"jYp" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/nw) +"jYw" = ( +/obj/structure/pipes/standard/manifold/visible, +/obj/effect/decal/medical_decals{ + icon_state = "cryotop" + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) "jYD" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_y = 9 @@ -23733,6 +25109,18 @@ /obj/structure/machinery/recharge_station, /turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) +"jYL" = ( +/obj/structure/bed/roller, +/obj/structure/closet/bodybag, +/turf/open/floor/whitegreencorner/west, +/area/bigredv2/outside/medical) +"jYP" = ( +/turf/closed/wall/solaris{ + damage = 2677; + damage_overlay = 8; + current_bulletholes = 3 + }, +/area/bigredv2/outside/office_complex) "jYS" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/miner, @@ -23761,6 +25149,14 @@ }, /turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves/mining) +"kbd" = ( +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/hydroponics) +"kbX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) "kcx" = ( /obj/effect/decal/cleanable/dirt, /obj/item/weapon/broken_bottle, @@ -23769,6 +25165,12 @@ "kcH" = ( /turf/open/mars/mars_dirt_9, /area/bigredv2/outside/sw) +"kcR" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "kcZ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/structure/fence, @@ -23783,6 +25185,17 @@ "kdh" = ( /turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/sw) +"kdi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/se) +"kdo" = ( +/obj/structure/surface/table, +/obj/item/storage/box/bodybags{ + pixel_y = 4 + }, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) "kdp" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A heavy duty power cable for high voltage applications"; @@ -23796,6 +25209,14 @@ "kdr" = ( /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/eta) +"kdw" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) "keg" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/lz2_south_cas) @@ -23813,6 +25234,23 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/mars_cave, /area/bigredv2/caves/mining) +"keC" = ( +/turf/open/floor/whitegreen/northeast, +/area/bigredv2/outside/medical) +"keN" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"kfg" = ( +/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/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/c) "kfk" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -23878,6 +25316,33 @@ /obj/structure/machinery/floodlight, /turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) +"khT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/item/stack/sheet/metal{ + pixel_y = 9; + pixel_x = 9 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/medical) +"kip" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/eta) +"kjc" = ( +/obj/structure/window_frame/solaris/reinforced, +/obj/item/tool/crowbar/red{ + pixel_y = -13 + }, +/obj/item/shard, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"kjo" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "kjr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/rack, @@ -23897,6 +25362,14 @@ }, /turf/open/floor, /area/bigredv2/outside/cargo) +"kjS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/se) "kjT" = ( /obj/item/ore{ pixel_x = 13; @@ -23904,6 +25377,24 @@ }, /turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) +"kjU" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/s) +"kjY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/telecomm/lz2_cave) "kka" = ( /obj/structure/barricade/handrail, /obj/structure/barricade/handrail{ @@ -23913,6 +25404,34 @@ }, /turf/open/floor/plating/plating_catwalk, /area/bigredv2/outside/engineering) +"kkF" = ( +/obj/structure/machinery/camera/autoname, +/obj/structure/bed, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"kle" = ( +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -6; + pixel_y = 12 + }, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 7; + pixel_y = 3; + layer = 3.1 + }, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) "kli" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_20, @@ -23924,6 +25443,30 @@ }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) +"klE" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"klN" = ( +/obj/item/trash/syndi_cakes{ + pixel_y = -15; + pixel_x = -3 + }, +/obj/item/prop/magazine/book/starshiptroopers{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/nw) +"klS" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) "kmb" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A pipe."; @@ -23934,6 +25477,10 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"kmk" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/mars, +/area/bigredv2/outside/e) "kmm" = ( /turf/open/floor/delivery, /area/bigredv2/outside/admin_building) @@ -23941,6 +25488,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/darkyellowcorners2, /area/bigredv2/outside/engineering) +"knL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/armor/riot{ + pixel_y = -6; + pixel_x = -8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "knN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -23951,14 +25506,19 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/filtration_cave_cas) +"koC" = ( +/obj/item/trash/waffles{ + pixel_x = -19; + pixel_y = -5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"koI" = ( +/turf/open/asphalt/cement/cement2, +/area/bigredv2/outside/space_port) "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/wood, /area/bigredv2/caves/eta/living) @@ -23972,16 +25532,50 @@ "krx" = ( /turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/lz2_south_cas) +"krH" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/powercell{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"krR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"krV" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/mars, +/area/bigredv2/outside/n) "krW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/writing, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"krZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Dormitories EVA Maintenance"; + welded = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) "ksO" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, /area/bigredv2/outside/engineering) +"ktt" = ( +/obj/item/frame/table, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "ktE" = ( /obj/item/tool/wrench{ pixel_x = -7; @@ -23999,6 +25593,15 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) +"kuj" = ( +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -11 + }, +/obj/structure/machinery/power/apc/power/north{ + name = "Bar APC" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "kuu" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/cigbutt, @@ -24007,6 +25610,11 @@ "kuw" = ( /turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_plant) +"kuA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "kvp" = ( /turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_sw) @@ -24014,6 +25622,10 @@ /obj/item/device/flashlight, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"kvD" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/mars, +/area/bigredv2/outside/virology) "kwq" = ( /obj/structure/machinery/light{ dir = 8 @@ -24024,6 +25636,13 @@ "kwQ" = ( /turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/se) +"kxa" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/stack/sheet/wood{ + pixel_y = -2 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "kxi" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, @@ -24066,6 +25685,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm/n_cave) +"kAD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/cardboard{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft{ + pixel_x = 7; + pixel_y = -7 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) "kBn" = ( /turf/closed/wall/solaris, /area/bigredv2/caves) @@ -24082,6 +25714,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"kCL" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) "kCR" = ( /obj/structure/machinery/light{ dir = 8 @@ -24100,18 +25739,55 @@ /obj/item/reagent_container/food/snacks/jellysandwich/cherry, /turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) +"kDv" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/gm/river/red, +/area/bigredv2/outside/c) +"kEI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/w) "kFe" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/asteroidwarning/northeast, /area/bigred/ground/garage_workshop) +"kGi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) "kGm" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/darkgreencorners2, /area/bigredv2/caves/eta/research) +"kGn" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/eta) +"kGr" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/bigredv2/outside/general_store) "kGw" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/floor, /area/bigredv2/caves/eta/storage) +"kGz" = ( +/obj/item/reagent_container/food/drinks/bottle/beer/craft{ + pixel_y = -9; + pixel_x = -7 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"kGK" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) "kHK" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, @@ -24131,18 +25807,44 @@ /obj/structure/fence, /turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/se) +"kIX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor, +/area/bigredv2/outside/office_complex) "kKx" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/ash, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"kKA" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/dorms) "kKB" = ( /turf/open/floor/darkred2, /area/bigredv2/caves/eta/research) -"kMk" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/ne) +"kKW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"kLs" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/outside/medical) +"kLG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/platingdmg1, +/area/bigredv2/outside/medical) "kMs" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "Righty tighty, lefty loosey!"; @@ -24162,6 +25864,15 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"kMt" = ( +/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/white, +/area/bigredv2/outside/medical) "kMJ" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A heavy duty power cable for high voltage applications"; @@ -24172,15 +25883,47 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"kNa" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "filtration"; + name = "Filtration Lockdown" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) "kNc" = ( /obj/effect/landmark/crap_item, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_research) +"kNs" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) "kNK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark, /area/bigredv2/outside/engineering) +"kOt" = ( +/obj/item/storage/firstaid/o2/empty{ + pixel_y = 4; + pixel_x = -11 + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) "kOv" = ( /obj/structure/largecrate/random, /turf/open/floor/asteroidplating, @@ -24192,6 +25935,10 @@ /obj/structure/pipes/valve/open, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"kPE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/w) "kPP" = ( /obj/structure/prop/almayer/cannon_cable_connector{ name = "\improper Control Module"; @@ -24204,14 +25951,28 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/mars_cave, /area/bigredv2/caves_east) -"kRy" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/plating, -/area/bigredv2/outside/medical) +"kQD" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"kRB" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 16 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) "kRK" = ( /obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, /area/bigredv2/outside/admin_building) +"kRT" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) "kSm" = ( /obj/item/storage/belt/grenade, /obj/structure/closet/crate, @@ -24222,6 +25983,19 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"kSn" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/weapon/baseballbat/metal{ + pixel_x = -16; + pixel_y = 18 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/landmark/corpsespawner/colonist, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "kSt" = ( /obj/structure/cable{ icon_state = "11-2" @@ -24239,14 +26013,11 @@ /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/asteroidwarning/east, -/area/bigredv2/caves_lambda) +"kTG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/s) "kVR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -24265,39 +26036,66 @@ /obj/item/stack/sheet/mineral/gold/small_stack, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"kWh" = ( +/obj/structure/surface/table, +/obj/item/clothing/under/brown{ + pixel_y = 7; + pixel_x = 12 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"kWE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) "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 +"kYs" = ( +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/item/newspaper{ + pixel_x = 7; + pixel_y = -12 }, /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, -/area/bigredv2/outside/medical) +/area/bigredv2/outside/ne) +"kYO" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/mars, +/area/bigredv2/outside/ne) "kZG" = ( /obj/effect/decal/cleanable/dirt, /obj/item/storage/bible/hefa, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"kZI" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/caves_lambda) +"kZX" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) "laj" = ( /obj/structure/tunnel{ id = "hole5" }, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) +"laO" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/mars, +/area/bigredv2/outside/e) "lbh" = ( /turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/n) @@ -24316,6 +26114,18 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"lcb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/e) +"lcf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" + }, +/turf/open/floor/plating/platebotc, +/area/bigredv2/outside/space_port) "lck" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/darkyellow2/west, @@ -24338,18 +26148,65 @@ }, /turf/open/shuttle/escapepod/floor1, /area/bigredv2/oob) -"ldD" = ( -/obj/item/tool/warning_cone{ - pixel_x = 16; - pixel_y = 14 +"len" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/mars, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/e) +"lff" = ( +/obj/item/stack/sheet/wood{ + pixel_x = 6; + pixel_y = -12 + }, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"lfY" = ( +/obj/item/stack/sheet/wood{ + layer = 2.7; + pixel_x = -13 + }, +/obj/item/stack/rods{ + pixel_y = 11; + pixel_x = -11 + }, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/outside/medical) +"lgr" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/n) "lhh" = ( /obj/structure/fence, /obj/structure/disposalpipe/segment, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) +"lhu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden, +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/outside/medical) +"lhB" = ( +/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 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) "lhE" = ( /obj/structure/prop/almayer/cannon_cable_connector{ name = "\improper Control Module"; @@ -24358,6 +26215,52 @@ /obj/item/stack/cable_coil/cut, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) +"lhN" = ( +/turf/closed/wall/solaris{ + damage = 1870; + damage_overlay = 5; + current_bulletholes = 1 + }, +/area/bigredv2/outside/office_complex) +"lid" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whiteblue/north, +/area/bigredv2/outside/medical) +"ljx" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + id_tag = "mbayexit"; + name = "Medbay Reception"; + req_one_access_txt = "2;8;19" + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"ljS" = ( +/obj/item/stack/rods{ + pixel_x = 9; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"lkf" = ( +/obj/item/trash/raisins{ + pixel_y = -5; + pixel_x = -8 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"lkt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-in" + }, +/turf/open/floor/plating/platebotc, +/area/bigredv2/outside/space_port) +"llj" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) "llS" = ( /obj/structure/prop/almayer/cannon_cable_connector{ name = "\improper Cable connector" @@ -24397,6 +26300,11 @@ }, /turf/open/floor/wood, /area/bigredv2/outside/library) +"lnK" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) "lom" = ( /obj/effect/landmark/corpsespawner/miner, /obj/effect/decal/cleanable/blood{ @@ -24408,6 +26316,16 @@ }, /turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) +"lqd" = ( +/obj/structure/surface/table, +/obj/item/bodybag, +/obj/item/bodybag, +/obj/item/bodybag{ + pixel_y = 5; + pixel_x = -5 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) "lqo" = ( /obj/item/tool/lighter/random, /obj/structure/pipes/vents/pump{ @@ -24423,6 +26341,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm/n_cave) +"lqC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/bigredv2/caves_lambda) +"lrf" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/plating/platebotc, +/area/bigredv2/outside/space_port) "lrs" = ( /obj/structure/machinery/door/airlock/almayer/command/colony{ name = "\improper Operations" @@ -24450,6 +26376,9 @@ "lst" = ( /turf/open/floor/darkblue2/west, /area/bigredv2/caves/eta/research) +"lsI" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/w) "ltu" = ( /turf/open/mars_cave/mars_cave_19, /area/bigredv2/outside/filtration_plant) @@ -24464,6 +26393,18 @@ }, /turf/open/floor, /area/bigredv2/outside/dorms) +"lue" = ( +/obj/item/shard, +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/n) +"lun" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ + pixel_x = 7; + pixel_y = -9 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "luA" = ( /obj/item/tool/crowbar/red, /turf/open/floor/plating/platingdmg3/west, @@ -24480,10 +26421,35 @@ }, /turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves_research) +"lvu" = ( +/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"; + welded = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) "lvy" = ( /obj/effect/decal/cleanable/dirt, /turf/open/mars, /area/bigredv2/outside/se) +"lvO" = ( +/obj/structure/surface/table/woodentable{ + dir = 4; + flipped = 1 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"lwR" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 4; + layer = 2.9; + pixel_x = 4 + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) "lwT" = ( /obj/structure/machinery/light{ dir = 8 @@ -24494,6 +26460,11 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_sw) +"lxz" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/bottle/cognac, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "lxQ" = ( /obj/effect/decal/cleanable/dirt, /obj/item/paper/bigred/union, @@ -24511,13 +26482,17 @@ }, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"lyx" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 1 +"lyG" = ( +/obj/item/clothing/glasses/meson{ + pixel_x = 3; + pixel_y = 4 }, -/turf/open/floor/wood, -/area/bigredv2/outside/dorms) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) "lzI" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/solaris/reinforced, @@ -24532,6 +26507,10 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/wood, /area/bigredv2/caves/lambda/breakroom) +"lAN" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/filtration_cave_cas) "lAR" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door_control{ @@ -24541,6 +26520,22 @@ }, /turf/open/floor/redfull/northwest, /area/bigredv2/outside/lambda_cave_cas) +"lAV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/tool/screwdriver{ + pixel_x = -13; + pixel_y = 9 + }, +/obj/item/tool/crowbar/red{ + pixel_y = -14; + pixel_x = 2 + }, +/obj/item/stack/tile/plasteel{ + pixel_x = 16; + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) "lBc" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/c) @@ -24555,6 +26550,16 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"lBQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"lBX" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) "lCt" = ( /obj/structure/machinery/power/reactor/colony{ name = "Reactor Turbine" @@ -24587,6 +26592,10 @@ /obj/effect/landmark/objective_landmark/far, /turf/open/floor/redfull/northwest, /area/bigredv2/caves/eta/research) +"lDG" = ( +/obj/structure/bed/roller, +/turf/open/mars, +/area/bigredv2/outside/nw) "lEi" = ( /obj/structure/bed/chair{ dir = 4 @@ -24599,20 +26608,92 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"lES" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/healthanalyzer{ + pixel_y = 10; + pixel_x = 6 + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"lEW" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/telecomm/n_cave) +"lFe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/revolver/small{ + pixel_x = -11; + pixel_y = 13 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"lFx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) "lFR" = ( /obj/effect/landmark/nightmare{ insert_tag = "viro_open" }, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) +"lGl" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) "lGt" = ( /turf/open/floor/delivery, /area/bigredv2/caves/eta/living) +"lHr" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/bonesetter{ + pixel_y = 6; + pixel_x = -7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"lHK" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/tool/wrench{ + pixel_x = -5 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"lIb" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 2; + pixel_y = 9 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) "lIe" = ( /obj/item/weapon/twohanded/folded_metal_chair, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"lIv" = ( +/obj/structure/surface/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper/janitor{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) "lID" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -24633,13 +26714,29 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"lLe" = ( -/turf/open/mars_cave/mars_cave_18, +"lKL" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/e) +"lKW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/outside/medical) +"lLe" = ( +/turf/open/mars_cave/mars_cave_18, /area/bigredv2/outside/lambda_cave_cas) "lLf" = ( /obj/structure/largecrate/random/case, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"lMb" = ( +/obj/item/stack/rods{ + pixel_y = -2 + }, +/turf/open/floor/darkish, +/area/bigredv2/outside/medical) "lMw" = ( /obj/structure/machinery/sensortower{ pixel_x = -9 @@ -24653,6 +26750,12 @@ /obj/structure/largecrate/random/barrel/green, /turf/open/floor/asteroidwarning/east, /area/bigred/ground/garage_workshop) +"lNg" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/e) "lNp" = ( /obj/structure/machinery/light{ dir = 1 @@ -24662,9 +26765,26 @@ }, /turf/open/floor/dark, /area/bigredv2/outside/office_complex) +"lNq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 16 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/c) +"lNr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) "lOL" = ( /turf/open/mars_cave/mars_cave_20, /area/bigredv2/outside/n) +"lOP" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) "lOY" = ( /obj/effect/landmark/nightmare{ insert_tag = "etatunnel_open" @@ -24690,12 +26810,30 @@ }, /turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) +"lQb" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/c) +"lQh" = ( +/obj/effect/decal/strata_decals/grime/grime2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) "lQN" = ( /turf/open/mars_cave/mars_cave_18, /area/bigredv2/outside/lz2_south_cas) -"lQU" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/virology) +"lQW" = ( +/obj/item/stack/sheet/wood{ + pixel_x = -8 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"lRv" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/w) "lRC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/handrail{ @@ -24715,6 +26853,13 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"lSA" = ( +/obj/item/device/flashlight/lamp/tripod{ + layer = 6; + pixel_y = 11 + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) "lSH" = ( /obj/structure/largecrate/guns/merc{ icon_state = "case_double"; @@ -24722,11 +26867,12 @@ }, /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) +"lSU" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars, +/area/bigredv2/outside/ne) "lTi" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -24734,13 +26880,6 @@ }, /turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) -"lTC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/wood, -/area/bigredv2/outside/library) "lTM" = ( /obj/item/folder/yellow, /turf/open/floor/darkyellowcorners2/east, @@ -24769,6 +26908,20 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/dark, /area/bigredv2/caves/lambda/breakroom) +"lVO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/metal{ + dir = 1 + }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) +"lVY" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "lWA" = ( /turf/open/mars_cave/mars_cave_15, /area/bigredv2/outside/lz2_south_cas) @@ -24777,6 +26930,24 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_sw) +"lXt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"lXC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"lYc" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/item/frame/table, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "lYi" = ( /obj/structure/ore_box, /turf/open/mars_cave/mars_dirt_4, @@ -24791,6 +26962,9 @@ /obj/structure/reagent_dispensers/watertank, /turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) +"lYP" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/nw) "lYZ" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -24800,6 +26974,9 @@ "lZV" = ( /turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves/mining) +"lZZ" = ( +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) "maB" = ( /obj/effect/landmark/nightmare{ insert_tag = "viro-rock_open" @@ -24820,6 +26997,31 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) +"maN" = ( +/obj/structure/surface/table, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/prop/helmetgarb/spent_buckshot{ + pixel_x = 9; + pixel_y = -10 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"maW" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"mbh" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/mars, +/area/bigredv2/outside/e) +"mbt" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/c) "mbz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -24829,9 +27031,69 @@ }, /turf/open/floor/delivery, /area/bigredv2/outside/bar) +"mbY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"mcd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_box/rounds/empty{ + pixel_x = 3; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"mcO" = ( +/obj/structure/machinery/door_control{ + id = "workshop_br_g"; + name = "Workshop Garage Lockdown"; + pixel_x = -28 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/nw) "mda" = ( /turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves_lambda) +"mdh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"mdu" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"mdO" = ( +/obj/structure/machinery/door_control{ + id = "Office Complex 1"; + name = "Storm Shutters"; + pixel_x = -32 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"meb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/nw) +"mes" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "meT" = ( /turf/open/mars, /area/bigredv2/outside/eta) @@ -24854,6 +27116,33 @@ /obj/item/fuel_cell, /turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/engineering) +"mgb" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"mgr" = ( +/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; + layer = 2.9; + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"mgz" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/e) +"mgX" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "mhF" = ( /obj/structure/machinery/light{ dir = 4 @@ -24877,11 +27166,23 @@ /obj/structure/machinery/portable_atmospherics/canister/air, /turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/engineering) +"mia" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"mic" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/space_port_lz2) "mij" = ( /obj/item/folder/yellow, /obj/effect/landmark/crap_item, /turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) +"mio" = ( +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) "miD" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/security/marshal, @@ -24894,10 +27195,24 @@ }, /turf/open/floor, /area/bigred/ground/garage_workshop) +"mjD" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/mars, +/area/bigredv2/outside/s) "mkt" = ( /obj/structure/cargo_container/kelland/right, /turf/open/mars, /area/bigredv2/outside/space_port_lz2) +"mkA" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"mlt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/e) "mlV" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -24914,10 +27229,29 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"mns" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/c) +"mnu" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, +/obj/item/ammo_casing/shell, +/obj/item/ammo_casing/shell, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "mnv" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/grimy, /area/bigredv2/outside/dorms) +"mnw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) "mnY" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/asteroidfloor/north, @@ -24944,10 +27278,24 @@ /obj/structure/window/framed/solaris, /turf/open/floor/panelscorched, /area/bigredv2/outside/engineering) +"mqK" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/space_port_lz2) +"mqO" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) "mqX" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) +"mrF" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/mars, +/area/bigredv2/outside/se) "mrH" = ( /obj/structure/machinery/computer3/server, /turf/open/floor/podhatchfloor, @@ -24986,24 +27334,72 @@ }, /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 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/marshal_office) "mtS" = ( /obj/structure/fence, /turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/n) +"muk" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/packaged_burrito{ + pixel_x = 5; + pixel_y = 9 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"mun" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 1; + name = "\improper Medical Clinic"; + density = 0; + icon_state = "door_open" + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"muo" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/nw) "muP" = ( /turf/closed/wall/wood, /area/bigredv2/caves_research) -"mxf" = ( +"mvk" = ( +/obj/item/tool/shovel, +/turf/open/mars, +/area/bigredv2/outside/nw) +"mvP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/item/weapon/gun/pistol/holdout{ + pixel_x = 9; + pixel_y = 18 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"mwq" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/filtration_cave_cas) +/area/bigredv2/outside/e) +"mwI" = ( +/obj/structure/surface/table, +/obj/item/evidencebag{ + pixel_y = 12 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"mxC" = ( +/obj/effect/decal/strata_decals/grime/grime1, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) "mya" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -25025,12 +27421,81 @@ }, /turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) +"myl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-in" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) +"myu" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 2; + pixel_x = -20 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"myJ" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars, +/area/bigredv2/outside/n) +"myK" = ( +/obj/item/trash/kepler{ + pixel_y = 14; + pixel_x = 15 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"myM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/latex{ + pixel_x = 3 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"myW" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/asphalt/cement/cement1, +/area/bigredv2/caves_lambda) "myY" = ( /turf/open/floor/delivery, /area/bigredv2/outside/filtration_cave_cas) +"mzu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/e) +"mzC" = ( +/obj/structure/platform/kutjevo/rock{ + dir = 8; + layer = 2.9; + pixel_x = -3 + }, +/obj/structure/platform/kutjevo/rock, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) "mzV" = ( /turf/open/mars, /area/bigredv2/outside/filtration_plant) +"mAk" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"mAv" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "mAY" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidwarning/north, @@ -25051,6 +27516,20 @@ /obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor, /area/bigred/ground/garage_workshop) +"mCo" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"mDi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/c) "mDk" = ( /obj/structure/dispenser/oxygen, /turf/open/floor/plating, @@ -25064,12 +27543,37 @@ "mDN" = ( /turf/open/mars_cave/mars_cave_15, /area/bigredv2/outside/lz1_north_cas) +"mEg" = ( +/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/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/c) +"mEx" = ( +/obj/structure/surface/table, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/item/storage/box/beakers{ + pixel_y = -1; + pixel_x = 4 + }, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) "mEC" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" }, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_north) +"mEE" = ( +/obj/item/trash/hotdog{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) "mEH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -25077,6 +27581,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/darkred2/north, /area/bigredv2/outside/admin_building) +"mEW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/trash/cigbutt/cigarbutt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"mFm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/w) "mFT" = ( /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, /obj/effect/landmark/corpsespawner/russian, @@ -25087,12 +27603,33 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/lz1_north_cas) +"mGy" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Dormitories EVA"; + icon_state = "door_open"; + density = 0 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) +"mGS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) "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) +"mHx" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement/cement15, +/area/bigredv2/caves_lambda) "mIc" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/floor/podhatchfloor, @@ -25112,6 +27649,13 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"mIy" = ( +/obj/effect/spawner/random/tool{ + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "mIZ" = ( /obj/structure/barricade/handrail{ dir = 8 @@ -25125,20 +27669,53 @@ }, /turf/open/floor/wood, /area/bigredv2/outside/library) +"mKo" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) "mKM" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_y = 6 }, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) +"mKR" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"mLw" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/item/trash/kepler{ + pixel_y = 9; + pixel_x = 12 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) "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, +"mMC" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/eta) +"mNP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, /area/bigredv2/outside/e) +"mNZ" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) "mOc" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; @@ -25146,6 +27723,10 @@ }, /turf/open/floor/delivery, /area/bigredv2/outside/cargo) +"mON" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) "mOW" = ( /obj/structure/pipes/standard/tank/oxygen, /turf/open/floor/plating/platingdmg3/west, @@ -25155,6 +27736,16 @@ /obj/effect/landmark/queen_spawn, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) +"mPm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Marshal Office Courtroom"; + welded = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) "mPC" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/structure/fence, @@ -25171,19 +27762,97 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) +"mPP" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"mPR" = ( +/obj/item/trash/snack_bowl{ + pixel_x = 1; + pixel_y = -12 + }, +/obj/item/trash/raisins{ + pixel_y = 8; + pixel_x = -2 + }, +/obj/item/trash/uscm_mre{ + pixel_y = 3; + pixel_x = 10 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/ash{ + pixel_y = 19 + }, +/turf/open/mars_cave/mars_cave_16, +/area/bigredv2/outside/nw) +"mPU" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/packaged_burger, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"mQA" = ( +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = 8; + pixel_y = -3 + }, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -1; + pixel_y = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"mQY" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/w) "mRi" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) +"mRz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/bigredv2/outside/lambda_cave_cas) "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) +"mRP" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ + pixel_y = 4; + pixel_x = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"mSi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -6; + pixel_y = -4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"mSz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/turf/open/floor/plating/platebotc, +/area/bigredv2/outside/space_port) "mSS" = ( /turf/open/floor/darkyellowcorners2/west, /area/bigredv2/outside/engineering) @@ -25196,6 +27865,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/darkred2/west, /area/bigredv2/outside/admin_building) +"mTQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/whitegreen/northwest, +/area/bigredv2/caves/lambda/virology) "mUb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -25208,6 +27884,35 @@ "mUy" = ( /turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves/eta/xenobiology) +"mUE" = ( +/obj/structure/window_frame/solaris, +/obj/item/stack/rods{ + pixel_y = 4; + pixel_x = -13 + }, +/obj/item/shard, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"mUW" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/mars, +/area/bigredv2/outside/e) +"mVh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/structure/barricade/wooden{ + dir = 8; + pixel_y = -5; + pixel_x = -9 + }, +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"mVp" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/space_port_lz2) "mWg" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ dir = 2; @@ -25223,14 +27928,32 @@ }, /turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) +"mWJ" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"mXm" = ( +/obj/item/trash/uscm_mre{ + pixel_x = 10; + pixel_y = -2 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "mXw" = ( /obj/item/storage/toolbox/mechanical, /turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) -"mYV" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/red/north, -/area/bigredv2/outside/lambda_cave_cas) +"mYo" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/space_port_lz2) +"mYp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/metal, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) "mYW" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A heavy duty power cable for high voltage applications"; @@ -25241,13 +27964,19 @@ }, /turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) +"mZh" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/mars, +/area/bigredv2/outside/nw) +"mZt" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/item/prop/alien/hugger, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) "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, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -25257,6 +27986,21 @@ /obj/effect/landmark/hunter_secondary, /turf/open/mars, /area/bigredv2/outside/space_port_lz2) +"nbL" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/turf/open/mars/mars_dirt_5, +/area/bigredv2/outside/nw) +"ncc" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ + pixel_y = 6; + pixel_x = 16 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "ncv" = ( /obj/effect/landmark/corpsespawner/ua_riot, /obj/effect/decal/cleanable/blood{ @@ -25287,37 +28031,113 @@ }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"neH" = ( -/turf/open/floor/asteroidwarning/northeast, -/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 - }, -/obj/effect/decal/cleanable/dirt, +"ndD" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars, +/area/bigredv2/outside/c) +"neD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/structure/barricade/wooden{ + pixel_y = -10 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"nfP" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"nfS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/arcade, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"ngo" = ( +/obj/effect/acid_hole, +/turf/closed/wall/solaris, +/area/bigredv2/outside/medical) +"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 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/bigredv2/outside/library) +"nih" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) "niQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/floor/darkyellowcorners2/west, /area/bigredv2/outside/engineering) +"niR" = ( +/obj/effect/decal/cleanable/blood/gibs/robot{ + name = "door debris" + }, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor, +/area/bigredv2/outside/office_complex) "njf" = ( /turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/lz2_south_cas) +"nkm" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"nkn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"nkx" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/se) "nky" = ( /obj/structure/machinery/vending/coffee, /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/admin_building) +"nkB" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/cmb{ + pixel_y = -11; + pixel_x = 5 + }, +/obj/item/weapon/gun/revolver/cmb{ + pixel_y = -1; + pixel_x = -3 + }, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"nkD" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/item/trash/crushed_cup{ + pixel_x = -10; + pixel_y = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "nkE" = ( /obj/structure/surface/table/woodentable, /obj/item/paper_bin/wy{ @@ -25363,11 +28183,39 @@ /obj/structure/platform_decoration/kutjevo/rock, /turf/open/mars, /area/space) +"nmb" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"nmn" = ( +/obj/item/weapon/dart{ + pixel_x = 10 + }, +/turf/open/floor/carpet9_4/west, +/area/bigredv2/outside/bar) +"nms" = ( +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -8; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) "nmU" = ( /obj/structure/surface/table, /obj/item/device/analyzer, /turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) +"nnd" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) "nny" = ( /turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves_research) @@ -25384,10 +28232,14 @@ }, /turf/open/floor/wood, /area/bigredv2/outside/library) -"nnK" = ( +"nnL" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor, +/area/bigredv2/outside/cargo) "nnU" = ( /obj/structure/machinery/door_control{ desc = "A remote control-switch for opening the engines blast doors."; @@ -25402,6 +28254,27 @@ }, /turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/engineering) +"noN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + layer = 3.1; + pixel_y = 11 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"noQ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/lambda_cave_cas) +"noR" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "npz" = ( /obj/structure/surface/table, /obj/item/spacecash/c100, @@ -25430,10 +28303,28 @@ "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) +"nsc" = ( +/obj/structure/curtain/medical, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopleft" + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"ntc" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/c) +"ntw" = ( +/obj/item/reagent_container/food/drinks/bottle/beer/craft/ganucci{ + pixel_x = -6; + pixel_y = -8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"ntF" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) "ntX" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, @@ -25465,6 +28356,15 @@ }, /turf/open/gm/river, /area/bigredv2/outside/engineering) +"nuq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/medical_decals{ + icon_state = "cryocell2deval" + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) "nuw" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -25490,6 +28390,10 @@ }, /turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/c) +"nwe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) "nwB" = ( /turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) @@ -25506,6 +28410,29 @@ }, /turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) +"nyZ" = ( +/obj/item/tool/minihoe{ + pixel_x = -4; + pixel_y = -4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"nzb" = ( +/obj/effect/landmark/crap_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"nzc" = ( +/obj/structure/surface/table/reinforced, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"nzx" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) "nzB" = ( /obj/structure/machinery/computer/general_air_control{ dir = 8; @@ -25518,6 +28445,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) +"nzX" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_4" + }, +/turf/open/mars, +/area/bigredv2/outside/nw) "nBb" = ( /obj/item/ammo_magazine/pistol/b92fs, /obj/item/weapon/gun/pistol/b92fs{ @@ -25526,11 +28459,28 @@ }, /turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) +"nBd" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/se) "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) +"nCL" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 1 + }, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/space_port_lz2) +"nCM" = ( +/obj/item/stack/sheet/metal{ + pixel_y = -3; + pixel_x = -8 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) "nCT" = ( /obj/structure/sign/poster/ad, /turf/closed/wall/solaris/reinforced, @@ -25541,9 +28491,37 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"nDu" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"nDw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "nEl" = ( /turf/open/mars_cave/mars_cave_13, /area/bigredv2/outside/lz2_south_cas) +"nEv" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement14, +/area/bigredv2/caves_lambda) +"nEz" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"nEB" = ( +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 8 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) "nEH" = ( /turf/open/mars_cave/mars_cave_10, /area/bigredv2/outside/n) @@ -25563,6 +28541,14 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"nFm" = ( +/obj/item/storage/firstaid/adv/empty{ + pixel_y = -6; + pixel_x = -8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "nFp" = ( /obj/structure/window, /obj/structure/window{ @@ -25580,6 +28566,15 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/asteroidwarning/north, /area/bigredv2/caves_lambda) +"nGl" = ( +/obj/structure/bed/bedroll{ + dir = 10 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) "nGm" = ( /obj/structure/fence, /obj/structure/blocker/forcefield/multitile_vehicles, @@ -25601,11 +28596,33 @@ }, /turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) +"nIx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/s) "nIS" = ( /obj/structure/surface/table/reinforced, /obj/item/storage/donut_box, /turf/open/floor/redfull/northwest, /area/bigredv2/outside/lambda_cave_cas) +"nJt" = ( +/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"; + pixel_y = 8; + pixel_x = 13 + }, +/obj/item/reagent_container/food/drinks/cup, +/obj/effect/decal/cleanable/generic, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/nw) +"nJu" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/mars, +/area/bigredv2/outside/eta) "nKL" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "An exchange valve"; @@ -25616,6 +28633,19 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"nKZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/c) +"nLm" = ( +/obj/item/prop/helmetgarb/rosary{ + pixel_y = 7; + pixel_x = 12 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) "nLw" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_dirt_4, @@ -25628,23 +28658,72 @@ }, /turf/open/floor/asteroidwarning/northeast, /area/bigred/ground/garage_workshop) +"nMG" = ( +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"nMQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/arcade, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) "nMZ" = ( /obj/structure/machinery/door/poddoor/almayer/closed, /obj/structure/cable, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"nNS" = ( +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -2; + pixel_y = -4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) "nOe" = ( /obj/structure/toilet{ dir = 1 }, /turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) +"nOl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/bigredv2/outside/space_port) +"nOK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/iv_drip, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"nOW" = ( +/obj/item/stack/sheet/wood{ + layer = 2.7; + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "nPz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/darkyellow2/north, /area/bigredv2/outside/engineering) +"nPG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"nPH" = ( +/obj/structure/platform_decoration/kutjevo/rock{ + layer = 3.1 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/nw) "nQl" = ( /obj/item/ore{ pixel_x = -1; @@ -25655,6 +28734,26 @@ }, /turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) +"nQF" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/stack/sheet/cardboard{ + pixel_x = -6; + pixel_y = -11 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"nRv" = ( +/obj/item/tool/warning_cone, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/se) +"nRw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/virology) +"nRM" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/c) "nRS" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -25664,9 +28763,27 @@ "nRT" = ( /turf/open/floor/dark, /area/bigredv2/outside/chapel) +"nSp" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "Control Center APC" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) "nSP" = ( /turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) +"nTv" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) "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..."; @@ -25683,21 +28800,45 @@ /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) +"nVo" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) "nVq" = ( /turf/open/floor/dark, /area/bigredv2/outside/engineering) "nVx" = ( /turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/filtration_plant) +"nVJ" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/caves_lambda) +"nVV" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/mars, +/area/bigredv2/outside/c) "nWD" = ( /obj/effect/decal/cleanable/dirt, /obj/item/trash/burger, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"nWE" = ( +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 7; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/s) "nWG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -25719,6 +28860,37 @@ "nXC" = ( /turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves_research) +"nXD" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"nXQ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"nXS" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -6; + pixel_y = 8 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/marshal_office) +"nYl" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/roller, +/obj/structure/closet/bodybag, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"nYz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) "nYC" = ( /obj/structure/surface/table, /obj/item/tool/pickaxe/plasmacutter, @@ -25781,16 +28953,19 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/wood, /area/bigredv2/caves/eta/living) -"ocR" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/caves_lambda) +"ocL" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) "odw" = ( /obj/structure/bed, /turf/open/floor/plating, /area/bigredv2/outside/cargo) +"odN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/shell, +/turf/open/floor/whiteblue, +/area/bigredv2/outside/medical) "oea" = ( /obj/effect/landmark/crap_item, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -25805,6 +28980,10 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall/solaris, /area/bigredv2/outside/filtration_plant) +"ofp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/s) "ofu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate, @@ -25819,6 +28998,10 @@ }, /turf/open/floor/dark, /area/bigredv2/caves/eta/storage) +"ofO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/se) "ofX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -25833,10 +29016,22 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"ogE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/outside/medical) "ohg" = ( /obj/vehicle/train/cargo/trolley, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) +"ohl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/plate{ + pixel_x = -13; + pixel_y = 12 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/space_port_lz2) "ohD" = ( /turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_east) @@ -25844,12 +29039,23 @@ /obj/structure/cargo_container/hd/left/alt, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"ois" = ( +/obj/item/trash/eat{ + pixel_x = -9; + pixel_y = 10 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) "oji" = ( /obj/structure/morgue{ dir = 2 }, /turf/open/floor/whiteblue/north, /area/bigredv2/outside/medical) +"ojs" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "ojD" = ( /obj/structure/platform_decoration{ dir = 4 @@ -25876,9 +29082,38 @@ /obj/effect/spawner/random/tool, /turf/open/floor/asteroidwarning, /area/bigredv2/outside/space_port_lz2) +"okB" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/structure/machinery/iv_drip, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"okJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"okU" = ( +/obj/item/trash/snack_bowl{ + pixel_y = 5; + pixel_x = -8 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "ole" = ( /turf/open/floor/almayer/w_y0/north, /area/bigredv2/outside/admin_building) +"olK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) "olT" = ( /obj/effect/landmark/corpsespawner/engineer, /turf/open/shuttle/escapepod/floor1, @@ -25900,6 +29135,11 @@ /obj/structure/barricade/wooden, /turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) +"omV" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteblue, +/area/bigredv2/outside/medical) "omX" = ( /obj/item/stack/cable_coil/cut{ pixel_x = -3; @@ -25915,17 +29155,38 @@ }, /turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves/mining) +"ona" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/whitepurplefull, +/area/bigredv2/outside/medical) +"onc" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -2 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/s) "onh" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) +"ono" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) "onR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/broken, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"oof" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/asphalt/cement, +/area/bigredv2/caves_lambda) "ooi" = ( /obj/structure/platform_decoration/shiva{ dir = 8 @@ -25934,9 +29195,58 @@ /obj/item/stack/cable_coil, /turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) -"ooD" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/filtration_cave_cas) +"oox" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-interior"; + name = "Lambda Checkpoint Interior" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/lambda_cave_cas) +"ooC" = ( +/obj/structure/surface/table{ + flipped = 1 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"ooJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"opg" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/mars, +/area/bigredv2/outside/n) +"opn" = ( +/obj/structure/machinery/washing_machine, +/obj/item/clothing/under/brown{ + pixel_y = 11; + pixel_x = 7 + }, +/obj/structure/machinery/washing_machine{ + pixel_y = 13 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"opr" = ( +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + pixel_x = -5; + pixel_y = 2; + layer = 2.8 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "opz" = ( /obj/effect/landmark/crap_item, /turf/open/mars_cave/mars_dirt_5, @@ -25945,6 +29255,13 @@ /obj/item/stack/cable_coil/cut, /turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) +"oqe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/ammo_casing/shell, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "oqr" = ( /obj/item/ore{ pixel_x = -1 @@ -25958,6 +29275,27 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/dark, /area/bigredv2/caves/eta/research) +"oqY" = ( +/obj/item/tool/wrench, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"ora" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"orc" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"orE" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) "orT" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/carpet, @@ -25967,11 +29305,32 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) +"osi" = ( +/obj/structure/surface/table, +/obj/item/trash/kepler{ + pixel_y = 3 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"osm" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) "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) +"otX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/e) "oud" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil/streak, @@ -25981,6 +29340,25 @@ /obj/item/tool/extinguisher, /turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) +"ouo" = ( +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/outside/medical) +"ouD" = ( +/obj/effect/landmark/crap_item, +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/mars, +/area/bigredv2/outside/c) +"ovm" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 2; + pixel_y = 9 + }, +/obj/item/tool/warning_cone{ + pixel_x = 6 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) "ovq" = ( /turf/open/floor/delivery, /area/bigredv2/outside/general_offices) @@ -25988,6 +29366,13 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz2_west_cas) +"ovH" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Medical Clinic Power Station"; + locked = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) "ovQ" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_dirt_4, @@ -26003,6 +29388,16 @@ /obj/effect/spawner/gibspawner/human, /turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) +"owc" = ( +/obj/item/toy/plush/bee, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"owg" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/mars, +/area/bigredv2/caves_north) "owR" = ( /turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) @@ -26018,9 +29413,35 @@ "oxp" = ( /turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_research) +"oxP" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"oyb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) "oye" = ( /turf/open/mars_cave/mars_cave_5, /area/bigredv2/outside/filtration_cave_cas) +"oyM" = ( +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_x = -7; + pixel_y = 13 + }, +/obj/item/prop/colony/usedbandage{ + dir = 4; + pixel_x = 11; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"oyW" = ( +/obj/structure/surface/rack, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) "ozf" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A heavy duty power cable for high voltage applications"; @@ -26031,10 +29452,22 @@ }, /turf/open/mars_cave/mars_cave_20, /area/bigredv2/caves/mining) +"ozs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/office_complex) "ozv" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/bigredv2/caves_virology) +"ozy" = ( +/obj/structure/surface/table/woodentable{ + dir = 4; + flipped = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "ozO" = ( /obj/structure/toilet{ dir = 1 @@ -26047,22 +29480,69 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/mars_cave/mars_cave_2, /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, +"ozW" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/darkred2/west, -/area/bigredv2/outside/admin_building) -"oFj" = ( +/turf/open/asphalt/cement/cement3, +/area/bigredv2/caves_lambda) +"ozZ" = ( +/obj/effect/landmark/crap_item, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/w) +"oAf" = ( +/turf/open/mars_cave/mars_cave_5, +/area/bigredv2/caves_virology) +"oBy" = ( +/turf/open/asphalt/cement/cement12, +/area/bigredv2/caves_lambda) +"oCa" = ( +/obj/item/weapon/baton/damaged{ + pixel_y = 20 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"oCg" = ( +/obj/item/shard, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"oCK" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/e) +"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{ + dir = 8 + }, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"oEq" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars, +/area/bigredv2/outside/n) +"oEz" = ( +/obj/item/clothing/under/lightbrown{ + pixel_x = -7; + pixel_y = -4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"oEB" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement15, +/area/bigredv2/outside/filtration_cave_cas) +"oEY" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"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; @@ -26071,21 +29551,61 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_north) +"oFs" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) "oFx" = ( /obj/item/device/flashlight/lantern, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/ne) -"oFY" = ( +"oFQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/medical) +"oGr" = ( /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 +/obj/item/stack/sheet/plasteel, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"oHu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal{ + pixel_x = 1; + pixel_y = -2 }, /turf/open/floor, -/area/bigredv2/outside/lambda_cave_cas) +/area/bigredv2/outside/general_offices) +"oHV" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = -5 + }, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = 1 + }, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = 7 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"oHW" = ( +/obj/item/clothing/under/darkred, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"oIb" = ( +/obj/structure/machinery/computer/crew{ + density = 0; + pixel_y = 16 + }, +/obj/item/reagent_container/pill/happy, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) "oIc" = ( /obj/effect/decal/cleanable/blood{ base_icon = 'icons/obj/items/weapons/grenade.dmi'; @@ -26096,6 +29616,10 @@ }, /turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) +"oIg" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/limb, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/c) "oIK" = ( /obj/structure/platform, /obj/structure/platform{ @@ -26117,6 +29641,10 @@ /obj/structure/machinery/power/port_gen/pacman/super, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"oJh" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) "oJv" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/computer/cameras/wooden_tv{ @@ -26124,6 +29652,11 @@ }, /turf/open/floor/redfull/northwest, /area/bigredv2/outside/lambda_cave_cas) +"oJF" = ( +/obj/structure/curtain/open/medical, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "oJO" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -8; @@ -26134,6 +29667,15 @@ }, /turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) +"oJP" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"oJZ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached19, +/area/bigredv2/outside/virology) "oKc" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -26143,6 +29685,15 @@ /obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"oLa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/folding_barricade, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"oLf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/bigredv2/outside/space_port) "oMd" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_y = 13 @@ -26154,9 +29705,36 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm/n_cave) +"oMD" = ( +/obj/structure/bed/bedroll{ + dir = 1 + }, +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_y = 8 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"oNd" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/mars, +/area/bigredv2/outside/e) "oNu" = ( /turf/open/mars_cave/mars_cave_11, /area/bigredv2/outside/lz2_west_cas) +"oNW" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/pill/happy, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"oOj" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/se) "oOk" = ( /obj/effect/landmark/xeno_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -26170,6 +29748,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/gm/river, /area/bigredv2/outside/c) +"oOL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) "oPM" = ( /obj/structure/surface/table/reinforced, /obj/structure/machinery/door_control{ @@ -26179,6 +29764,11 @@ }, /turf/open/floor/redfull/northwest, /area/bigredv2/outside/lambda_cave_cas) +"oPT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) "oQz" = ( /obj/structure/machinery/light/double{ dir = 1 @@ -26188,6 +29778,18 @@ "oQI" = ( /turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves_sw) +"oRa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/obj/item/trash/cigbutt{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "oRs" = ( /turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves_north) @@ -26210,6 +29812,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"oTx" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/nw) +"oTG" = ( +/obj/item/toy/beach_ball{ + pixel_x = -6; + pixel_y = -10 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) "oTL" = ( /obj/structure/largecrate/random/barrel, /turf/open/floor/plating/platingdmg3/west, @@ -26241,6 +29857,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm/n_cave) +"oVg" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/glass, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 16 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 7; + pixel_y = 12 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "oVq" = ( /obj/effect/landmark/nightmare{ insert_tag = "lz1entrance_v2" @@ -26263,13 +29892,6 @@ }, /turf/open/floor/darkblue2/north, /area/bigredv2/outside/admin_building) -"oWk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/telecomm/lz2_cave) "oWp" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/barricade/handrail, @@ -26285,10 +29907,14 @@ }, /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) +"oXj" = ( +/obj/structure/surface/table, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"oXv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/c) "oXH" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A pipe."; @@ -26299,6 +29925,21 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"oXP" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 16 + }, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -2 + }, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"oYO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) "oZA" = ( /obj/structure/prop/almayer/cannon_cables{ name = "\improper Large Cables"; @@ -26309,6 +29950,9 @@ "oZQ" = ( /turf/closed/wall/r_wall/unmeltable, /area/bigredv2/outside/filtration_plant) +"pak" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/s) "pao" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/general_air_control/large_tank_control{ @@ -26325,6 +29969,10 @@ }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) +"pbn" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) "pbr" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/solaris, @@ -26339,6 +29987,10 @@ /obj/effect/landmark/queen_spawn, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) +"pbM" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) "pbX" = ( /obj/effect/spawner/random/tool, /obj/effect/decal/cleanable/dirt, @@ -26373,10 +30025,36 @@ "pcI" = ( /turf/open/mars/mars_dirt_10, /area/bigredv2/outside/filtration_plant) -"pdG" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) +"pdt" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"pdB" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/shard/shrapnel/bone_chips, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"pdI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W-corner" + }, +/turf/open/floor/plating/platebotc, +/area/bigredv2/outside/space_port) +"pdP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"pdT" = ( +/obj/structure/surface/table, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "pdW" = ( /turf/open/mars_cave/mars_cave_13, /area/bigredv2/outside/virology) @@ -26384,6 +30062,21 @@ /obj/structure/window_frame/solaris, /turf/open/floor/plating, /area/bigredv2/outside/dorms) +"pfG" = ( +/obj/structure/machinery/power/apc/no_power/south, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/greengrid, +/area/bigredv2/outside/telecomm) +"pfJ" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/stack/sheet/wood{ + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "pgh" = ( /turf/open/mars_cave/mars_cave_17, /area/bigredv2/outside/ne) @@ -26402,10 +30095,10 @@ }, /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) +"pgC" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/c) "pgV" = ( /obj/structure/machinery/light{ dir = 8 @@ -26415,16 +30108,65 @@ "phi" = ( /turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_research) -"phx" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"phk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"plx" = ( -/obj/structure/machinery/power/apc/power/east, -/turf/open/floor/darkred2/east, -/area/bigredv2/caves/eta/research) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"pix" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/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/whiteblue/southwest, +/area/bigredv2/outside/medical) +"piT" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask, +/obj/item/reagent_container/food/drinks/flask{ + pixel_x = 7 + }, +/obj/item/reagent_container/food/drinks/flask{ + pixel_x = -5 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"pjh" = ( +/obj/item/tool/warning_cone{ + pixel_x = -14; + pixel_y = 10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"pjD" = ( +/obj/item/weapon/gun/smg/fp9000, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"pkd" = ( +/obj/item/stack/sheet/wood{ + layer = 2.7; + pixel_y = 8 + }, +/obj/item/stack/rods{ + pixel_x = 3; + pixel_y = 8 + }, +/turf/open/floor/whitegreencorner/west, +/area/bigredv2/outside/medical) +"pld" = ( +/turf/open/gm/river/desert/deep/toxic, +/area/bigredv2/outside/c) +"pmf" = ( +/obj/item/tool/warning_cone{ + pixel_x = 16; + pixel_y = 14 + }, +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/mars, +/area/bigredv2/outside/n) "pmk" = ( /obj/structure/surface/table, /obj/item/spacecash/c1, @@ -26443,12 +30185,6 @@ "pmS" = ( /turf/open/mars, /area/bigredv2/caves_north) -"pmV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/caves_lambda) "pnL" = ( /turf/open/mars/mars_dirt_11, /area/bigredv2/caves_north) @@ -26461,6 +30197,11 @@ }, /turf/open/gm/river, /area/bigredv2/outside/engineering) +"pok" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) "pow" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_dirt_4, @@ -26471,10 +30212,61 @@ }, /turf/open/floor/darkpurple2/east, /area/bigredv2/caves/lambda/research) +"poG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -2 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"poL" = ( +/obj/structure/surface/table, +/obj/structure/bedsheetbin{ + pixel_y = 10; + pixel_x = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"poS" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/bigredv2/outside/cargo) +"poV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/e) +"ppo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/floor4, +/area/bigredv2/outside/cargo) "ppp" = ( /obj/structure/sign/safety/hazard, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) +"ppZ" = ( +/obj/structure/barricade/handrail/medical{ + dir = 4 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"pqj" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"pqK" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/outside/medical) "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..."; @@ -26483,6 +30275,18 @@ }, /turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves_north) +"prz" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-exterior"; + name = "Lambda Checkpoint Exterior" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/lambda_cave_cas) "prU" = ( /obj/structure/machinery/light{ dir = 4 @@ -26494,16 +30298,46 @@ }, /turf/open/floor/wood, /area/bigredv2/outside/library) -"psE" = ( -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/wood, -/area/bigredv2/outside/bar) +"psI" = ( +/obj/item/weapon/ice_axe/green{ + pixel_y = -12 + }, +/obj/item/stack/medical/bruise_pack{ + pixel_x = -15; + pixel_y = 10 + }, +/turf/open/mars_cave/mars_cave_18, +/area/bigredv2/outside/n) +"psP" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"ptq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/eat{ + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"ptt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) "ptL" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor, /area/bigredv2/caves/eta/living) +"ptQ" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/mars, +/area/bigredv2/outside/filtration_plant) "puU" = ( /obj/item/paper/bigred/witness, /turf/open/mars_cave/mars_cave_17, @@ -26527,9 +30361,43 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"pvl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/smg/mp5{ + current_mag = null; + pixel_y = 8; + pixel_x = -18 + }, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/corpsespawner/security/marshal, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) "pvp" = ( /turf/open/mars/mars_dirt_13, /area/bigredv2/outside/filtration_plant) +"pwa" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"pwX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/trash/uscm_mre{ + pixel_y = 13; + pixel_x = 6 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) "pxp" = ( /obj/structure/ore_box, /turf/open/floor/plating/platingdmg3/west, @@ -26551,6 +30419,16 @@ }, /turf/open/floor/dark, /area/bigredv2/outside/admin_building) +"pxP" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) +"pxV" = ( +/turf/open/asphalt/cement/cement1, +/area/bigredv2/caves_lambda) "pyq" = ( /obj/structure/surface/table, /obj/structure/machinery/computer/emails{ @@ -26579,6 +30457,12 @@ /obj/structure/curtain, /turf/open/floor/plating, /area/bigredv2/outside/medical) +"pAd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/turf/open/floor/plating/platebotc, +/area/bigredv2/outside/space_port) "pAX" = ( /turf/open/floor, /area/bigredv2/outside/lambda_cave_cas) @@ -26589,6 +30473,20 @@ "pBD" = ( /turf/open/floor/darkred2/east, /area/bigredv2/caves/eta/research) +"pBX" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/space_port_lz2) +"pCa" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/mars, +/area/bigredv2/outside/se) +"pCk" = ( +/obj/item/stack/sheet/metal{ + pixel_y = 5; + pixel_x = 7 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) "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..."; @@ -26603,22 +30501,60 @@ }, /turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) +"pDn" = ( +/obj/structure/cargo_container/arious/right, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/space_port) "pDV" = ( /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"pEy" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"pGp" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/mars, +/area/bigredv2/outside/w) "pGP" = ( /obj/structure/barricade/handrail{ dir = 4 }, /turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/filtration_plant) +"pGS" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic"; + icon_state = "door_open"; + density = 0 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"pGU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "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) +"pHf" = ( +/obj/item/trash/eat{ + pixel_x = -7; + pixel_y = 6 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/ne) +"pHQ" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/ash{ + pixel_y = 19 + }, +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/nw) "pIl" = ( /obj/structure/morgue{ dir = 2 @@ -26657,12 +30593,24 @@ "pJX" = ( /turf/open/mars_cave/mars_cave_14, /area/bigredv2/caves/mining) +"pJZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "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) +"pKS" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement14, +/area/bigredv2/outside/space_port) "pLj" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/mars_cave/mars_cave_19, @@ -26670,14 +30618,38 @@ "pLH" = ( /turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/ne) +"pMc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"pMd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) "pMi" = ( /obj/effect/decal/cleanable/dirt, /obj/item/tool/extinguisher, /turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) +"pMl" = ( +/obj/structure/barricade/metal{ + dir = 4 + }, +/turf/open/floor/darkred2/southeast, +/area/bigredv2/outside/admin_building) "pMm" = ( /turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/filtration_plant) +"pMr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/space_port) "pMv" = ( /turf/open/mars_cave/mars_dirt_5, /area/bigredv2/outside/lz1_north_cas) @@ -26688,14 +30660,21 @@ "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 +"pNi" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "viro"; + name = "Virology Lockdown" }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"pND" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/s) "pOg" = ( /obj/structure/machinery/compressor{ dir = 1 @@ -26722,6 +30701,15 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) +"pPP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"pQb" = ( +/obj/structure/bed, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "pQv" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/close, @@ -26738,6 +30726,14 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave, /area/bigredv2/outside/lz1_telecomm_cas) +"pRy" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Bar"; + density = 0; + icon_state = "door_open" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/bar) "pRG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, @@ -26749,17 +30745,28 @@ "pSa" = ( /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"pSc" = ( +/obj/structure/pipes/standard/simple/visible{ + dir = 9 + }, +/obj/effect/decal/medical_decals{ + icon_state = "cryotop" + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) "pSf" = ( /turf/open/floor/carpet, /area/bigredv2/outside/library) -"pTo" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"pTl" = ( +/obj/structure/surface/table, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_color = "red"; + phone_id = "Marshal Office" }, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/telecomm/lz2_cave) +/obj/item/restraint/handcuffs, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "pTA" = ( /obj/structure/platform_decoration/shiva{ dir = 1 @@ -26778,6 +30785,13 @@ /obj/item/weapon/broken_bottle, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"pUn" = ( +/obj/item/clothing/gloves/latex{ + pixel_y = 5; + pixel_x = 12 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) "pVp" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 1 @@ -26795,6 +30809,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, /area/bigred/ground/garage_workshop) +"pWp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/sheet/wood, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "pWs" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -26818,6 +30839,10 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"pXp" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) "pXu" = ( /turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) @@ -26840,13 +30865,39 @@ /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) +"pXY" = ( +/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 = 8; + health = 25000; + layer = 2.8 + }, +/obj/structure/machinery/vending/snack{ + pixel_x = 5; + pixel_y = -1; + layer = 2.9 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"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) +"pYL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"pYO" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) "pZe" = ( /obj/effect/decal/cleanable/dirt, /obj/item/weapon/twohanded/folded_metal_chair, @@ -26859,6 +30910,14 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"qaF" = ( +/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/dark, +/area/bigredv2/outside/general_offices) "qaK" = ( /obj/structure/largecrate, /turf/open/floor/asteroidfloor/north, @@ -26867,20 +30926,29 @@ /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" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"qbp" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ dir = 4; id = "lambda-interior"; name = "Lambda Checkpoint Interior" }, -/turf/open/floor/delivery, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/asphalt/cement/cement4, /area/bigredv2/outside/lambda_cave_cas) +"qby" = ( +/turf/open/floor/bcircuit, +/area/bigredv2/outside/telecomm/lz2_cave) +"qcv" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/nw) +"qcC" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/mars, +/area/bigredv2/outside/n) "qcE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -26890,6 +30958,33 @@ "qcQ" = ( /turf/open/mars_cave/mars_dirt_7, /area/bigredv2/outside/space_port_lz2) +"qdL" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/ammo_magazine/revolver/cmb{ + pixel_y = -7; + pixel_x = -7 + }, +/obj/item/ammo_magazine/revolver/cmb, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"qet" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/space_port_lz2) +"qeC" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/telecomm/lz2_cave) +"qeH" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor, +/area/bigredv2/outside/office_complex) "qeK" = ( /obj/structure/surface/table, /obj/effect/spawner/random/tool, @@ -26907,6 +31002,13 @@ }, /turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) +"qgn" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/bar) "qgY" = ( /turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves_sw) @@ -26928,6 +31030,12 @@ }, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/e) +"qhF" = ( +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) "qhH" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A heavy duty power cable for high voltage applications"; @@ -26938,12 +31046,28 @@ }, /turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves/mining) +"qhY" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/obj/item/stack/sheet/metal{ + pixel_x = -13; + pixel_y = 14 + }, +/turf/open/mars, +/area/bigredv2/outside/c) "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) +"qjm" = ( +/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/asphalt/cement, +/area/bigredv2/caves_lambda) "qjA" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -26959,25 +31083,71 @@ }, /turf/open/floor/greengrid, /area/space) +"qkn" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) "qkw" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ name = "\improper Access door" }, /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) +"qky" = ( +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"qkI" = ( +/obj/structure/surface/table, +/obj/item/clothing/under/color/orange, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) "qlK" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, /turf/open/floor, /area/bigred/ground/garage_workshop) +"qlW" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool{ + pixel_y = 7; + pixel_x = 13 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) "qmm" = ( /obj/structure/cargo_container/hd/right/alt, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"qmp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7 + }, +/obj/structure/largecrate/supply/medicine/iv{ + pixel_y = -7; + pixel_x = 3 + }, +/obj/structure/largecrate/random/mini/med{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"qmE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/dart/green{ + pixel_y = -10; + pixel_x = -11 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "qmG" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" @@ -26987,6 +31157,36 @@ }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) +"qmH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"qnj" = ( +/obj/item/weapon/gun/smg/mp5{ + current_mag = null; + pixel_y = 8; + pixel_x = -18 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"qnr" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"qnT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement, +/area/bigredv2/caves_lambda) "qoj" = ( /turf/open/mars_cave/mars_cave_23, /area/bigredv2/outside/filtration_cave_cas) @@ -27007,23 +31207,53 @@ }, /turf/open/floor/whiteblue/southwest, /area/bigredv2/outside/medical) -"qoS" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/e) "qpn" = ( /obj/item/tool/warning_cone{ pixel_x = -6 }, /turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/filtration_plant) +"qpP" = ( +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/lambda_cave_cas) +"qpZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/semki{ + pixel_y = -14 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"qqa" = ( +/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/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "qqw" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) +"qqK" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/s) +"qru" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/outside/medical) "qrZ" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/firstaid/fire, @@ -27037,9 +31267,16 @@ /obj/structure/largecrate/supply, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) +"qsl" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/medical) "qsE" = ( /turf/closed/wall/solaris/reinforced, /area/bigred/ground/garage_workshop) +"qsT" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/virology) "qsV" = ( /obj/structure/bookcase{ icon_state = "book-5" @@ -27047,6 +31284,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/bigredv2/outside/library) +"qty" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/item/stack/rods{ + pixel_y = 13; + pixel_x = 17 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/nw) +"qtT" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/item/ammo_casing/shell, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "qus" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/delivery, @@ -27065,6 +31319,13 @@ }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) +"quU" = ( +/obj/item/trash/eat{ + pixel_x = 12; + pixel_y = -13 + }, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) "quX" = ( /obj/structure/window/framed/solaris/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -27082,9 +31343,6 @@ /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, @@ -27098,6 +31356,28 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"qxo" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"qxD" = ( +/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/asteroidwarning/southeast, +/area/bigredv2/outside/c) +"qyh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/sosjerky{ + pixel_x = -12; + pixel_y = 17 + }, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) "qyi" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -27105,6 +31385,31 @@ }, /turf/open/floor/darkredcorners2/east, /area/bigredv2/outside/admin_building) +"qzk" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/structure/transmitter/colony_net{ + phone_category = "Solaris Ridge"; + phone_color = "blue"; + phone_id = "Operations"; + pixel_y = 24 + }, +/turf/open/floor/darkblue2/north, +/area/bigredv2/outside/admin_building) +"qzt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"qzI" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) "qzO" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /obj/structure/machinery/door/poddoor/almayer/closed{ @@ -27120,16 +31425,98 @@ }, /turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) +"qAg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/limb/head, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"qAk" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"qAF" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/n) +"qBx" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/e) +"qBy" = ( +/obj/structure/bed/roller, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"qBF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/space_port_lz2) "qCK" = ( /turf/open/floor/asteroidwarning, /area/bigredv2/outside/lz2_south_cas) +"qDu" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"qDH" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached18, +/area/bigredv2/outside/virology) +"qDK" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/wrapped/barcardine{ + pixel_y = -2; + pixel_x = -8 + }, +/obj/item/reagent_container/food/snacks/packaged_meal{ + pixel_x = 8; + pixel_y = 9 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"qDU" = ( +/obj/item/prop/colony/canister{ + pixel_y = -10 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/mars_cave/mars_cave_19, +/area/bigredv2/outside/nw) "qDZ" = ( /turf/open/floor/podhatchfloor, /area/bigredv2/outside/telecomm/n_cave) +"qEc" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"qEl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"qEm" = ( +/obj/item/stack/sheet/wood{ + pixel_y = 5; + pixel_x = -4 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/n) "qEs" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz2_south_cas) +"qEz" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/mars, +/area/bigredv2/outside/nw) +"qEE" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) "qEJ" = ( /obj/structure/machinery/door/poddoor/almayer{ dir = 4; @@ -27156,9 +31543,26 @@ }, /turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) +"qFq" = ( +/obj/item/paper{ + info = "god save us, I take this end over that at the hands of those monsters"; + name = "scribbled note" + }, +/obj/item/tool/pen{ + pixel_x = 10; + pixel_y = 14 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "qFY" = ( /turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_east) +"qGd" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "Virology APC" + }, +/turf/open/floor/white, +/area/bigredv2/outside/virology) "qGg" = ( /obj/item/device/flashlight/lamp{ pixel_x = 5; @@ -27168,6 +31572,14 @@ /obj/structure/surface/table/reinforced/prison, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"qGT" = ( +/obj/item/stack/sheet/metal{ + pixel_x = 4; + pixel_y = -9 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor, +/area/bigredv2/outside/office_complex) "qGY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, @@ -27176,6 +31588,10 @@ "qHc" = ( /turf/open/floor/darkyellowcorners2/north, /area/bigredv2/outside/filtration_plant) +"qHy" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/n) "qHY" = ( /turf/open/mars_cave/mars_cave_10, /area/bigredv2/outside/lz2_south_cas) @@ -27185,13 +31601,27 @@ /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" +"qId" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/lambda_cave_cas) +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/se) +"qIp" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars, +/area/bigredv2/outside/se) +"qJh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "qJM" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, @@ -27203,15 +31633,18 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"qKH" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"qKK" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/space_port_lz2) +"qKW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control{ + id = "Medical"; + name = "Storm Shutters"; + pixel_y = -32 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/caves_lambda) +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) "qLk" = ( /obj/item/device/flashlight/lantern, /turf/open/mars_cave/mars_dirt_5, @@ -27223,6 +31656,19 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/eta) +"qMu" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/s) +"qMG" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/w) +"qMJ" = ( +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) "qMS" = ( /turf/open/mars_cave/mars_cave_18, /area/bigredv2/outside/n) @@ -27251,6 +31697,24 @@ }, /turf/open/floor/asteroidwarning, /area/bigredv2/landing/console2) +"qNX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"qOC" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/nw) +"qOK" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/lightbrown{ + pixel_x = 10; + pixel_y = -5 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) "qOM" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -9; @@ -27265,6 +31729,23 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"qPQ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/sign/nosmoking_1{ + pixel_x = -32 + }, +/obj/item/stack/sheet/wood/medium_stack{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/item/stack/sheet/wood{ + pixel_x = -4; + pixel_y = -10 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) "qPT" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/eta) @@ -27282,14 +31763,82 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_north) +"qQM" = ( +/obj/item/trash/popcorn{ + pixel_y = 9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"qRj" = ( +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -11; + pixel_y = -4; + layer = 3.2 + }, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 7; + pixel_y = 16; + layer = 3.1 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/trash/hotdog{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"qRm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/e) +"qRI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/ammo_casing/bullet, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"qSg" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/barricade/wooden{ + dir = 1; + layer = 3.2; + pixel_x = 2; + pixel_y = -3 + }, +/turf/open/floor/whitegreencorner/west, +/area/bigredv2/outside/medical) "qSj" = ( /obj/structure/cargo_container/hd/mid/alt, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"qTw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/armor/riot{ + pixel_y = 5; + pixel_x = 7 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "qTC" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) +"qTH" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/filtration_plant) +"qTN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/virology) "qUF" = ( /obj/structure/machinery/computer/area_atmos{ dir = 1 @@ -27300,6 +31849,11 @@ "qUS" = ( /turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves_sw) +"qUT" = ( +/obj/structure/window_frame/solaris, +/obj/item/shard, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) "qVd" = ( /obj/item/reagent_container/food/snacks/sausage, /obj/structure/platform_decoration/kutjevo/rock{ @@ -27311,9 +31865,6 @@ /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{ @@ -27329,21 +31880,26 @@ /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" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/delivery, -/area/bigredv2/outside/lambda_cave_cas) +"qXf" = ( +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) "qXi" = ( /obj/structure/surface/table/woodentable, /obj/item/device/pinpointer, /turf/open/floor/wood, /area/bigredv2/outside/admin_building) +"qXx" = ( +/obj/item/frame/table/reinforced, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"qXK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) "qYB" = ( /obj/structure/sink{ dir = 8; @@ -27360,6 +31916,18 @@ }, /turf/open/floor/freezerfloor, /area/bigredv2/outside/dorms) +"qYH" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"qYX" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/space_port) "qYY" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 8 @@ -27373,6 +31941,14 @@ }, /turf/open/floor/dark, /area/bigredv2/caves/eta/research) +"qZx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) "qZU" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -27386,10 +31962,25 @@ }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) +"raq" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/adv{ + pixel_y = 13; + pixel_x = 7 + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) "rat" = ( /obj/structure/machinery/light, /turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) +"raE" = ( +/obj/effect/decal/cleanable/molten_item{ + pixel_x = -5; + pixel_y = -11 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) "raQ" = ( /obj/structure/barricade/handrail/wire{ dir = 4 @@ -27404,6 +31995,21 @@ }, /turf/open/floor/red/east, /area/bigredv2/outside/marshal_office) +"rbl" = ( +/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" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/asphalt/cement, +/area/bigredv2/outside/lambda_cave_cas) "rbs" = ( /obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, @@ -27432,10 +32038,32 @@ "rcN" = ( /turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves_research) +"rcR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail/medical{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"rdf" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars, +/area/bigredv2/outside/ne) "rdr" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) +"rdH" = ( +/obj/structure/barricade/wooden{ + dir = 8; + pixel_y = 12; + pixel_x = 2 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "rdR" = ( /turf/open/floor, /area/bigredv2/outside/lz2_south_cas) @@ -27454,6 +32082,14 @@ }, /turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) +"rev" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"reB" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) "reL" = ( /obj/effect/landmark/nightmare{ insert_tag = "vault_v2" @@ -27472,12 +32108,16 @@ }, /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, +"rfL" = ( +/obj/item/shard, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"rgf" = ( +/obj/item/device/healthanalyzer{ + pixel_x = 3; + pixel_y = 8 + }, +/turf/open/floor/white, /area/bigredv2/outside/medical) "rgm" = ( /obj/structure/bed/chair/wood/normal{ @@ -27490,6 +32130,22 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_north_cas) +"rhB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/e) +"rhE" = ( +/obj/structure/pipes/unary/freezer{ + icon_state = "freezer_1" + }, +/obj/structure/sign/safety/med_cryo{ + pixel_x = -16 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "rhP" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -27499,6 +32155,13 @@ }, /turf/open/floor/darkyellowcorners2/north, /area/bigredv2/outside/engineering) +"ria" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/shard/shrapnel/bone_chips, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) "rie" = ( /obj/effect/decal/cleanable/blood/drip, /obj/item/stack/cable_coil/cut{ @@ -27507,6 +32170,14 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"riL" = ( +/obj/item/storage/toolbox{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) "rjw" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor, @@ -27527,21 +32198,53 @@ }, /turf/open/floor/plating/platingdmg3/west, /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" +"rkU" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = -5 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/delivery, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = 1 + }, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = 7 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"rlO" = ( +/obj/structure/prop/rock/brown{ + pixel_y = 10; + pixel_x = -6 + }, +/turf/open/mars, +/area/bigredv2/outside/nw) +"rml" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor, +/area/bigred/ground/garage_workshop) +"rmS" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"rmW" = ( +/obj/item/stack/sheet/wood{ + layer = 4.1; + pixel_x = 14; + pixel_y = -4 + }, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"rnc" = ( +/turf/open/mars_cave, +/area/bigredv2/caves_research) +"rnv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement, /area/bigredv2/outside/lambda_cave_cas) "rnV" = ( /obj/item/stack/sheet/glass, @@ -27574,15 +32277,46 @@ }, /turf/open/floor/whitepurplefull, /area/bigredv2/caves/lambda/xenobiology) +"rqj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop{ + desc = "A bunch of tiny bits of shattered metal."; + icon = 'icons/obj/items/shards.dmi'; + icon_state = "shrapnelsmall"; + name = "piece of shrapnel"; + pixel_x = -1; + pixel_y = 24 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"rqt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor, +/area/bigredv2/outside/office_complex) "rqv" = ( /obj/structure/prop/invuln/minecart_tracks{ 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) +"rre" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"rrV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/caves_lambda) +"rst" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/dorms) "rsv" = ( /turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) @@ -27612,6 +32346,9 @@ /obj/effect/decal/cleanable/blood, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) +"ruo" = ( +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/lambda_cave_cas) "ruS" = ( /obj/structure/bed/chair{ dir = 8; @@ -27619,10 +32356,83 @@ }, /turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) +"ruZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/defibrillator{ + pixel_x = 6; + pixel_y = 12 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"rvp" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/nw) +"rvr" = ( +/obj/item/weapon/gun/smg/mp5{ + current_mag = null; + pixel_y = 8; + pixel_x = -18 + }, +/obj/item/ammo_casing/bullet, +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/mars, +/area/bigredv2/outside/c) +"rvB" = ( +/obj/effect/spawner/random/claymore/highchance, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"rvC" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"rvG" = ( +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 7; + pixel_y = 3; + layer = 3.1 + }, +/obj/effect/decal/cleanable/generic, +/obj/item/stack/sheet/cardboard{ + pixel_x = 2; + pixel_y = -5; + layer = 3.01 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/s) +"rvP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/filtration_plant) "rvS" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) +"rvU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/w) +"rvX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"rwb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/floor/plating/platebotc, +/area/bigredv2/outside/space_port) "rxh" = ( /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) @@ -27630,10 +32440,33 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves_east) +"rxK" = ( +/obj/effect/decal/cleanable/blood, +/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/wood, +/area/bigredv2/outside/bar) +"ryQ" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-in" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) "rzb" = ( /obj/structure/bed/chair, /turf/open/floor/dark, /area/bigredv2/outside/engineering) +"rzI" = ( +/obj/item/trash/burger{ + pixel_y = -10; + pixel_x = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/nw) "rzO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/water_cooler/stacks{ @@ -27656,10 +32489,18 @@ /obj/structure/window, /turf/open/floor/wood, /area/bigredv2/outside/library) +"rBA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "rBK" = ( /obj/structure/fence, /turf/open/mars/mars_dirt_12, /area/bigredv2/outside/se) +"rBT" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/c) "rCd" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidwarning, @@ -27667,9 +32508,14 @@ "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) +"rCH" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/w) +"rDe" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) "rDl" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -3; @@ -27697,10 +32543,33 @@ }, /turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_plant) +"rEe" = ( +/obj/item/clothing/mask/gas{ + pixel_y = 7; + pixel_x = 7 + }, +/obj/structure/barricade/deployable, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"rGr" = ( +/obj/effect/landmark/corpsespawner/colonist, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"rGD" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/red/north, +/area/bigredv2/outside/lambda_cave_cas) "rGP" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_virology) +"rHe" = ( +/obj/structure/barricade/wooden{ + dir = 4; + pixel_x = 4 + }, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) "rHr" = ( /obj/item/ore, /turf/open/mars_cave/mars_dirt_7, @@ -27716,6 +32585,34 @@ "rIl" = ( /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/oob) +"rIu" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/s) +"rIv" = ( +/turf/open/asphalt/cement/cement14, +/area/bigredv2/outside/space_port) +"rIx" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/space_port) +"rIH" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"rIM" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/item/prop/colony/usedbandage{ + dir = 5 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"rJm" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) "rJJ" = ( /turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/lz2_south_cas) @@ -27723,6 +32620,10 @@ /obj/structure/reagent_dispensers/fueltank/gas, /turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) +"rJW" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/n) "rKe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -27752,9 +32653,20 @@ /obj/structure/machinery/portable_atmospherics/powered/scrubber, /turf/open/floor/plating/warnplate/west, /area/bigredv2/oob) +"rLJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-in" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) "rLM" = ( /turf/open/mars/mars_dirt_12, /area/bigredv2/outside/ne) +"rLO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) "rLR" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_nest, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, @@ -27799,12 +32711,34 @@ /obj/effect/landmark/crap_item, /turf/open/floor, /area/bigredv2/outside/hydroponics) +"rNp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + pixel_x = 20 + }, +/obj/item/stack/sheet/wood{ + pixel_x = 4; + pixel_y = 7 + }, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) "rNs" = ( /obj/effect/landmark/nightmare{ insert_tag = "tcomms_open" }, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) +"rNy" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars, +/area/bigredv2/outside/s) +"rNG" = ( +/obj/item/reagent_container/pill/cyanide, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) "rOK" = ( /obj/effect/landmark/corpsespawner/ua_riot, /obj/item/weapon/baton/loaded, @@ -27824,6 +32758,17 @@ }, /turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) +"rOP" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/mars, +/area/bigredv2/outside/ne) +"rPc" = ( +/obj/item/stack/sheet/metal{ + pixel_x = 3; + pixel_y = -11 + }, +/turf/open/floor/panelscorched, +/area/bigredv2/outside/medical) "rPh" = ( /obj/item/ore{ pixel_x = 9; @@ -27835,6 +32780,37 @@ }, /turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) +"rPj" = ( +/obj/structure/sign/nosmoking_1{ + pixel_x = -32 + }, +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_x = 10; + pixel_y = 18 + }, +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) +"rPq" = ( +/obj/item/stack/sheet/wood{ + pixel_y = -13; + pixel_x = 12 + }, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/mars, +/area/bigredv2/outside/n) +"rPs" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/landmark/corpsespawner/chef, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) "rQs" = ( /obj/structure/bed/sofa/south{ desc = "An old rusty ladder"; @@ -27844,14 +32820,64 @@ }, /turf/open/floor/plating, /area/bigredv2/oob) -"rRO" = ( +"rQu" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/bigredv2/outside/nw) +"rSf" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 16 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/s) +"rSm" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"rSE" = ( +/obj/structure/bed/bedroll{ + dir = 5 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/prop/colony/usedbandage{ + dir = 4; + pixel_x = -1; + pixel_y = -4 + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"rSM" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"rTc" = ( +/obj/effect/decal/cleanable/dirt, +/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/asteroidwarning/southeast, -/area/bigredv2/outside/filtration_cave_cas) +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement, +/area/bigredv2/outside/lambda_cave_cas) "rTq" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, /area/bigredv2/caves/eta/storage) +"rTs" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) +"rTC" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/outside/medical) "rTN" = ( /obj/structure/fence, /turf/open/floor/asteroidfloor/north, @@ -27883,6 +32909,14 @@ }, /turf/open/gm/river, /area/bigredv2/outside/engineering) +"rUU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 16 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) "rUZ" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -27895,14 +32929,41 @@ }, /turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) +"rVw" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "rVE" = ( /obj/effect/landmark/crap_item, /turf/open/mars_cave/mars_cave_19, /area/bigredv2/outside/n) +"rVM" = ( +/obj/structure/surface/table, +/obj/item/device/radio{ + pixel_x = -10; + pixel_y = 9 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) "rVT" = ( /obj/structure/fence, /turf/open/floor/asteroidwarning, /area/bigredv2/outside/n) +"rVY" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/n) +"rWg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) "rWF" = ( /obj/item/stack/cable_coil/cut{ pixel_x = 6; @@ -27917,6 +32978,17 @@ }, /turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) +"rXc" = ( +/obj/effect/acid_hole{ + dir = 4 + }, +/turf/closed/wall/solaris, +/area/bigredv2/outside/medical) +"rXh" = ( +/obj/structure/machinery/light, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/whitegreen/southeast, +/area/bigredv2/outside/medical) "rXy" = ( /obj/effect/decal/cleanable/dirt, /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, @@ -27926,12 +32998,44 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"rXJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/syndi_cakes{ + pixel_y = -11; + pixel_x = 9 + }, +/obj/item/trash/crushed_cup{ + pixel_y = 12 + }, +/obj/item/trash/semki{ + pixel_y = -14 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"rXM" = ( +/obj/item/trash/semki{ + pixel_y = -14 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/virology) "rXY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, /turf/open/floor/darkpurple2/east, /area/bigredv2/caves/lambda/research) +"rXZ" = ( +/obj/structure/machinery/optable, +/obj/effect/decal/cleanable/dirt, +/obj/item/organ/heart/prosthetic{ + pixel_x = 6; + pixel_y = -7 + }, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "rYr" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/ash, @@ -27983,6 +33087,12 @@ /obj/structure/machinery/power/turbine, /turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) +"sbc" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/item/restraint/handcuffs, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) "sbk" = ( /obj/effect/landmark/corpsespawner/miner, /obj/effect/decal/cleanable/blood, @@ -27993,6 +33103,14 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port_lz2) +"sbn" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) "sbz" = ( /obj/structure/platform/kutjevo/rock{ dir = 8 @@ -28017,12 +33135,39 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, /area/bigredv2/caves/eta/living) +"scH" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 2; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) "scK" = ( /obj/structure/platform{ dir = 8 }, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/telecomm/n_cave) +"scP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) "sdl" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -28030,10 +33175,33 @@ /obj/structure/window, /turf/open/floor/wood, /area/bigredv2/outside/library) +"sdo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Dormitories Lavatory"; + density = 0; + icon_state = "door_open" + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) "sdP" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"seF" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkish, +/area/bigredv2/outside/medical) +"seK" = ( +/obj/structure/airlock_assembly, +/obj/item/stack/rods{ + pixel_y = -2 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) "seO" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -1; @@ -28041,9 +33209,36 @@ }, /turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) +"sfw" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/c) "sfI" = ( /turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves_east) +"sfT" = ( +/obj/structure/surface/table, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_y = -7; + pixel_x = 8 + }, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_y = 3; + pixel_x = -1 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"sgd" = ( +/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/whitegreen/east, +/area/bigredv2/outside/medical) "sgF" = ( /obj/structure/cable{ icon_state = "1-6" @@ -28053,38 +33248,95 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"sgI" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) "sgT" = ( /obj/item/trash/burger, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"shn" = ( +"sgZ" = ( /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" + dir = 9 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/delivery, -/area/bigredv2/outside/lambda_cave_cas) +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) "shK" = ( /obj/structure/cargo_container/arious/right, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/space_port_lz2) +"shP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/structure/barricade/metal, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) "shV" = ( /turf/open/floor/asteroidwarning, /area/bigred/ground/garage_workshop) -"siu" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/eta) +"sib" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel{ + layer = 3.3; + pixel_x = -15; + pixel_y = -9 + }, +/obj/structure/largecrate/random/barrel{ + pixel_x = -4; + pixel_y = 10; + layer = 3.2 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"sih" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"siG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"siK" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) "siM" = ( /turf/open/mars_cave/mars_cave_18, /area/bigredv2/outside/lz1_telecomm_cas) +"sjQ" = ( +/obj/item/ammo_casing/shell, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "ski" = ( /turf/open/mars_cave, /area/bigredv2/outside/lz2_west_cas) +"skt" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/space_port_lz2) +"skx" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/botany, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"skZ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/space_port) +"sll" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) "sln" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" @@ -28102,6 +33354,11 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/plating, /area/bigredv2/caves_north) +"smw" = ( +/obj/effect/landmark/hunter_primary, +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/mars, +/area/bigredv2/outside/n) "smy" = ( /obj/item/stack/cable_coil/cut, /turf/open/mars_cave/mars_cave_13, @@ -28114,6 +33371,10 @@ }, /turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) +"smH" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) "smO" = ( /turf/open/mars_cave/mars_cave_9, /area/bigredv2/outside/lz1_north_cas) @@ -28127,6 +33388,17 @@ }, /turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) +"snT" = ( +/obj/item/stack/rods{ + pixel_y = 13; + pixel_x = 17 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"snZ" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/space_port_lz2) "sog" = ( /obj/item/explosive/grenade/slug/baton{ dir = 1; @@ -28152,6 +33424,17 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"sox" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"spd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/caves_east) "sqc" = ( /obj/effect/decal/cleanable/blood{ base_icon = 'icons/obj/items/weapons/grenade.dmi'; @@ -28169,10 +33452,21 @@ /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/ne) +"sqM" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/mars, +/area/bigredv2/outside/se) "sqQ" = ( /obj/item/paper/bigred/them, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"srz" = ( +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 7; + pixel_y = 9 + }, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) "sso" = ( /obj/structure/bed/chair, /turf/open/mars_cave/mars_cave_2, @@ -28193,6 +33487,10 @@ /obj/effect/landmark/static_comms/net_two, /turf/open/floor/bcircuit, /area/bigredv2/outside/telecomm/lz2_cave) +"sub" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/c) "sus" = ( /turf/open/mars_cave/mars_cave_23, /area/bigredv2/caves_research) @@ -28225,6 +33523,25 @@ }, /turf/open/shuttle/escapepod/floor1, /area/bigredv2/oob) +"suL" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"suP" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/clothing/head/helmet/marine/desert{ + pixel_x = 10; + pixel_y = 7 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"suR" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/ne) "suV" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ dir = 1; @@ -28232,17 +33549,42 @@ }, /turf/open/floor/delivery, /area/bigred/ground/garage_workshop) -"swk" = ( -/obj/structure/machinery/light{ - dir = 4 +"sva" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox{ + pixel_x = 1; + pixel_y = -7 }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/w) +/turf/open/floor, +/area/bigredv2/outside/dorms) +"svb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -6; + pixel_y = -4; + layer = 3.1 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"swl" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/mars, +/area/bigredv2/outside/c) "swJ" = ( /obj/structure/surface/table, /obj/effect/landmark/objective_landmark/science, /turf/open/floor/freezerfloor, /area/bigredv2/outside/virology) +"sxg" = ( +/obj/item/trash/used_stasis_bag{ + pixel_y = 5 + }, +/turf/open/floor/whiteblue/northeast, +/area/bigredv2/outside/medical) "sxs" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -3; @@ -28253,6 +33595,25 @@ }, /turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) +"sxR" = ( +/obj/structure/bed/chair/wheelchair{ + pixel_y = 5; + pixel_x = 5 + }, +/obj/structure/machinery/iv_drip{ + pixel_y = 20; + pixel_x = -13 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"syf" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) "syi" = ( /obj/structure/surface/table, /obj/item/device/radio{ @@ -28260,19 +33621,33 @@ }, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) +"sym" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/w) "syu" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib3" }, /turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) -"szi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"syK" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"szi" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/darkred2, /area/bigredv2/outside/admin_building) +"szt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) "szw" = ( /turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) @@ -28312,6 +33687,34 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_east) +"sBB" = ( +/obj/structure/machinery/light/built, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/darkish, +/area/bigredv2/caves/lambda/breakroom) +"sBE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/largecrate/supply/medicine/medkits{ + pixel_x = -3 + }, +/obj/structure/largecrate/supply/supplies/flares{ + pixel_x = -1; + pixel_y = 20; + layer = 3.1 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"sCf" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "sCj" = ( /obj/item/stack/cable_coil/cut, /turf/open/mars_cave/mars_cave_17, @@ -28319,6 +33722,12 @@ "sCt" = ( /turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) +"sCT" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/ammo_casing/shell, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) "sDs" = ( /obj/structure/closet/crate/miningcar, /obj/item/weapon/gun/smg/nailgun, @@ -28349,14 +33758,29 @@ }, /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) +"sEp" = ( +/obj/structure/girder, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/office_complex) +"sEu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "\improper Marshal Office Armory"; + locked = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"sED" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/eta) "sFv" = ( /turf/open/floor/asteroidwarning/north, /area/bigredv2/caves_north) @@ -28372,6 +33796,13 @@ /obj/item/frame/rack, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"sHg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/eat{ + pixel_y = -2 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/ne) "sHz" = ( /obj/item/ore{ pixel_x = 9; @@ -28379,6 +33810,12 @@ }, /turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) +"sHL" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) "sHO" = ( /obj/effect/landmark/crap_item, /obj/effect/decal/cleanable/dirt, @@ -28390,19 +33827,44 @@ }, /turf/closed/wall/solaris/rock, /area/bigredv2/caves) +"sIp" = ( +/obj/effect/decal/strata_decals/grime/grime1, +/obj/effect/decal/cleanable/ash{ + pixel_y = 19 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/nw) +"sII" = ( +/obj/item/stack/sheet/wood{ + pixel_y = -7 + }, +/turf/open/floor/whitegreencorner/east, +/area/bigredv2/outside/medical) +"sIM" = ( +/obj/structure/bed, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) "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) +"sIT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-in" + }, +/turf/open/floor/plating/platebotc, +/area/bigredv2/outside/space_port) "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) +"sKK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/w) "sLr" = ( /turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_se) @@ -28414,6 +33876,28 @@ /obj/structure/machinery/suit_storage_unit/carbon_unit, /turf/open/floor/plating, /area/bigredv2/outside/admin_building) +"sMg" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars, +/area/bigredv2/caves_north) +"sML" = ( +/turf/open/asphalt/cement, +/area/bigredv2/outside/lambda_cave_cas) +"sMP" = ( +/obj/item/trash/pistachios{ + pixel_x = -3; + pixel_y = 11 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"sNJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/s) "sNP" = ( /obj/structure/window/framed/solaris, /turf/open/floor/plating/panelscorched, @@ -28425,6 +33909,12 @@ /obj/structure/airlock_assembly, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"sOq" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit{ + icon_state = "open" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "sOE" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_cave_6, @@ -28432,15 +33922,56 @@ "sON" = ( /turf/open/mars_cave/mars_cave_10, /area/bigredv2/caves_east) +"sOZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/e) +"sPo" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/thirteenloko{ + pixel_x = -5 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/reagent_container/food/drinks/cans/thirteenloko{ + pixel_x = 1 + }, +/obj/item/reagent_container/food/drinks/cans/thirteenloko{ + pixel_x = 7 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) "sPv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/delivery, /area/bigredv2/outside/bar) +"sPw" = ( +/obj/item/tool/mop{ + pixel_y = 19; + pixel_x = 10 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) "sQw" = ( /turf/open/mars_cave/mars_cave_23, /area/bigredv2/outside/lz1_telecomm_cas) +"sQP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/bigredv2/caves_lambda) +"sRs" = ( +/obj/item/tool/surgery/scalpel{ + pixel_y = -8 + }, +/turf/open/floor/whiteblue, +/area/bigredv2/outside/medical) "sRy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -28450,12 +33981,14 @@ }, /turf/open/floor/delivery, /area/bigredv2/outside/admin_building) -"sRV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"sRX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/burger{ + pixel_y = 12; + pixel_x = -8 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/caves_lambda) +/turf/open/floor/white, +/area/bigredv2/outside/medical) "sSU" = ( /turf/open/mars_cave/mars_cave_19, /area/bigredv2/outside/lz2_south_cas) @@ -28470,22 +34003,6 @@ /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/floor/asteroidfloor/north, -/area/bigredv2/caves_lambda) "sWa" = ( /obj/item/ore{ pixel_x = 12; @@ -28493,11 +34010,14 @@ }, /turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves/mining) -"sWh" = ( -/obj/structure/platform_decoration, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/telecomm/n_cave) +"sWp" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/mars, +/area/bigredv2/outside/c) +"sWt" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/e) "sWS" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating/platingdmg3/west, @@ -28508,6 +34028,11 @@ }, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/marshal_office) +"sXf" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/eta) "sXv" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/drip{ @@ -28544,15 +34069,39 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, /turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) +"taj" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) "tap" = ( /obj/structure/machinery/message_server, /turf/open/floor/podhatchfloor, /area/bigredv2/outside/admin_building) +"taD" = ( +/obj/item/clothing/under/brown{ + pixel_x = 4; + pixel_y = -5 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) "taV" = ( /obj/structure/closet/coffin/woodencrate, /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) +"tbe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/caves_lambda) +"tbl" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) "tbS" = ( /obj/structure/morgue{ dir = 1 @@ -28568,10 +34117,39 @@ /obj/item/explosive/grenade/baton, /turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves_research) +"tcy" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"tcI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/ammo_casing/bullet, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "tcP" = ( /obj/effect/decal/cleanable/dirt/greenglow, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/engineering) +"tcV" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/virology) +"tcY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/c) +"tdo" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/adv/empty, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) "tdp" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib4" @@ -28588,11 +34166,26 @@ }, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_se) +"tdC" = ( +/obj/item/stack/sheet/metal{ + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/space_port) +"tdE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/caves_north) "tdN" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/engineering) +"tdT" = ( +/obj/item/trash/cheesie, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) "tdZ" = ( /obj/item/tool/pickaxe/drill, /obj/structure/machinery/light{ @@ -28642,15 +34235,14 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave, /area/bigredv2/outside/lz2_west_cas) +"tfu" = ( +/obj/item/frame/table, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/outside/office_complex) "tfz" = ( /obj/effect/decal/cleanable/ash, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"tgf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/snack, -/turf/open/floor, -/area/bigredv2/outside/general_offices) "tgF" = ( /obj/effect/spawner/random/tool, /turf/open/shuttle/escapepod/floor5, @@ -28658,6 +34250,27 @@ "tgL" = ( /turf/open/mars_cave/mars_cave_6, /area/bigredv2/caves_se) +"tgN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/firstaid/fire/empty, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"thC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/se) +"til" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/obj/item/trash/cigbutt{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/mars, +/area/bigredv2/outside/nw) "tiD" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6"; @@ -28667,6 +34280,13 @@ /obj/item/weapon/gun/pistol/highpower, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) +"tiL" = ( +/obj/structure/surface/table/woodentable{ + dir = 1; + flipped = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "tju" = ( /obj/structure/machinery/shower{ dir = 8 @@ -28676,9 +34296,51 @@ }, /turf/open/floor/freezerfloor, /area/bigredv2/outside/engineering) +"tjx" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"tjC" = ( +/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/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/w) "tjX" = ( /turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/n) +"tkf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/ne) +"tkp" = ( +/obj/structure/bed/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"tkx" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"tkI" = ( +/obj/item/stack/sheet/wood{ + pixel_x = 1; + pixel_y = 6 + }, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) "tkN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -28698,6 +34360,12 @@ }, /turf/open/floor/elevatorshaft/north, /area/bigredv2/caves/lambda/breakroom) +"tlx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) "tlP" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /obj/structure/machinery/light{ @@ -28714,6 +34382,11 @@ }, /turf/open/floor/wood, /area/bigredv2/outside/library) +"tmh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/s) "tmH" = ( /obj/structure/closet/crate, /obj/structure/machinery/light{ @@ -28728,15 +34401,15 @@ }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_research) +"tns" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "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, -/area/bigredv2/outside/admin_building) "tpR" = ( /obj/structure/bed/chair{ dir = 4; @@ -28754,6 +34427,10 @@ /obj/structure/lz_sign/solaris_sign, /turf/open/mars, /area/bigredv2/outside/space_port_lz2) +"tqg" = ( +/obj/item/tool/warning_cone, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/se) "tqi" = ( /turf/open/mars_cave/mars_cave_19, /area/bigredv2/caves/mining) @@ -28811,6 +34488,35 @@ "tsK" = ( /turf/open/mars_cave/mars_cave_14, /area/bigredv2/outside/lz2_south_cas) +"tsW" = ( +/obj/item/trash/cigbutt{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"ttb" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"ttk" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ + pixel_y = 8; + pixel_x = -2 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"ttn" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/c) +"ttr" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/recharger, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redfull/northwest, +/area/bigredv2/outside/lambda_cave_cas) "tub" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -28841,6 +34547,45 @@ }, /turf/open/floor/darkyellow2/east, /area/bigredv2/outside/engineering) +"twt" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/virology) +"txi" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/mars, +/area/bigredv2/outside/filtration_plant) +"txM" = ( +/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 = 8; + health = 25000 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"tyu" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/mars, +/area/bigredv2/outside/s) +"tyQ" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair/wood/normal{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"tzh" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/whitegreencorner/west, +/area/bigredv2/outside/medical) "tzJ" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ name = "\improper Engine Reactor Control" @@ -28883,6 +34628,10 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"tBl" = ( +/obj/item/trash/popcorn, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/virology) "tBD" = ( /turf/open/floor/almayer/w_y1/north, /area/bigredv2/outside/admin_building) @@ -28905,6 +34654,18 @@ /obj/structure/prop/invuln/minecart_tracks, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"tCn" = ( +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/space_port_lz2) +"tCy" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/suit_storage_unit/carbon_unit{ + icon_state = "open" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "tCH" = ( /obj/effect/decal/cleanable/blood{ dir = 8; @@ -28915,35 +34676,108 @@ }, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) +"tCL" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "viro"; + name = "Virology Lockdown" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"tCQ" = ( +/turf/open/gm/river/red, +/area/bigredv2/outside/c) "tDk" = ( /obj/structure/machinery/light/double{ dir = 1 }, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"tDl" = ( -/obj/structure/machinery/power/apc/power/south, -/turf/open/floor/darkredcorners2/west, -/area/bigredv2/caves/eta/xenobiology) +"tDs" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/item/trash/cigbutt{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) "tDv" = ( /obj/effect/landmark/crap_item, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz2_west_cas) +"tDE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement15, +/area/bigredv2/outside/space_port) "tEc" = ( /obj/structure/machinery/light/small, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_research) +"tEA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir" + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"tEG" = ( +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "tFt" = ( /obj/structure/surface/table, /obj/structure/machinery/light, /turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) +"tFv" = ( +/obj/structure/barricade/wooden, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"tFH" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/decal/cleanable/blood, +/obj/item/ammo_casing/bullet{ + icon_state = "cartridge_10_1" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) +"tFL" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/beret/sec/warden{ + pixel_y = 5 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "tFO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, /turf/open/floor/delivery, /area/bigredv2/caves/lambda/breakroom) +"tFT" = ( +/obj/structure/lz_sign/solaris_sign, +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/nw) +"tGI" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/nw) +"tGP" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/tool/hatchet{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/marshal_office) "tHl" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/mars/mars_dirt_10, @@ -28954,6 +34788,31 @@ }, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) +"tHH" = ( +/obj/item/clothing/suit/armor/riot{ + pixel_y = -5; + pixel_x = -4 + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"tHM" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/se) +"tIe" = ( +/obj/structure/bed/bedroll{ + dir = 10 + }, +/obj/item/weapon/baseballbat{ + pixel_x = -17; + pixel_y = 10 + }, +/obj/item/prop/colony/usedbandage{ + dir = 9; + pixel_x = 5; + pixel_y = 15 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) "tIq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_7, @@ -28970,6 +34829,24 @@ }, /turf/open/floor, /area/bigred/ground/garage_workshop) +"tIT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/extinguisher{ + pixel_y = 15; + pixel_x = -7 + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"tJl" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office"; + welded = 1; + dir = 2; + density = 0; + icon_state = "door_open" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) "tJn" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -28987,6 +34864,12 @@ }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) +"tKq" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/s) "tKr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair{ @@ -29028,17 +34911,78 @@ /obj/effect/spawner/random/technology_scanner, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port_lz2) +"tMA" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/asphalt/cement/cement15, +/area/bigredv2/caves_lambda) +"tNa" = ( +/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; + pixel_y = 20 + }, +/obj/structure/machinery/vending/cigarette/colony{ + layer = 3.1; + pixel_y = 9 + }, +/obj/structure/largecrate/random/mini/chest/b{ + layer = 3.2; + pixel_y = -4 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"tNf" = ( +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/filtration_cave_cas) +"tNx" = ( +/turf/closed/wall/solaris{ + damage = 500; + damage_overlay = 2; + current_bulletholes = 1 + }, +/area/bigredv2/outside/medical) "tNz" = ( /obj/effect/decal/warning_stripes{ icon_state = "E-corner" }, /turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/filtration_cave_cas) +"tNO" = ( +/obj/item/trash/semki{ + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"tOg" = ( +/obj/item/clothing/mask/gas, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "tOh" = ( /obj/structure/surface/table, /obj/item/device/megaphone, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) +"tOJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/telecomm/lz2_cave) +"tOO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/uranium{ + amount = 50; + pixel_x = 3 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "tQg" = ( /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/mars, @@ -29058,6 +35002,24 @@ "tQw" = ( /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_lambda) +"tQG" = ( +/obj/effect/decal/cleanable/blood/gibs/robot{ + pixel_y = 7; + pixel_x = -4; + name = "door debris" + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/item/stack/rods, +/turf/open/floor/delivery, +/area/bigredv2/outside/office_complex) +"tQV" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool{ + pixel_x = 4; + pixel_y = 13 + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) "tRd" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A pipe."; @@ -29071,6 +35033,11 @@ "tRI" = ( /turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_research) +"tRM" = ( +/obj/structure/barricade/deployable, +/obj/item/ammo_casing/bullet, +/turf/open/mars, +/area/bigredv2/outside/c) "tRV" = ( /obj/item/ore/uranium{ desc = "You feel fuzzy just looking at it.... it's slightly lumanesant"; @@ -29093,21 +35060,45 @@ }, /turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) +"tSY" = ( +/obj/structure/surface/table, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"tTd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"tTv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/e) "tTI" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, /area/bigredv2/outside/engineering) +"tUa" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/platingdmg1, +/area/bigredv2/outside/office_complex) +"tUe" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) "tUL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/hefa_cult_decals/d32, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"tUY" = ( -/obj/structure/machinery/light{ +"tVg" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port_lz2) +/turf/open/floor/whitegreen/west, +/area/bigredv2/outside/medical) "tVn" = ( /obj/item/tool/lighter/zippo, /turf/open/floor, @@ -29121,20 +35112,98 @@ }, /turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) +"tVE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "tWf" = ( /obj/structure/cargo_container/arious/leftmid, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/space_port_lz2) -"tWS" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo, +"tWv" = ( +/obj/structure/machinery/power/apc/no_power/north, +/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) +"tWA" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars, +/area/bigredv2/outside/c) +"tWS" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo, /turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) +"tXa" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/mono{ + pixel_x = 18; + pixel_y = -9 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"tYj" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement1/north, +/area/bigredv2/outside/filtration_cave_cas) +"tYm" = ( +/obj/structure/flora/grass/desert/lightgrass_9, +/turf/open/mars, +/area/bigredv2/outside/s) +"tZd" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"tZj" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars, +/area/bigredv2/outside/s) +"tZl" = ( +/obj/structure/surface/table, +/obj/item/tool/surgery/cautery{ + pixel_y = 9; + pixel_x = 9 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_y = 4; + pixel_x = -8 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"tZs" = ( +/obj/structure/closet/crate/trashcart, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) "tZU" = ( /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) +"uao" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/rods, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) "uaB" = ( /turf/open/floor/darkpurple2/west, /area/bigredv2/caves/lambda/research) @@ -29147,6 +35216,10 @@ }, /turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/engineering) +"uaU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/se) "ubY" = ( /obj/structure/barricade/wooden, /turf/open/mars_cave/mars_dirt_4, @@ -29161,20 +35234,66 @@ "ucN" = ( /turf/open/mars_cave/mars_cave_4, /area/bigredv2/caves_se) +"udl" = ( +/turf/open/mars_cave/mars_cave_14, +/area/bigredv2/outside/nw) +"udn" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/nw) +"uek" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/caves_lambda) +"ueH" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomright" + }, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/outside/medical) "ueL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/window/framed/solaris, /turf/open/floor/plating/panelscorched, /area/bigredv2/outside/engineering) -"ufc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port_lz2) +"ueM" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + frequency = 1469; + name = "General Listening Channel"; + pixel_x = 30 + }, +/obj/structure/bed/bedroll{ + dir = 10 + }, +/obj/item/prop/colony/usedbandage{ + dir = 4; + pixel_x = -1; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) "ufu" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"ufx" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) "ufB" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -29185,13 +35304,22 @@ /obj/structure/largecrate/random/barrel, /turf/open/floor, /area/bigredv2/outside/cargo) +"ugm" = ( +/obj/effect/decal/strata_decals/grime/grime2, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/space_port_lz2) "ugW" = ( /obj/structure/machinery/light/small, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"uij" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/filtration_cave_cas) +"uiq" = ( +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -5; + pixel_y = 11 + }, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) "uiE" = ( /obj/structure/bed/chair{ dir = 8; @@ -29199,10 +35327,13 @@ }, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) -"ujq" = ( -/obj/structure/bed/roller, -/turf/open/floor/whitegreen/northwest, -/area/bigredv2/outside/medical) +"uiF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor, +/area/bigredv2/outside/hydroponics) "ujC" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -29246,18 +35377,10 @@ /obj/item/device/flashlight/on, /turf/open/floor/plating, /area/bigredv2/caves/mining) -"ume" = ( -/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) +"ulJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/nw) "umK" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -8; @@ -29268,6 +35391,23 @@ }, /turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) +"umN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) +"umW" = ( +/obj/structure/bed/chair/wood/normal{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "unC" = ( /turf/open/floor/delivery, /area/bigredv2/outside/telecomm/lz2_cave) @@ -29275,10 +35415,14 @@ /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) +"uoo" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/e) +"upd" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) "upE" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor, @@ -29288,15 +35432,51 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/delivery, /area/bigredv2/outside/admin_building) +"uqg" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/eta) +"uqh" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/mars, +/area/bigredv2/outside/c) "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) +"urp" = ( +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/obj/item/trash/cigbutt, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/nw) +"usq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/botany, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) "ust" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -3; @@ -29308,6 +35488,43 @@ "usG" = ( /turf/open/mars_cave/mars_cave_18, /area/bigredv2/caves_east) +"usU" = ( +/obj/item/paper_bin{ + pixel_x = 6; + pixel_y = -7 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"usZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"utQ" = ( +/obj/effect/landmark/crap_item, +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) +"uum" = ( +/obj/item/stack/folding_barricade, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"uut" = ( +/obj/item/storage/box/MRE{ + pixel_x = -1; + pixel_y = -6 + }, +/obj/item/storage/box/MRE{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"uuB" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/mars, +/area/bigredv2/outside/c) "uuO" = ( /obj/item/shard{ icon_state = "small" @@ -29322,27 +35539,60 @@ "uvz" = ( /turf/open/floor/asteroidwarning/north, /area/bigred/ground/garage_workshop) +"uvL" = ( +/obj/structure/barricade/wooden{ + dir = 8; + pixel_y = 12 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "uvZ" = ( /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/filtration_plant) +"uwh" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/reagent_container/glass/bottle/cyanide{ + pixel_y = 2; + pixel_x = -6 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"uwB" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/mars, +/area/bigredv2/outside/c) +"uwP" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/e) "uwV" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/general_offices) +"uxa" = ( +/obj/item/stack/sheet/metal{ + pixel_x = 7; + pixel_y = 6 + }, +/turf/open/floor/whitepurplecorner/east, +/area/bigredv2/outside/medical) +"uxk" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/e) "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 - }, -/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) +"uzb" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) "uzv" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_dirt_7, @@ -29353,12 +35603,40 @@ /obj/item/device/flashlight/lantern, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"uzD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/bigredv2/outside/general_offices) +"uAV" = ( +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"uAX" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/mars, +/area/bigredv2/outside/nw) "uBi" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /turf/open/floor/dark, /area/bigredv2/outside/engineering) +"uBr" = ( +/obj/structure/barricade/metal{ + dir = 4 + }, +/turf/open/floor/darkred2/northeast, +/area/bigredv2/outside/admin_building) +"uBI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/trash/semki{ + pixel_x = 6; + pixel_y = -5 + }, +/turf/open/floor/warnwhite/west, +/area/bigredv2/outside/medical) "uBP" = ( /obj/structure/cargo_container/arious/leftmid, /turf/open/mars, @@ -29367,6 +35645,23 @@ /obj/effect/landmark/corpsespawner/miner, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"uCV" = ( +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_2" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/c) +"uDc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/se) +"uDe" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/e) "uDn" = ( /obj/structure/sign/safety/west, /obj/structure/sign/safety/hazard{ @@ -29374,13 +35669,19 @@ }, /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, -/area/bigredv2/outside/medical) +"uDu" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 1 + }, +/obj/structure/flora/grass/desert/lightgrass_2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"uDx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/bigredv2/outside/virology) "uDA" = ( /obj/item/stack/sheet/glass, /turf/open/floor/darkyellow2, @@ -29394,12 +35695,20 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"uDM" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/s) "uDZ" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) +"uEi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) "uFi" = ( /obj/item/paper/bigred/finance{ pixel_x = -9 @@ -29419,12 +35728,34 @@ }, /turf/open/mars_cave/mars_cave_9, /area/bigredv2/caves/mining) +"uFE" = ( +/obj/structure/barricade/handrail/medical{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/nw) "uFF" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = 6 }, /turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) +"uFN" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/mars, +/area/bigredv2/outside/e) +"uFZ" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "lambda-exterior"; + name = "Lambda Checkpoint Exterior" + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/lambda_cave_cas) "uGs" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/ash, @@ -29458,6 +35789,18 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/asteroidfloor/north, /area/bigred/ground/garage_workshop) +"uIP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/c) +"uIX" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor, +/area/bigredv2/outside/dorms) "uJj" = ( /obj/structure/machinery/light{ dir = 8 @@ -29470,10 +35813,6 @@ }, /turf/open/mars_cave/mars_dirt_5, /area/bigredv2/caves/mining) -"uJF" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor, -/area/bigred/ground/garage_workshop) "uJI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light/small{ @@ -29481,6 +35820,18 @@ }, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) +"uJO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/whitegreencorner/north, +/area/bigredv2/outside/medical) +"uKC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) "uKH" = ( /obj/structure/stairs/perspective{ dir = 6; @@ -29488,6 +35839,27 @@ }, /turf/open/floor/darkred2/north, /area/bigredv2/outside/admin_building) +"uLl" = ( +/obj/structure/flora/grass/desert/lightgrass_7, +/turf/open/mars, +/area/bigredv2/outside/virology) +"uLn" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/machinery/door/window/brigdoor/eastleft, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"uLT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/red, +/area/bigredv2/outside/lambda_cave_cas) +"uLZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/hotdog{ + pixel_x = -9; + pixel_y = 1 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) "uNW" = ( /obj/effect/decal/cleanable/blood{ dir = 8; @@ -29500,6 +35872,22 @@ /obj/effect/decal/cleanable/blood, /turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) +"uOy" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 2; + pixel_y = 9 + }, +/obj/structure/prop/invuln/pipe_water{ + pixel_x = 9; + pixel_y = -1 + }, +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_y = -19; + pixel_x = 7 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) "uPm" = ( /turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_se) @@ -29519,6 +35907,10 @@ }, /turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) +"uQZ" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/mars, +/area/bigredv2/outside/virology) "uRE" = ( /obj/effect/landmark/nightmare{ insert_tag = "medbay-passage" @@ -29544,37 +35936,145 @@ }, /turf/open/floor/delivery, /area/bigredv2/outside/medical) +"uTB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Dormitories"; + welded = 1 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/general_offices) "uTO" = ( /obj/structure/machinery/pipedispenser, /turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) +"uUM" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/nw) +"uUU" = ( +/obj/structure/sign/double/barsign{ + pixel_y = 32 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/c) "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, +"uUY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"uVd" = ( +/obj/effect/decal/cleanable/dirt, /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) +"uVw" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_2" + }, +/obj/item/reagent_container/pill/happy, +/obj/item/reagent_container/pill/happy, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"uVC" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/mars, +/area/bigredv2/outside/s) +"uVH" = ( +/obj/structure/surface/table, +/obj/structure/bedsheetbin{ + pixel_y = 8; + pixel_x = 7 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) "uWo" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, /area/bigredv2/caves/eta/living) +"uWv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/caves_lambda) +"uWy" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"uWB" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) "uXW" = ( /turf/open/mars_cave/mars_cave_8, /area/bigredv2/caves_research) "uYb" = ( /turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves_sw) +"uZo" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/alien_embryo{ + pixel_x = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"uZG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/se) +"uZJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"vap" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/filtration_plant) +"vaR" = ( +/obj/structure/machinery/iv_drip, +/obj/effect/landmark/corpsespawner/chef, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) "vbi" = ( /turf/open/floor/darkpurple2/northeast, /area/bigredv2/caves/lambda/research) @@ -29582,12 +36082,57 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) +"vby" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/e) +"vbN" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -6; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"vbO" = ( +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 10; + pixel_y = 6 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/s) +"vbS" = ( +/obj/structure/flora/grass/desert/lightgrass_11, +/turf/open/mars, +/area/bigredv2/outside/nw) +"vcd" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/eta) "vct" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/mars_cave/mars_cave_5, /area/bigredv2/outside/lz2_south_cas) +"vcy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ + pixel_y = 9; + pixel_x = -15 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "vcA" = ( /obj/effect/landmark/corpsespawner/miner, /obj/effect/decal/cleanable/blood{ @@ -29597,6 +36142,13 @@ /obj/item/ammo_magazine/rifle/mar40/lmg, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) +"vdh" = ( +/obj/item/trash/cigbutt{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/virology) "vdl" = ( /obj/effect/decal/cleanable/liquid_fuel, /obj/effect/decal/warning_stripes{ @@ -29605,6 +36157,10 @@ }, /turf/open/floor/darkyellow2/west, /area/bigredv2/outside/engineering) +"vdz" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/mars_cave/mars_cave_15, +/area/bigredv2/outside/n) "vdS" = ( /obj/item/explosive/grenade/incendiary/molotov{ pixel_x = -10; @@ -29621,17 +36177,26 @@ /obj/structure/pipes/standard/tank, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"vem" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/mars, +/area/bigredv2/outside/c) +"ven" = ( +/obj/structure/machinery/botany, +/obj/item/seeds/goldappleseed, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) "vex" = ( /turf/closed/wall/wood, /area/bigredv2/outside/lz2_south_cas) -"vfo" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 9; - pixel_y = -3 +"veU" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/cigar/matchbook/brown{ + pixel_x = 7; + pixel_y = 9 }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) +/turf/open/floor, +/area/bigredv2/outside/office_complex) "vfI" = ( /turf/open/mars/mars_dirt_13, /area/bigredv2/outside/eta) @@ -29640,6 +36205,13 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, /turf/open/mars_cave/mars_cave_3, /area/bigredv2/caves/mining) +"vfW" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/wood, +/area/bigredv2/outside/library) "vgE" = ( /obj/structure/fence, /turf/open/floor/asteroidwarning/east, @@ -29651,33 +36223,31 @@ }, /turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/caves/lambda/research) -"vhw" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/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) +"vhP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/bigredv2/caves_lambda) "vin" = ( /obj/structure/bed/chair{ 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 +"viJ" = ( +/obj/structure/machinery/power/apc/no_power/west{ + name = "Xenbiology Lab APC" }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door_control{ + id = "lambda"; + name = "Lambda Lockdown"; + pixel_y = -25 }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) +/turf/open/floor/whitepurple/southwest, +/area/bigredv2/caves/lambda/xenobiology) "vjc" = ( /obj/item/tool/warning_cone{ pixel_x = -13; @@ -29685,11 +36255,31 @@ }, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/filtration_plant) +"vjR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/explosive/grenade/custom/large{ + pixel_x = 6; + pixel_y = 9 + }, +/turf/open/floor/whitepurplefull, +/area/bigredv2/outside/medical) +"vjW" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/item/stack/cable_coil/blue{ + pixel_y = 10 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "vkf" = ( /obj/effect/landmark/crap_item, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/ne) +"vkj" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) "vkv" = ( /turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/engineering) @@ -29699,10 +36289,34 @@ /obj/effect/spawner/random/tool, /turf/open/floor, /area/bigredv2/outside/cargo) +"vkL" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/admin_building) +"vkR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) "vld" = ( /obj/item/tool/warning_cone, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) +"vli" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) "vlr" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -29711,16 +36325,42 @@ /obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"vlu" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = -9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "vlA" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_y = 6 }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) -"vmm" = ( -/obj/structure/barricade/wooden, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) +"vlI" = ( +/obj/item/stack/sheet/metal{ + pixel_x = 3; + pixel_y = -11 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"vmt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/clothing/suit/armor/riot{ + pixel_y = -9; + pixel_x = -12 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"vmE" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) "vmI" = ( /obj/item/device/flashlight/lantern, /turf/open/mars_cave/mars_dirt_4, @@ -29748,6 +36388,32 @@ }, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"vna" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/w) +"vnD" = ( +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) +"vnJ" = ( +/obj/structure/bed/bedroll{ + dir = 5 + }, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"vnR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-in" + }, +/turf/open/floor/plating/platebotc, +/area/bigredv2/outside/space_port) "voz" = ( /obj/structure/machinery/camera/autoname, /turf/open/floor/wood, @@ -29775,27 +36441,97 @@ }, /turf/open/floor/delivery, /area/bigredv2/outside/eta) +"vqU" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 7 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -5 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) "vqY" = ( /turf/open/mars_cave/mars_cave_11, /area/bigredv2/caves_research) +"vrd" = ( +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_y = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "vrt" = ( /turf/open/mars/mars_dirt_14, /area/bigredv2/outside/eta) +"vrD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) "vsi" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port_lz2) +"vsz" = ( +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -6; + pixel_y = -4; + layer = 3.1 + }, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 8; + layer = 3.01; + pixel_y = 17 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) +"vsX" = ( +/obj/item/trash/semki{ + layer = 2; + pixel_x = -13; + pixel_y = 14 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/w) "vti" = ( /obj/structure/closet/crate, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/wood, /area/bigredv2/outside/dorms) +"vtk" = ( +/obj/item/trash/snack_bowl{ + pixel_x = 1; + pixel_y = -12 + }, +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/virology) "vty" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/colony{ name = "\improper Eta Lab Cell" }, /turf/open/floor/delivery, /area/bigredv2/caves/eta/xenobiology) +"vtW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/firstaid/rad/empty{ + pixel_x = -9 + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) "vuz" = ( /obj/structure/machinery/door_control{ id = "eta"; @@ -29809,6 +36545,35 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/bigredv2/caves/eta/xenobiology) +"vvn" = ( +/obj/item/stack/sheet/metal{ + pixel_x = 4 + }, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"vvx" = ( +/obj/structure/surface/table, +/obj/item/bodybag{ + pixel_y = 1; + pixel_x = -2 + }, +/obj/item/bodybag{ + pixel_y = -2; + pixel_x = 9 + }, +/obj/item/bodybag{ + pixel_y = 8; + pixel_x = -7 + }, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"vvI" = ( +/obj/item/stack/sheet/cardboard{ + pixel_x = 8; + pixel_y = -1 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) "vvL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/invuln/minecart_tracks{ @@ -29827,6 +36592,17 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"vvT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/s) +"vvU" = ( +/obj/item/trash/cigbutt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) "vxv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -29835,10 +36611,24 @@ /obj/structure/machinery/light, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) +"vxI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit{ + icon_state = "vomit_4" + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "vxQ" = ( /obj/item/tool/pickaxe/gold, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"vxS" = ( +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/mars, +/area/bigredv2/outside/n) "vyV" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/floor/plating, @@ -29847,25 +36637,58 @@ /obj/item/weapon/gun/boltaction, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"vAb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"vAo" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 16 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) "vAs" = ( /obj/structure/window/framed/solaris/reinforced/tinted, /turf/open/floor/plating, /area/bigredv2/caves/lambda/xenobiology) +"vAt" = ( +/obj/structure/machinery/power/apc/power/north{ + name = "Dormitories APC" + }, +/turf/open/floor, +/area/bigredv2/outside/dorms) +"vAI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/woodentable{ + dir = 1; + flipped = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"vBs" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/space_port_lz2) "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" +"vBG" = ( +/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"; + pixel_y = 7; + pixel_x = -5 }, /turf/open/floor/white, /area/bigredv2/outside/medical) +"vBI" = ( +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/n) "vCd" = ( /obj/structure/surface/rack, /obj/item/weapon/twohanded/lungemine{ @@ -29881,9 +36704,37 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/dark, /area/bigredv2/outside/engineering) +"vCl" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/obj/item/stack/sheet/cardboard{ + pixel_x = -9; + pixel_y = -5 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) "vCU" = ( /turf/open/mars_cave/mars_cave_16, /area/bigredv2/outside/lz2_south_cas) +"vDw" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/trash/sosjerky{ + pixel_y = 7; + pixel_x = -13 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/nw) +"vDK" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/eta) +"vDS" = ( +/obj/effect/landmark/hunter_primary, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/w) "vEF" = ( /obj/structure/surface/table, /obj/item/clothing/head/hardhat/orange{ @@ -29891,55 +36742,124 @@ }, /turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/filtration_plant) +"vEP" = ( +/obj/item/clothing/mask/breath/medical{ + pixel_y = -3; + pixel_x = -7 + }, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "vEU" = ( /obj/effect/decal/cleanable/dirt, /turf/open/mars/mars_dirt_10, /area/bigredv2/outside/s) +"vFe" = ( +/obj/structure/surface/table, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/close, +/obj/item/paper/bigred/crazy{ + pixel_x = 8; + pixel_y = 13 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"vFr" = ( +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor, +/area/bigredv2/outside/dorms) "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) +"vFB" = ( +/obj/item/trash/hotdog{ + pixel_x = -12; + pixel_y = -11 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "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) +"vGA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/southeast, +/area/bigredv2/outside/admin_building) "vGE" = ( /turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/space_port_lz2) -"vGN" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Clinic" +"vGL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, -/area/bigredv2/outside/medical) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"vGR" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/nw) "vHw" = ( /turf/closed/wall/wood, /area/bigredv2/caves/mining) +"vHB" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/carpet15_15/west, +/area/bigredv2/outside/bar) "vHU" = ( /obj/effect/landmark/hunter_primary, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/n) +"vIe" = ( +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/se) "vIQ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/c) +"vJx" = ( +/obj/item/shard, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"vKg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/s) "vKv" = ( /turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/space_port_lz2) "vLd" = ( /turf/open/floor, /area/bigred/ground/garage_workshop) +"vLg" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/obj/structure/largecrate/supply/medicine/medkits, +/obj/structure/largecrate/supply{ + layer = 3.2; + pixel_x = -2; + pixel_y = 19 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"vLs" = ( +/obj/item/trash/barcardine{ + pixel_y = 5; + pixel_x = 17 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"vMc" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "vMj" = ( /turf/open/mars_cave/mars_cave_6, /area/bigredv2/outside/lz2_west_cas) @@ -29954,10 +36874,31 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_virology) +"vNk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/s) "vNm" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_cave_5, /area/bigredv2/caves_virology) +"vND" = ( +/obj/structure/flora/grass/desert/lightgrass_10, +/turf/open/mars, +/area/bigredv2/outside/n) +"vOg" = ( +/obj/structure/window_frame/solaris, +/obj/structure/curtain, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) +"vOo" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) "vOs" = ( /obj/structure/coatrack{ pixel_x = 12 @@ -29969,12 +36910,40 @@ }, /turf/open/floor/wood, /area/bigredv2/outside/admin_building) +"vOM" = ( +/obj/item/trash/sosjerky{ + pixel_x = -12; + pixel_y = 17 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"vPr" = ( +/obj/effect/landmark/crap_item, +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/s) +"vPL" = ( +/obj/item/ammo_casing/bullet, +/turf/open/mars, +/area/bigredv2/outside/c) "vPP" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = 6 }, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) +"vPU" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = -5 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 1 + }, +/obj/item/reagent_container/food/drinks/cans/beer{ + pixel_x = 7 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) "vPZ" = ( /obj/structure/bed/chair{ dir = 8 @@ -29982,12 +36951,24 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/white, /area/bigredv2/outside/marshal_office) +"vQr" = ( +/obj/structure/machinery/power/apc/power/east, +/turf/open/floor/darkred2/east, +/area/bigredv2/caves/eta/research) +"vQF" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/darkyellowcorners2/north, +/area/bigredv2/caves/eta/living) "vQZ" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, /turf/open/mars_cave/mars_cave_9, /area/bigredv2/caves_research) +"vRb" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/mars, +/area/bigredv2/outside/n) "vRs" = ( /obj/structure/sign/safety/high_voltage, /turf/closed/wall/solaris/reinforced, @@ -30000,6 +36981,14 @@ "vRR" = ( /turf/open/mars_cave/mars_dirt_7, /area/bigredv2/caves_north) +"vRX" = ( +/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/asteroidwarning/northeast, +/area/bigredv2/caves_lambda) "vTh" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -30010,10 +36999,6 @@ /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, /turf/open/mars_cave/mars_dirt_4, @@ -30031,6 +37016,20 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"vVq" = ( +/obj/item/trash/cigbutt{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"vVt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/crowbar{ + pixel_x = -13 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "vVF" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = -5; @@ -30045,26 +37044,50 @@ /obj/structure/surface/table, /turf/open/floor/darkyellow2, /area/bigredv2/outside/engineering) -"vXp" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/asteroidwarning, +"vWt" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"vWw" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/mars, /area/bigredv2/outside/nw) +"vWG" = ( +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/space_port) +"vXt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"vXF" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "vXJ" = ( /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_lambda) +"vYp" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) "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 +"vZE" = ( +/obj/structure/bed, +/obj/item/prop/colony/usedbandage{ + dir = 9; + pixel_x = 5; + pixel_y = 15 }, -/obj/item/clothing/under/darkred, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) "waJ" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_door, /obj/effect/landmark/structure_spawner/setup/distress/xeno_door, @@ -30079,6 +37102,12 @@ /obj/item/stack/cable_coil/cut, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves/mining) +"waZ" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) "wbp" = ( /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves) @@ -30107,6 +37136,29 @@ "wcw" = ( /turf/open/gm/river, /area/bigredv2/outside/filtration_plant) +"wcx" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/spawner/random/tool{ + pixel_x = -6 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/partypopper{ + pixel_x = 10; + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"wdd" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/caves_lambda) +"wdn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/metal{ + dir = 8 + }, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) "wdM" = ( /obj/structure/platform/kutjevo/rock{ dir = 4 @@ -30119,6 +37171,25 @@ }, /turf/open/mars_cave/mars_dirt_4, /area/space) +"wdV" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_y = -8; + pixel_x = -6 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"wer" = ( +/obj/structure/surface/table, +/obj/item/clothing/suit/storage/CMB{ + pixel_x = 7; + pixel_y = 6 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) "weO" = ( /obj/structure/closet/secure_closet/medical_wall{ pixel_y = -5 @@ -30172,9 +37243,23 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) -"whi" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/filtration_cave_cas) +"wfS" = ( +/obj/item/clothing/mask/gas{ + pixel_x = 10; + pixel_y = -12 + }, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"whb" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "whw" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/woodentable, @@ -30185,6 +37270,10 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) +"whL" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) "whZ" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/asteroidwarning, @@ -30195,10 +37284,31 @@ }, /turf/open/floor/asteroidwarning/north, /area/bigred/ground/garage_workshop) +"wiJ" = ( +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + pixel_x = -2; + pixel_y = 10 + }, +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_y = 8 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "wiK" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/podhatchfloor, /area/bigredv2/outside/engineering) +"wiM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) "wjW" = ( /obj/structure/platform/shiva{ dir = 1 @@ -30211,6 +37321,14 @@ }, /turf/open/floor/darkpurple2, /area/bigredv2/caves/lambda/research) +"wkv" = ( +/obj/structure/flora/grass/desert/lightgrass_5, +/turf/open/mars, +/area/bigredv2/outside/se) +"wlr" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) "wlE" = ( /obj/item/stack/cable_coil/cut, /turf/open/mars_cave/mars_dirt_7, @@ -30222,13 +37340,32 @@ }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) +"wmm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/caves_lambda) "wmN" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidwarning, /area/bigredv2/outside/telecomm/n_cave) +"wnf" = ( +/obj/structure/surface/table, +/obj/item/explosive/grenade/flashbang{ + pixel_x = 3; + pixel_y = -7 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) "wni" = ( /turf/open/floor/darkredcorners2, /area/bigredv2/caves/eta/xenobiology) +"wnZ" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/medical) "woe" = ( /obj/effect/decal/cleanable/dirt, /turf/open/mars_cave/mars_dirt_4, @@ -30244,6 +37381,10 @@ }, /turf/open/floor/red/southeast, /area/bigredv2/outside/marshal_office) +"woP" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/w) "wpf" = ( /turf/open/mars_cave/mars_cave_19, /area/bigredv2/caves_north) @@ -30251,6 +37392,40 @@ /obj/structure/closet/radiation, /turf/open/floor/delivery, /area/bigredv2/outside/engineering) +"wpv" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"wpV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/structure/machinery/vending/cola{ + pixel_x = 8; + pixel_y = -7; + layer = 2.84 + }, +/obj/structure/largecrate/random/mini/wooden{ + pixel_x = -12; + pixel_y = -4 + }, +/obj/structure/largecrate/random/mini/wooden{ + pixel_x = -18; + pixel_y = 7 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"wql" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) +"wra" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) "wry" = ( /obj/structure/surface/table, /obj/structure/transmitter/colony_net/rotary{ @@ -30271,15 +37446,47 @@ /obj/structure/plasticflaps, /turf/open/floor/plating, /area/bigredv2/caves/mining) +"wrV" = ( +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + pixel_x = -5; + pixel_y = 2; + layer = 2.8 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/mars_cave/mars_cave_20, +/area/bigredv2/outside/nw) "wss" = ( /obj/item/tool/warning_cone{ pixel_y = 20 }, /turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/telecomm/n_cave) +"wsT" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/w) "wtj" = ( /turf/open/floor/plating, /area/bigredv2/caves/mining) +"wtu" = ( +/obj/structure/largecrate/random/barrel/green{ + pixel_x = -11; + pixel_y = 9 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/tuxedo{ + pixel_x = -5; + pixel_y = 26 + }, +/obj/item/trash/plate{ + pixel_x = -12; + pixel_y = 22 + }, +/turf/open/mars_cave/mars_cave_13, +/area/bigredv2/outside/ne) "wtC" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -30303,6 +37510,15 @@ }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) +"wtK" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/virology) +"wup" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) "wuz" = ( /obj/structure/sink{ dir = 8; @@ -30318,6 +37534,10 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"wuP" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) "wvk" = ( /obj/structure/fence, /turf/open/mars_cave/mars_cave_2, @@ -30329,6 +37549,13 @@ "wvR" = ( /turf/open/floor/delivery, /area/bigredv2/caves/lambda/virology) +"wvV" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/caves/mining) "wwT" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/solaris/reinforced, @@ -30337,6 +37564,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidwarning, /area/bigredv2/outside/c) +"wxG" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno, +/turf/open/floor, +/area/bigredv2/outside/office_complex) +"wyh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "wyF" = ( /obj/structure/surface/table, /obj/effect/spawner/random/toolbox, @@ -30347,6 +37583,19 @@ /obj/structure/cargo_container/kelland/right, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/space_port_lz2) +"wAd" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"wAy" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) "wBi" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -30364,12 +37613,26 @@ }, /turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/c) +"wBw" = ( +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) "wBK" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 }, /turf/open/floor/wood, /area/bigredv2/outside/library) +"wBP" = ( +/obj/structure/surface/table, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ + pixel_x = 3 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) "wCo" = ( /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) @@ -30377,6 +37640,18 @@ /obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/carpet, /area/bigredv2/caves/lambda/breakroom) +"wCU" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic"; + icon_state = "door_open"; + density = 0 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) "wDa" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_x = 6 @@ -30387,12 +37662,37 @@ }, /turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) +"wDQ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/c) "wET" = ( /obj/structure/machinery/light{ dir = 8 }, /turf/open/floor/wood, /area/bigredv2/outside/library) +"wFu" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 1 + }, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = -7 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/reagent_container/food/drinks/cans/tonic{ + pixel_x = 7 + }, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/general_store) +"wFv" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/item/reagent_container/food/drinks/bottle/beer/craft{ + pixel_x = 7; + pixel_y = -7 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "wFL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/sign/safety/hazard{ @@ -30409,34 +37709,16 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/wood, /area/bigredv2/caves/eta/living) +"wFW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/grimy, +/area/bigredv2/outside/dorms) "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 - }, -/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/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, -/area/bigredv2/outside/c) "wHg" = ( /obj/effect/landmark/nightmare{ insert_tag = "lz1north_mining" @@ -30463,21 +37745,48 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/bigredv2/outside/library) -"wIj" = ( +"wHT" = ( +/obj/structure/flora/grass/desert/lightgrass_8, +/turf/open/mars, +/area/bigredv2/outside/nw) +"wHV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/e) +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor, +/area/bigredv2/outside/cargo) +"wIm" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) "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) +"wIE" = ( +/obj/effect/landmark/corpsespawner/scientist, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/eta) +"wIR" = ( +/obj/item/ammo_casing/shell, +/turf/open/floor/whiteblue/north, +/area/bigredv2/outside/medical) "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) +"wJE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/grass/desert/lightgrass_3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/w) "wKf" = ( /obj/structure/surface/table, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -30493,6 +37802,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/bigredv2/outside/library) +"wKK" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/radio{ + pixel_x = 10 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot{ + pixel_y = 1; + pixel_x = -6 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/dorms) +"wLw" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft" + }, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) "wLD" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/plating/platingdmg3/west, @@ -30510,6 +37836,11 @@ }, /turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/filtration_plant) +"wMn" = ( +/obj/item/ammo_casing/bullet, +/obj/effect/decal/cleanable/blood/xtracks, +/turf/open/floor/whitegreencorner/east, +/area/bigredv2/outside/medical) "wMp" = ( /turf/open/mars_cave/mars_cave_9, /area/bigredv2/caves_north) @@ -30527,16 +37858,32 @@ /obj/structure/largecrate/random/secure, /turf/open/floor, /area/bigred/ground/garage_workshop) +"wNe" = ( +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + pixel_x = -2; + pixel_y = 10 + }, +/obj/item/prop/colony/usedbandage, +/obj/item/prop/colony/usedbandage{ + dir = 4; + pixel_x = 5; + pixel_y = 26 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/ash{ + pixel_y = 19 + }, +/turf/open/mars_cave/mars_cave_9, +/area/bigredv2/outside/nw) "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 @@ -30545,6 +37892,11 @@ /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/floor/dark, /area/bigredv2/caves/eta/xenobiology) +"wPC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor, +/area/bigredv2/outside/general_offices) "wQa" = ( /obj/structure/surface/table, /obj/item/reagent_container/food/drinks/cans/beer{ @@ -30553,6 +37905,17 @@ }, /turf/open/mars_cave/mars_cave_16, /area/bigredv2/caves/mining) +"wQk" = ( +/obj/structure/surface/table, +/obj/item/storage/box/gloves{ + pixel_y = 8 + }, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"wQB" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) "wQC" = ( /turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves_lambda) @@ -30562,6 +37925,14 @@ }, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/admin_building) +"wRo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -8; + pixel_y = -5 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "wRH" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/flashlight, @@ -30574,6 +37945,18 @@ }, /turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/oob) +"wUc" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/nw) +"wUi" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/w) "wUo" = ( /obj/item/stack/sheet/wood{ pixel_y = -8 @@ -30604,6 +37987,14 @@ "wVQ" = ( /turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) +"wWn" = ( +/obj/item/shard, +/obj/item/stack/sheet/wood{ + layer = 2.7; + pixel_y = 8 + }, +/turf/open/floor/whiteblue/northwest, +/area/bigredv2/outside/medical) "wWE" = ( /turf/open/mars_cave/mars_cave_19, /area/bigredv2/outside/n) @@ -30616,6 +38007,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"wWX" = ( +/obj/structure/surface/table, +/obj/item/storage/firstaid/regular{ + pixel_y = 3; + pixel_x = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "wXg" = ( /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/lz1_north_cas) @@ -30625,12 +38025,20 @@ "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) +"wXY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "viro"; + name = "Virology Lockdown" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) "wYE" = ( /obj/structure/prop/server_equipment/yutani_server{ density = 0; @@ -30645,10 +38053,28 @@ "wZC" = ( /turf/open/mars/mars_dirt_11, /area/bigredv2/outside/eta) +"wZI" = ( +/obj/item/trash/syndi_cakes{ + pixel_y = -11; + pixel_x = 9 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) "wZP" = ( /obj/structure/cargo_container/arious/rightmid, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/space_port_lz2) +"wZW" = ( +/obj/structure/flora/bush/desert{ + icon_state = "tree_3" + }, +/turf/open/mars/mars_dirt_14, +/area/bigredv2/outside/c) +"xaC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/e) "xaE" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; @@ -30659,10 +38085,20 @@ "xaH" = ( /turf/closed/wall/wood, /area/bigredv2/caves_sw) +"xaW" = ( +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) "xbV" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars_cave/mars_cave_14, /area/bigredv2/outside/lz1_north_cas) +"xbZ" = ( +/turf/open/floor/darkblue2, +/area/bigredv2/outside/admin_building) "xck" = ( /obj/effect/decal/cleanable/blood/drip{ pixel_y = 6 @@ -30689,6 +38125,15 @@ }, /turf/open/floor/plating/warnplate/east, /area/bigredv2/outside/telecomm/warehouse) +"xdc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"xdV" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/c) "xej" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -30700,6 +38145,17 @@ /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/filtration_plant) +"xeX" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/virology) +"xfp" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/bigredv2/caves_lambda) "xfx" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A heavy duty power cable for high voltage applications"; @@ -30710,6 +38166,14 @@ }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) +"xfM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) "xfN" = ( /obj/structure/platform_decoration/shiva{ dir = 1 @@ -30740,9 +38204,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidwarning, /area/bigredv2/outside/ne) +"xgr" = ( +/obj/structure/bed/chair{ + dir = 4; + layer = 3.06 + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/ne) "xgw" = ( /turf/open/mars_cave/mars_cave_9, /area/bigredv2/outside/lz2_south_cas) +"xhn" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/eta) "xhy" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -30759,6 +38234,29 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"xio" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair/wood/normal{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"xiP" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/e) +"xje" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"xjR" = ( +/obj/item/bodybag/cryobag, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) "xjU" = ( /obj/structure/cargo_container/arious/right, /turf/open/mars, @@ -30787,6 +38285,28 @@ }, /turf/open/mars_cave/mars_cave_13, /area/bigredv2/caves/mining) +"xlD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/pistachios{ + pixel_y = -21; + pixel_x = -6 + }, +/obj/item/stack/sheet/cardboard{ + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"xlT" = ( +/obj/structure/barricade/deployable, +/turf/open/mars, +/area/bigredv2/outside/c) +"xmh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-in" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) "xmy" = ( /turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/lz1_telecomm_cas) @@ -30800,25 +38320,116 @@ }, /turf/open/mars_cave/mars_cave_2, /area/space) +"xnf" = ( +/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/largecrate/random/mini{ + pixel_x = 5; + pixel_y = -8 + }, +/obj/structure/largecrate/random/mini{ + pixel_x = 2; + pixel_y = 9 + }, +/obj/structure/largecrate/random/mini{ + pixel_x = 9; + pixel_y = 6; + layer = 2.95 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"xnm" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/eta) +"xoc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/se) +"xoy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) "xpb" = ( /turf/open/floor/asteroidwarning/northeast, /area/bigredv2/outside/lz2_south_cas) "xpl" = ( /turf/open/floor/dark, /area/bigredv2/caves/eta/research) +"xpu" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"xpE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/white, +/area/bigredv2/outside/medical) "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) +"xqb" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) "xqf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor, /area/bigredv2/outside/general_offices) +"xqh" = ( +/obj/structure/surface/table, +/obj/item/storage/fancy/vials/random{ + pixel_y = -5; + pixel_x = -3 + }, +/turf/open/floor/whitepurplecorner/north, +/area/bigredv2/outside/medical) +"xqy" = ( +/obj/effect/spawner/random/tool{ + pixel_x = -11; + pixel_y = -9 + }, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"xqW" = ( +/obj/structure/prop/invuln/rope{ + pixel_x = -5; + pixel_y = 26 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/prop/colony/usedbandage{ + dir = 4; + pixel_x = 10; + pixel_y = -4 + }, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/n) +"xrc" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"xro" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/ne) "xrp" = ( /obj/structure/largecrate/guns/merc{ name = "\improper dodgy crate" @@ -30838,6 +38449,18 @@ /obj/effect/landmark/corpsespawner/miner, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) +"xsn" = ( +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/c) +"xsy" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/dorms) +"xsH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/s) "xsX" = ( /obj/structure/bed/chair{ dir = 8; @@ -30861,6 +38484,29 @@ }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/s) +"xul" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/trash/cigbutt{ + icon_state = "ucigbutt"; + pixel_x = 2; + pixel_y = 8 + }, +/obj/structure/bed/chair{ + dir = 4; + layer = 3.06 + }, +/turf/open/mars, +/area/bigredv2/outside/nw) "xuP" = ( /obj/item/trash/cigbutt/cigarbutt{ pixel_x = 16; @@ -30880,6 +38526,19 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_east) +"xuV" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/whitepurple/west, +/area/bigredv2/caves/lambda/research) +"xvW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) "xwo" = ( /obj/structure/disposalpipe/junction, /turf/open/mars_cave/mars_cave_2, @@ -30896,6 +38555,18 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"xxx" = ( +/obj/structure/flora/grass/desert/lightgrass_4, +/turf/open/mars, +/area/bigredv2/outside/se) +"xxN" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) "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..."; @@ -30916,10 +38587,6 @@ /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, @@ -30939,25 +38606,48 @@ /obj/item/weapon/twohanded/folded_metal_chair, /turf/open/mars_cave/mars_cave_15, /area/bigredv2/caves/mining) -"xAX" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/engineering) +"xAx" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-in" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) +"xAU" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/nw) "xBn" = ( /obj/structure/platform{ dir = 4 }, /turf/open/floor/dark, /area/bigredv2/outside/admin_building) +"xBo" = ( +/obj/structure/barricade/metal{ + dir = 1 + }, +/turf/open/floor/white, +/area/bigredv2/outside/admin_building) "xBr" = ( /obj/item/ore{ pixel_x = 9 }, /turf/open/mars_cave/mars_dirt_6, /area/bigredv2/caves/mining) +"xBv" = ( +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/e) "xBS" = ( /turf/open/mars_cave/mars_cave_14, /area/bigredv2/outside/lz1_north_cas) +"xCX" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) "xDO" = ( /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/oob) @@ -30969,10 +38659,57 @@ "xFZ" = ( /turf/open/mars_cave, /area/bigredv2/caves_lambda) +"xGl" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 4 + }, +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"xGp" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"xHb" = ( +/obj/item/ammo_casing/bullet, +/obj/item/weapon/gun/pistol/holdout{ + pixel_x = -8; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"xHr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"xHH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"xHX" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/e) "xIo" = ( /obj/structure/window/framed/solaris/reinforced/hull, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/oob) +"xIt" = ( +/obj/item/trash/popcorn{ + pixel_y = 9 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/nw) "xIv" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 8; @@ -30984,10 +38721,42 @@ /obj/item/clothing/mask/gas, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/filtration_plant) +"xIB" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/virology) "xIP" = ( /obj/structure/surface/table, /turf/open/floor, /area/bigredv2/outside/lz2_south_cas) +"xIY" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/trashcart{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -3; + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/bar) +"xJn" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/nw) +"xJp" = ( +/obj/structure/flora/grass/desert/lightgrass_6, +/turf/open/mars, +/area/bigredv2/outside/se) "xJC" = ( /obj/item/ore, /turf/open/mars, @@ -31004,6 +38773,25 @@ }, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) +"xJW" = ( +/obj/structure/machinery/reagentgrinder{ + pixel_x = 7 + }, +/obj/structure/surface/table/woodentable, +/obj/item/weapon/gun/shotgun/double/sawn{ + pixel_x = 1; + pixel_y = 10 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"xJX" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/space_port_lz2) +"xJY" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/plating/platingdmg1, +/area/bigredv2/outside/office_complex) "xKb" = ( /obj/structure/prop/server_equipment/yutani_server, /turf/open/floor/greengrid, @@ -31015,6 +38803,29 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/admin_building) +"xLd" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 27; + pixel_y = 9 + }, +/turf/closed/wall/solaris, +/area/bigredv2/outside/bar) +"xLo" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison"; + icon_state = "door_open" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"xLr" = ( +/turf/open/asphalt/cement/cement1/north, +/area/bigredv2/outside/space_port) +"xLv" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) "xLz" = ( /obj/effect/landmark/nightmare{ insert_tag = "lz1containers_scramble" @@ -31039,6 +38850,11 @@ /obj/structure/machinery/light, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"xMz" = ( +/obj/structure/platform_decoration, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/telecomm/n_cave) "xMT" = ( /obj/structure/closet, /obj/item/explosive/grenade/high_explosive/frag, @@ -31051,12 +38867,27 @@ /obj/item/reagent_container/food/snacks/packaged_burger, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"xNa" = ( +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) +"xNI" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/c) "xNL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, /turf/open/floor/dark, /area/bigredv2/caves/lambda/research) +"xOg" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/se) +"xOi" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) "xOk" = ( /obj/effect/landmark/nightmare{ insert_tag = "cargo_containers" @@ -31067,6 +38898,12 @@ /obj/structure/barricade/handrail/wire, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/c) +"xPT" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) "xQb" = ( /obj/structure/pipes/vents/pump/on, /obj/effect/decal/cleanable/dirt, @@ -31077,6 +38914,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) +"xQQ" = ( +/obj/item/weapon/shield/riot{ + pixel_x = -3; + pixel_y = -7 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"xRb" = ( +/obj/item/weapon/gun/revolver/m44{ + pixel_x = 9; + pixel_y = -14 + }, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/c) "xRl" = ( /obj/item/weapon/gun/pistol/b92fs{ pixel_x = 13; @@ -31101,13 +38952,13 @@ /obj/structure/closet/medical_wall, /turf/closed/wall/solaris/reinforced, /area/bigredv2/caves/mining) -"xTV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"xUc" = ( +/turf/closed/wall/solaris{ + damage = 2677; + damage_overlay = 8; + current_bulletholes = 3 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/lambda_cave_cas) +/area/bigredv2/outside/medical) "xUo" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, @@ -31117,6 +38968,19 @@ /obj/effect/landmark/crap_item, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves/mining) +"xUX" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"xVc" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/bigredv2/outside/nw) +"xWb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-in" + }, +/turf/open/floor/plating/platebotc, +/area/bigredv2/outside/space_port) "xWl" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ dir = 4; @@ -31144,11 +39008,6 @@ }, /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 @@ -31168,13 +39027,6 @@ }, /turf/open/floor/plating/warnplate/west, /area/bigredv2/outside/telecomm/warehouse) -"xWV" = ( -/obj/structure/machinery/power/apc/power/north, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/caves/mining) "xXg" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib1" @@ -31193,11 +39045,21 @@ /obj/structure/prop/invuln/minecart_tracks/bumper, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/caves_sw) -"xXT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor, -/area/bigredv2/outside/general_offices) +"xXV" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + id = "filtration"; + name = "Filtration Lockdown" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) +"xYa" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/eta) "xYc" = ( /obj/structure/prop/invuln/minecart_tracks{ desc = "A heavy duty power cable for high voltage applications"; @@ -31208,6 +39070,27 @@ }, /turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves/mining) +"xYw" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/obj/item/trash/pistachios{ + pixel_x = -3; + pixel_y = 11 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/w) +"xYy" = ( +/obj/structure/surface/table, +/obj/item/ammo_magazine/shotgun/slugs, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"xYS" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, +/area/bigredv2/outside/virology) "xZf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -31228,6 +39111,10 @@ "yar" = ( /turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) +"yaM" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor, +/area/bigredv2/outside/cargo) "ybk" = ( /turf/open/mars_cave/mars_cave_17, /area/bigredv2/caves_research) @@ -31237,6 +39124,11 @@ }, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"ych" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/ammo_casing/bullet, +/turf/open/floor, +/area/bigredv2/outside/office_complex) "ycM" = ( /turf/open/mars_cave/mars_cave_7, /area/bigredv2/caves/lambda/xenobiology) @@ -31245,6 +39137,13 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/dark, /area/bigredv2/caves/eta/storage) +"ycW" = ( +/obj/item/tool/match{ + pixel_x = 8; + pixel_y = 9 + }, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/ne) "yda" = ( /obj/effect/decal/warning_stripes{ icon_state = "N" @@ -31267,12 +39166,32 @@ "ydn" = ( /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/eta) -"yej" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"ydE" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Command Complex"; + density = 0; + icon_state = "door_open" }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"ydO" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/wood, +/area/bigredv2/outside/bar) +"yey" = ( +/obj/structure/flora/grass/desert/lightgrass_1, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/space_port_lz2) +"yfg" = ( +/obj/structure/closet/secure_closet/detective, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/marshal_office) "yfs" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -31294,14 +39213,10 @@ /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/freezerfloor, -/area/bigredv2/outside/general_offices) +"yfY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/e) "ygP" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -31346,6 +39261,10 @@ }, /turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) +"yiK" = ( +/obj/structure/flora/grass/desert/lightgrass_12, +/turf/open/mars, +/area/bigredv2/outside/w) "yjU" = ( /obj/item/weapon/broken_bottle, /turf/open/floor/plating/platingdmg3/west, @@ -31356,6 +39275,23 @@ }, /turf/open/gm/river, /area/bigredv2/outside/engineering) +"ykb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkred2/north, +/area/bigredv2/outside/admin_building) +"ykv" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-in" + }, +/turf/open/floor/plating/platebot, +/area/bigredv2/outside/space_port) +"ykB" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/s) "ykR" = ( /turf/closed/wall/mineral/uranium, /area/bigredv2/outside/engineering) @@ -31384,6 +39320,20 @@ /obj/item/ammo_magazine/rifle/nsg23/extended, /turf/open/floor/plating/platingdmg3/west, /area/bigredv2/caves/mining) +"ylx" = ( +/obj/item/clothing/suit/storage/CMB{ + pixel_x = -6; + pixel_y = -10 + }, +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"ylR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) "ymi" = ( /obj/item/tool/wet_sign, /turf/open/floor/plating/platingdmg3/west, @@ -34029,7 +41979,7 @@ adf aed aeD ade -afK +pfG acQ aas aas @@ -35371,10 +43321,10 @@ aFs aFs aFt aHZ +uQZ aFv -aFv -aGr -aHg +vtk +oJZ aoD aMZ aNc @@ -35561,7 +43511,7 @@ vLd qsE qsE qsE -uJF +fRr upE hBD lcu @@ -35591,7 +43541,7 @@ aFt aFw aFw aFt -aLT +fxa aoD aNa aNc @@ -35803,12 +43753,12 @@ aao aao aFt aFt -aHg -aIa -aJg -aJg -aJg -aLU +qsT +twt +gLi +gLi +gLi +dZX aPt aNb aOr @@ -36020,12 +43970,12 @@ aao aoD aFu aFt -aHh -aIb -aHj -aHj -aHj -aLV +xIB +ecZ +dYv +bwe +dYv +dEd aoD aNc aNc @@ -36237,17 +44187,17 @@ aoD aoD aFv aGr -aHh -aIb -aHj -aKg -aHj -aLW +xIB +mnw +bwe +pXp +dYv +nRw aoD aNd aOs aoD -aQC +qGd aRH aSu apG @@ -36452,14 +44402,14 @@ aao aao aeI aoD -aFv +kvD aGr -aHh -aIb -aHj -aHj -aHj -aLX +xIB +mnw +dYv +dYv +dYv +fhJ aoD aoD aoD @@ -36671,12 +44621,12 @@ aeI aoD aFv aGr -aHh -aIb -aHj -aJh -aJh -aHj +qTN +mnw +dYv +tcV +dvq +nRw aoD aNe aNc @@ -36876,24 +44826,24 @@ aao aao aao aao +vGR +iKU +jYp +dLJ aeI aeI -aeI -aeI -aeI -aeI -aeI +jHK aeI aoD aoD aFw aFt -aHh -aIb -lQU +xIB +mnw +wtK aFt aFt -aHh +qDH aoD aNf aNc @@ -37093,10 +45043,10 @@ aeI aeI aao aao -aeI -aeI -aeI -aeI +jIV +jXw +etg +hkS aeI aeI aeI @@ -37105,12 +45055,12 @@ aeI aoD aFt aFt -aHh -aIb -lQU +rXM +mnw +nRw aFt aFu -qVw +bYF aoD aNg aNc @@ -37311,10 +45261,10 @@ aeI aeI aeI aeI +lDG +mvk aeI -aeI -aeI -aeI +mZh aeI aeI aeI @@ -37322,9 +45272,9 @@ aeI aoD aFt aFt -aHh -aIb -aJi +xeX +mnw +tBl aHZ aFv aLY @@ -37523,7 +45473,7 @@ aao aeI aeI aeI -aeI +wHT aeI aeI aeI @@ -37539,9 +45489,9 @@ aoD aoD aFt aFt -aHh -aIb -lQU +xIB +mnw +vdh aHZ aFv aFv @@ -37746,7 +45696,7 @@ aeI aeI aeI aeI -aeI +jrW aeI aeI aeI @@ -37756,11 +45706,11 @@ aeI aoD aFt aFt -aHh -aIb -lQU +xIB +xHH +wtK aHZ -aFv +jeJ aFv aoD aNi @@ -37953,7 +45903,7 @@ qsE qsE aao aao -aeI +wHT aeI aeI aeI @@ -37963,7 +45913,7 @@ ahO aeI aeI aeI -aeI +uAX aeI aeI aeI @@ -37973,11 +45923,11 @@ aeI aoD aFt aFt -aHh -aIb -lQU +xIB +mnw +wtK aHZ -aFv +uLl aFv aoD aNi @@ -38185,15 +46135,15 @@ aeI aiz aog ahO -aeI +gyb aeI aoD aFt -aGs -aHj -aIb -aHj -aJj +uDx +dYv +mnw +dYv +xYS aHZ aFv aoD @@ -38407,9 +46357,9 @@ aog aoD aFt aoD -grU -aIg -hTO +pNi +wXY +imc aoD aHZ aFv @@ -38593,40 +46543,40 @@ aao aao aeI aeI -aeI -viN -ajx -ajx -aoN -ajx -vXp +fWH +mcO +hby +iFr +wra +hby +meb oVq aeI +jHK aeI -aeI -aoO -aiw -aqp -aqp -aqp -aiw -aqp -aqp -aiw -aiw -aiw -aiw -aiw -aqp -aiw -aqp -aDw +qOC +hby +wra +wra +wra +lkf +wra +wra +lOP +hby +hby +hby +nXD +wra +hby +wra +ulJ aoD aoD aoD -aHj -aIb -aHj +hPa +xpu +bwe aoD aoD aoD @@ -38811,39 +46761,39 @@ aeI aeI aeI aeI -auF -ajx -aoN -ajx -ajx -ahT +lYP +lZZ +iGp +lZZ +klS +tGI aeI aeI aeI aeI -ajy -ajx -aoN -akd -akd -akd -aiy -aoN -ajx -amc -aix -aix -aix -aix -aix -aix -aDx -aDw +siK +lZZ +iGp +iEN +iGp +iGp +lZZ +iGp +lZZ +tlx +kbX +nkn +kbX +kbX +kbX +kbX +edk +ulJ ahP aoD -grU -aIg -grU +tCL +eKS +tCL aoD aln aoD @@ -39008,60 +46958,60 @@ aah abu aaH ace +sIT +pdI +lkt +skZ +skZ +sIT +pdI +lkt aah aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah +koI +nOl +rIv aeG aae ahR aeI +gii aeI aeI -aeI -aeI -ajy -ajx -ajx -ahR +jHK +cSl +lZZ +lZZ +gfo aeI aeI aeI aeI aiz -ajy -ajx -ahR -ahP -aqJ -ahP +siK +lZZ +hUu +pEy +cui +pEy +pEy +lZZ +rev +siG +vli +lZZ +qEE +lZZ +hUu +lZZ +siG +hEr ahP -ajy -ajx -ajY -ajx -ajx -ajx -ajx -ajx -ajx -ajY -akK -ahP -auF -ajx -ajY -ajx -ahT +xVc +lZZ +qAg +lZZ +rQu aln aEu aEu @@ -39225,19 +47175,19 @@ aah abv aaI acf +lcf +bMJ +pAd +skZ +skZ +jmQ +lrf +mSz +dbO aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah +rIx +iuI +hyO aeG aae ahR @@ -39246,38 +47196,38 @@ aeI aeI aeI aeI -ajy -aoN -aoN -ahR -aeI +eZb +iGp +iGp +gfo aeI aeI aeI +gii aiA -ajy -aoN -akK +siK +iGp +ylR aqJ aoO aiw -aiw -ajx -ajx -ajY -ajx -ajx -ajx -ajx -ajx -ajx -aDz -aEv +ahQ +lYP +wIm +lBQ +pEy +pEy +pEy +sPw +pEy +lZZ +vAb +ivN ahP ahP -ajy -ajY -ahR +eZD +siG +gfo ahP ama aeI @@ -39290,27 +47240,27 @@ aEu aQF aQG aEu -aVF -aWk -aWk -aWk -aWk -aWk -aVI -aWk -aWk -aWk -aVI -aWk -aWk -aVI -aWk -aWk -iHe -iHe -vKv -vKv -vKv +hgP +hlH +jou +hlH +lRv +hlH +gYR +hlH +hlH +hlH +gYR +hJp +hlH +wJE +hlH +hlH +ohl +qBF +qBF +eEp +skt eWd bhA bie @@ -39442,39 +47392,39 @@ aah abw aaJ acg +xWb +rwb +vnR +skZ +skZ +xWb +rwb +vnR aah aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aah +iEv +iuI +vWG aeG aae ahR ahO aeI +uAX aeI aeI -aeI -ajy -aoN -ajx -ahR -aeI +siK +iGp +hUu +gfo +gii aeI aeI aeI aiA -ajz -ajx -akK +mbY +qEE +hEr ahP ajy anp @@ -39487,16 +47437,16 @@ anp anp anp gri -ajx -ajY -akK -ahP +mbY +siG +hEr +nEz ahP -ajy -ajY -ahR +ptt +siG +gfo aln -aeI +qEz aeI aeI aEu @@ -39507,27 +47457,27 @@ 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 +gJF +jzO +sKK +ewo +ewo +sKK +ewo +ewo +sKK +jfc +ewo +xYw +vna +jzO +jzO +jzO +mYo +eJp +pBX +pBX +bJZ eWd bhv bie @@ -39661,37 +47611,37 @@ aah ach aah aah +dbO +skZ +skZ +dbO aah aah aah aah -aah -aah -aah -aah -aah -aah -aah +iEv +oLf +vWG aeG aae ahR -ahP +hJk ahO aeI aeI -aeI -ajy -ajx -ajx -akK -aeI +eVb +lQh +lZZ +lZZ +xdc aeI aeI +nzX aeI aiA -ajy -ajx -akK +siK +lZZ +hEr aln ajy anp @@ -39704,14 +47654,14 @@ azn avT avT anp -ajx -ajY -ahR +siK +siG +uDu ahP ahP -ajy -ajY -ahR +siK +ooJ +qpZ aln aeI aeI @@ -39724,26 +47674,26 @@ aEu aSB aSB aSB -aVH -beQ -aSB +kEI +wsT +vsX aSB aSB aYE aYE aYE -aYE -aYE +rCH +jBc aSB -aVG -bdZ -bdZ -bdZ -beu +mQY +jzO +jzO +jzO +vDS woe tVp tVp -tVp +eRN tVp bgX bhw @@ -39877,40 +47827,40 @@ aah aah ach aah +gKY +cSK +pMr +skZ +ykv +myl aah aah aah -aah -aah -aah -aah -aah -aah -aah -aah -aah +iEv +iuI +vWG aeG aae -ahR +ahT ahP ahP ahO ahi aeI -ajy -ajx -ajx -ahR +cCZ +iGp +kRB +raE aeI aeI aeI aeI aiA -ajy -ajx -ahR -aln -ajy +siK +lZZ +gfo +udn +wQB bFw xWR xWR @@ -39921,14 +47871,14 @@ azo aAq aAZ anp -ajx -ajY -ajx -aiw -aiw -aHl -ajY -ahR +siK +siG +qEE +hby +hby +rev +siG +hEr aln aeI aoO @@ -39940,10 +47890,10 @@ aEu aEu aEu aEu -aWk -aUQ -bdZ -aWk +aXY +kPE +lsI +fxj aWk aWk aWk @@ -39952,11 +47902,11 @@ aWk aXY aYF bbJ -aVG -bdZ -aUQ -bdZ -bev +mQY +qMG +vna +jlJ +rvU woe tVp wbD @@ -40094,38 +48044,38 @@ aah aah ach aah +bHk +ftO +skZ +pMr +bHk +ftO aah aah aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -aeG +iJs +iuI +fkV +pKS ahK -ajx -aiw -aiw -aiw -aiw -aiw -ajx -ajx -ajx -ajx -aiw -aiw -aiw -aqp -aqp -ajx -ajx -akK +dkl +ifo +hby +wra +hby +nXD +lZZ +vli +lZZ +lZZ +gaY +hby +nXD +qZx +wra +hUu +lZZ +hEr aln ajy bFw @@ -40138,14 +48088,14 @@ avT avT avT anp -ajx -aDA -alm -alm -alm -aHm -aIi -ahT +jBl +okJ +evQ +dUs +dUs +tZd +sgZ +xJn aln aeI ajy @@ -40169,11 +48119,11 @@ asK beQ aYF aYF -aVG -bdZ -aUQ -bdZ -bev +mQY +jzO +vna +jzO +rvU woe tVp tVp @@ -40311,38 +48261,38 @@ aah aah ach aah -aah -aah -aah -aah -aah -aah +xmh +rLJ +skZ +skZ +xmh +rLJ aah aMC aah -aah -aah -aah -agr +qYX +iuI +oLf +jkb fSJ -aix -aix -aix -aix -ajX -ajx -ajx -ajx -ajx -ajx -ajx -aoN -ajx -aoN -aoN -ajx -aoN -ahR +jsY +kbX +kbX +kbX +jpk +lZZ +klS +lZZ +lZZ +lZZ +klS +iGp +lZZ +iGp +iGp +lZZ +iGp +mkA aln ajy bFw @@ -40355,7 +48305,7 @@ avT avT avT anp -ahR +ahQ ahV ahV ahV @@ -40364,7 +48314,7 @@ ahP ahP ahP ama -aeI +vWw ajz apt aNk @@ -40385,12 +48335,12 @@ aXH asK beQ aYF -aYF -aVG -bdZ -aUQ -bdZ -bev +pGp +mQY +jzO +vna +jzO +rvU tVp aao aao @@ -40530,40 +48480,40 @@ ach aah acx aah +skZ +skZ aah aah aah aah aah -aah -aah -acx -aah -aah -aeG +iTZ +hZE +xLr +tDE ahK -ajx -aiy -aiy -ajx -ajY -ajx -aiy -aiy -aiy -aiy -aiy -aiy -aiy -aiy -aiy -aiy -akd -atm +enb +wIm +pEy +lZZ +siG +iGp +pEy +pEy +pEy +pEy +pEy +pEy +cUt +myK +pEy +pEy +cui +rzI aln -ajy +caL bFw -ccI +tWv xcz dws aya @@ -40574,13 +48524,13 @@ aAZ anp ahR aeI -aeI +uAX ahi aiB ahV ama aeI -aeI +jrW aeI ajz apt @@ -40603,11 +48553,11 @@ asK beQ aYF aYF -bcq -bdZ -bdZ -bdZ -bev +ozZ +jzO +jzO +jzO +rvU tVp tVp aao @@ -40632,9 +48582,9 @@ qcQ tVp tVp tVp -bgX -eWd -dAX +qet +mVp +mqK tVp qcQ tVp @@ -40745,12 +48695,12 @@ aaw aah ach aah -aah -aah -aah -aah -aah -aah +gKY +myl +skZ +skZ +gKY +myl aah aah aah @@ -40759,25 +48709,25 @@ aah aah aeG aae -ahU -ahP -ahP -ajy -ajY -ahR -ahP -ahP -ahP -ahP +tFT ahP ahP +iZp +siG +sll +sMP +nbL ahP +dGz ahP ahP +cFE ahP ahP +nEz ahP ahP +uAV ajy anp avT @@ -40796,7 +48746,7 @@ aeI aeI aeI aeI -aeI +vbS aeI aeI ajz @@ -40820,12 +48770,12 @@ asK beQ bbb aYF -aVG -bdZ -bdZ -bdZ -bev -tVp +mQY +jzO +jzO +jzO +rvU +snZ tVp jDo tVp @@ -40849,9 +48799,9 @@ tVp tVp qcQ tVp -bgX -eWd -dAX +iAL +mic +xJX tVp tVp tVp @@ -40953,7 +48903,7 @@ aae aax aaO aaP -abe +nnd abn aby wry @@ -40962,12 +48912,12 @@ aaw aca ach aah -aah -aah -aah -aah -aah -aah +bHk +ftO +skZ +skZ +bHk +ier aah aah aah @@ -40978,24 +48928,24 @@ aeG aae ahR ahP -ahP -ajy -ajY -ahR -ahP -ahP -ahP -ahP +dme +mbY +siG +gfo +ikm +vLs +tNO ahP ahP ahP +dEQ ahP ard +dme ahP ahP ahP -ahP -ajy +auF anp avU avT @@ -41010,7 +48960,7 @@ ahR aeI aeI aeI -aeI +fWH aeI aeI aeI @@ -41035,15 +48985,15 @@ aXH aXH asK beQ -aYF +yiK bbc -aVG -bdZ -bdZ -bdZ -beQ -tVp +mQY +bjT +jzO +jzO +woP tVp +buk tVp tVp tVp @@ -41066,9 +49016,9 @@ quX quX axX tVp -bgX -eWd -dAX +iAL +yey +qKK tVp tVp tVp @@ -41179,40 +49129,40 @@ abR aah ach aah +xmh +ryQ +skZ +skZ +bUy +edO aah -acB -aah -aah -aah -aah -aah -aah -aah +dbO +dbO aeF afg afg adl aae -ahR +pbn ahV ahP -ajy -ajY -ajx -aiw -aiw -aiw -aiw -aiw -aiw -aiw -aiw -aiw -aiw -aiw -aiw -aiw -ajx +siK +siG +iGp +hby +hby +keN +lOP +hby +hby +hby +vmE +hby +hby +hby +hby +hby +uUM axv avT avT @@ -41226,13 +49176,13 @@ anp ahR aeI aeI +mZh aeI aeI aeI aeI aeI -aeI -aeI +fWH aLZ aoH aNl @@ -41254,11 +49204,11 @@ asK beQ bbc aSB -aVG -bdZ -bdZ -bdZ -beQ +bLO +jzO +jzO +jzO +sym tVp tVp tVp @@ -41282,17 +49232,17 @@ azb vkv kVT azb -vKv -eWd -eWd -eWd -vKv -vKv -vKv -vKv -vKv -vKv -vKv +qet +tCn +gQM +mic +mVp +vBs +mVp +mVp +mVp +mVp +mqK qzO cHn cHn @@ -41398,38 +49348,38 @@ ach aah aah aah +skZ +skZ aah aah aah -aah -aah -aah -aah +dbO +dbO aeG -afh +pCk afM agv -ahg -ahW +tdC +ljS ahX aiA -ajy -ajY -ajx -ajx -ajx -ajx -ajx -ajx -ajx -ajx -ajx -ajx -ajx -ajx -ajx -ajx -ajx +siK +siG +lZZ +hUu +rev +lZZ +lZZ +lZZ +lZZ +qEE +lZZ +hUu +lZZ +lZZ +lZZ +lZZ +gfo axv avT avT @@ -41441,7 +49391,7 @@ avT avT anp ahR -aeI +nzX aeI aeI aeI @@ -41470,13 +49420,13 @@ aXH asK bdZ aWk -swk -aUQ -aUQ -aUQ -aUQ -bdZ -tUY +wUi +kEI +mFm +vna +vna +sym +hTY vKv vKv vKv @@ -41499,17 +49449,17 @@ azb hhK nVq bqf -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd -eWd +eKY +tCn +mic +mic +tCn +tCn +tCn +tCn +tCn +gQM +qKK qzO bGL bGL @@ -41613,12 +49563,12 @@ aaw aah ach acn -aah -aah -aah -aah -aah -aah +gKY +myl +skZ +skZ +gKY +myl aah aah aah @@ -41630,23 +49580,23 @@ agv akK ahX aiA -ajy -ajZ -aix -alm -alm -alm -alm -alm -alm -alm -alm -alm -alm -alm -alm -alm -aix +koC +gkA +qEl +dUs +dUs +dUs +dUs +dUs +dUs +dUs +dQY +dUs +dUs +dUs +dUs +dQY +hpM avt avV avV @@ -41688,11 +49638,11 @@ asK bdZ bdZ asK -aUQ -bdZ -bdZ -iCu -bdZ +kPE +ewo +ewo +tjC +lsI asK eWd eWd @@ -41716,17 +49666,17 @@ azb hhK sCt azb -bmN -bmN -bmN -bmN -bmN -bmN -bmN -bmN -bmN -bmN -bmN +ugm +pBX +pBX +pBX +pBX +pBX +pBX +pBX +eJp +pBX +nCL qzO bGL bGL @@ -41830,13 +49780,13 @@ abS aah ach aco -aah -aah -aah -abk -aah -aah -aah +gkj +ftO +skZ +ino +bHk +ftO +dbO aah aah aah @@ -41844,18 +49794,18 @@ aah aah agx agv -ahY -aeI +cDI +uAX aiA -ajy -ajx -ahR -ahP +qQM +lZZ +hEr +vOM ahP ahV ahV ahP -ahP +cFE ahP ahP ahV @@ -41863,7 +49813,7 @@ ahV ahP ahP ahP -ajy +aoO anp avT avT @@ -41881,19 +49831,19 @@ aeI aeI aeI aeI -aeI +gii aeI aeI ajy aoH aNm aOz -aPz -aQI -aRN -aSF -aTO -aUX +rkU +oHV +sPo +ePi +wFu +glH aQM aWu aoH @@ -41981,7 +49931,7 @@ aao aao aao uHQ -xWV +wvV sgF rkS oXH @@ -42047,28 +49997,28 @@ abT aah ach aah -aah -aah -aah -abl -aah -aah -aah +xAx +rLJ +skZ +gqH +xmh +rLJ aah aah aah aah aah +snT afM agw ahR ahX aiA -ajy -ajx -ahR +siK +tsW +vvU ahP -ama +xAU aeI aeI aiB @@ -42076,7 +50026,7 @@ ahV ahV ama aeI -aeI +gii aiB ahV ahV @@ -42093,7 +50043,7 @@ aBa anp ahR aeI -aeI +jHK aeI aeI aeI @@ -42105,12 +50055,12 @@ ajy aoH aNn aOy -aPA +vPU aoH aoH aoH aoH -aUY +hda aNo aNm aoH @@ -42135,7 +50085,7 @@ asK kjH beT baz -aZu +dcB bbM rYS asK @@ -42266,37 +50216,37 @@ ach aah aah aah -aah -abm -aah +skZ +pDn aah aah aah aah aah +dbO aah agv -afh -agv -ahZ +nCM +cln +czI aeI aiA -ajy -ajx -ahR +fGq +lZZ +gfo aln aeI +qEz aeI aeI aeI +fWH aeI aeI aeI aeI aeI -aeI -aeI -aeI +wHT ajy anp avT @@ -42313,7 +50263,7 @@ aeI aeI aeI aeI -aeI +wHT aeI aeI aeI @@ -42322,12 +50272,12 @@ ajy apt aNk aOy -aPB -aQJ -aRO -aSG -aTP -aUZ +vqU +iqd +piT +piT +gRT +fAT aNo aNm aoH @@ -42351,7 +50301,7 @@ bgq atA gMC bhb -bik +hSZ bhb bhb aZu @@ -42480,11 +50430,11 @@ aae aae aah acj +dbO aah aah -aah -aah -aah +skZ +skZ aah aah aah @@ -42494,13 +50444,13 @@ aah aah aah afM -ahh +aae akK aeI aiA -ajy -ajx -ahR +siK +lZZ +sll aln aeI aeI @@ -42508,7 +50458,7 @@ aeI aeI aeI aeI -aeI +vbS aeI aeI aeI @@ -42569,7 +50519,7 @@ atA bkn bhb bfB -bgD +wHV eYK bbe bjR @@ -42715,21 +50665,21 @@ aae atm aeI aiA -ajz -ajx -akK +mbY +wZI +hEr ahP ahO aeI +jrW aeI +uAX aeI aeI aeI +vWw aeI -aeI -aeI -aeI -aeI +mZh aeI ajy anp @@ -42785,9 +50735,9 @@ baF asK aZu bhb -bik -bhb -bhD +cLg +iih +ppo ugc atA bkl @@ -42932,10 +50882,10 @@ aao aeI aeI aiA -ajy -aoN -akK -ahP +eZD +iGp +hEr +dme aln aeI aeI @@ -42948,7 +50898,7 @@ aeI aeI aeI aeI -ajy +caL anp anp alX @@ -42967,7 +50917,7 @@ aeI aeI aeI aeI -aeI +uAX aeI aMb apu @@ -43001,9 +50951,9 @@ bbe bbe bjR bbe -bhE -bbR -biK +nnL +suL +hyB vkF fVt atA @@ -43147,34 +51097,34 @@ aao aao aao aeI -aeI +fWH aiA -ajy -aoN -akK -ahP +siK +iGp +xdc +cFE aln +gii aeI +vbS aeI aeI aeI aeI aeI aeI -aeI -aeI -aeI +fWH aeI ajy -ajx -ajx +vCl +ing alu aqw azv -alu -ajx -ajx +ngo +qXf ajx +uum ajx ahR aeI @@ -43362,13 +51312,13 @@ aao aao aao aao -aeI +rlO aeI aeI aiA -ajy -ajx -ahR +xrc +lZZ +oJh ahP ama aeI @@ -43376,22 +51326,22 @@ aeI aeI aoO aiw +hxn aiw aiw aiw aiw aiw -aiw -ajx -ajx -ajx -alu +xIt +gyv +vsz +ngo aqw aye alu -ajx -ajx -ajx +tIe +qXf +osm ajx ajx aiw @@ -43437,7 +51387,7 @@ aZO aZu beT baz -aZO +ddu aZu aZu asK @@ -43583,11 +51533,11 @@ aeI aeI aiz ahP -ajy -aoN -ahR +gyp +iGp +gfo aln -aeI +qEz aeI aeI aeI @@ -43601,10 +51551,10 @@ alu alu alu alu -alu +rXc alu ayN -ayd +bNK alu alu alu @@ -43796,34 +51746,34 @@ aao aao aao aao -aeI +nzX aeI aiA ahP -ajy -aoN -ahR +siK +fuj +nLm alo aeI aeI aeI -aeI -ajy +qEz +rvC alu aqq -are -aim -asy +xqh +mEx +gPI ajk -are -auG +gjB +cKH alu -avW -awL -avw -aFB -ayG -azp +arl +ouo +vLg +sBE +qSg +sgI alu aBb aBI @@ -43831,7 +51781,7 @@ amj aqC aEw wuz -aFx +pUn aHo alu aHD @@ -44016,11 +51966,11 @@ aao aeI aeI aiA -ahP -ajz -aoN -ahR -ahP +cFE +mbY +iGp +jjq +ikm ahO aeI aeI @@ -44033,21 +51983,21 @@ aqr asz aqr atR -atR +eku avu -auL -arR -aqw -azv -aqw +fWg +sRX +euI +sib +gvC azq alu aBb aBb -amj -aDC -arR -arR +mUE +lHr +dhB +ayO ari aFx alu @@ -44234,42 +52184,42 @@ aeI aeI aiA ahP -ajz -aoN -ajx -aiw -aiw -ahQ -aeI +mbY +iGp +vOo +mON +hby +oTx +vWw aeI ajz alu aqs aqs -arO +vjR asA aqs +ona aqs -aqs -amj +bSL avX -awQ -atr -ayg -aqw +fqx +jqL +mVh +xje awO -aAr -aBc -aBc +seK +seF +lMb amj aDD -arR -aFy -aGt +rBA +rXZ +vBG aHp alu aHD -aBR +tWA aBR aMc apt @@ -44447,16 +52397,16 @@ aao aao aeI aeI -aeI +eVb aeI aiB ahP -ajy -aoN -aoN -aoN -ajx -ahR +siK +iGp +iGp +iGp +gLv +oFs aeI aeI aoP @@ -44469,20 +52419,20 @@ ato atS auH avv -avY +fxu arR aqw +mWJ aqw -aqw -azr +euk alu aBb aBb amj -aDE +eqz aEx aqw -aGu +vEP aFx alu aHD @@ -44662,18 +52612,18 @@ adh acp aao aao -aeI +cWD aeI ahi aeI aeI aiA -ajA -akd -aiy -aiy -ajx -akK +sIp +cui +chz +mKo +geJ +hEr ahO aeI ajz @@ -44681,29 +52631,29 @@ alu aqu arg arQ -arg +uxa aqu -atT -auI +cMU +kdo alu avZ awN -axx -axx -axx -azs +eha +qBy +vVq +oXP alu aBd aBb amj -aDF +tZl arW aFz aGv aHq alu aHD -aBR +sWp aBR aMc aME @@ -44717,7 +52667,7 @@ aNo aVe aVM aoH -aXb +poS aXH aXH asK @@ -44736,7 +52686,7 @@ aZu aZu aZu asK -bhf +yaM aZu aZO biN @@ -44878,33 +52828,33 @@ adh adh acp aao +xul +til aeI aeI -aeI -aeI -aeI +gii aeI aiB -ahV -ahV -ahV ahP -ajy -ahR +ahP +ahP +gJk +siK +gfo aln -aeI +uAX aoQ alu alu -bgJ +nzc amj -bgJ +qXx alu alu alu alu -awa -awO +uWy +day alu alu alu @@ -44934,7 +52884,7 @@ aNo aVf aOB aoH -jiS +kGr aXH aXH asK @@ -45095,45 +53045,45 @@ adz adz acp aao -aiw -aiw +urp +dPW aiw aiw aiw ahQ aeI -aeI -aeI -aeI -aiA -ajy -akK +muo +ahP +tZs +ahP +dXr +hEr ahP aog aoR alu -atq -aqw -aqw -aqw -hbx -amj -ujq +orE avw -awb -awP +avw +mio +nYl +amj +gwD +rPj +iyS +rNp amj ayh ayH avw -aAs +ueH amj ayh -axz -axz +avw +pYO axz aFB -aGw +lNr aHr alu aHD @@ -45319,39 +53269,39 @@ agy acp ahR aeI -aeI -aeI -aeI aiA -ajy -akK -ahP -ahP -ajz +qDU +mPR +nJt +siK +hEr +nPH +wNe +rcR alD -atq -aqw +ayR +vrd arR arR -ark +hoI amj -kXV -aqw -awc -awQ +grM +awN +nVo +fXA axy atr ayI azt -awQ -aBe -atr -azt +tEA +mun +kjo +okB atr aEz -aFC +noR aGx -aHs +fKg alu aHD aBR @@ -45536,43 +53486,43 @@ adS acp ahR aeI -aeI -aeI -aeI -aiA -ajy -ahR -ahP -ahP -ajz +wUc +qcv +klN +pHQ +siK +gGf +wrV +udl +rcR alD -atq +ayR aqw arR -asC -ark +myM +jYL amj -auK -aqw -azv -arR +ogE +ecC +lKW +qru ayN arR arR azu -aAt +sox amj aBJ aCB aDG aEA axB -aGy -aHt +wpv +rXh alu aHD aBR -aBR +sWp aMc aoH aNr @@ -45754,28 +53704,28 @@ acp ajx ahQ aeI -aeI -aiz -ahP -ajy -ahR +aiB ahP ahP -ajy +fYQ +gfo +ppZ +ppZ +uFE alD -aqw +uJO ari -arS -asD -atr +nDw +xOi +eVL aBe -atr -atr -arU -awO +qRI +pvl +ono +kdw amj ayi -aqw +opr azv aAu alu @@ -45965,44 +53915,44 @@ acp acp acp acp -agz -ahj +eKe +azJ acp acp ajx aiw aiw aiw -aiw -ajx -ajx -aiw -aiw -ajx +ahQ +iZp +hUu +mON +orc +rvp apE -aqw -aqw -azv -aqw -aqw -amj -auL -aqw -azA -awP +awN +avy +kWE +fPi +rfL +wnZ +wMn +cMB +kKW +ecC alu alu ayJ -azw +uBI alu alu aBK -aCD +hMW aDH arX -axw -aGz -axw +tdo +duG +raq alu aHD aBR @@ -46175,15 +54125,15 @@ ahS acp acp acp -adm -adm -adm +acC +acC +acC acr -aeK +acT afj acp -agz -adk +llj +oPT aia acp acr @@ -46191,39 +54141,39 @@ acr acr acr acr -amc -aix -aix -aix -aix +qty +hIk +dUs +dUs +vDw apF -atr -arj -arU -aqw -aqw -amj +bXC +bVq +rIM +cls +awO +iaD auM -aqw -azA +cMB +kKW awP amj -ayj +rhE ayK azv awk alu asq -aCE -aDI +lyG +tIT awN awN -aDJ -aHu +tgN +fLd alu aHD aBR -aBR +uuB aMc apt aNu @@ -46390,15 +54340,15 @@ acp acp agy acp -acL -acT +kkF +flu acD +adm acC +vlI acC -aem acC -acC -afP +xLo agA adk aib @@ -46409,34 +54359,34 @@ aiX aiX acr amd -ana +tJl acp acp acp sXd -ume -aqv -bOZ -aqv -aqv +sgd +oEY +aGy +sIM +vZE amj auL -avx -azA +mNZ +scP awP alu ayk -ayL -azx +jYw +nuq awl alu aBM -azv -aqw +iMC aqw +nFm aFE arR -aHv +bEa alu aHD aBR @@ -46486,7 +54436,7 @@ axX ayr ayr ayr -xAX +guY tTI eYy ayZ @@ -46604,17 +54554,17 @@ nnz aqL asc acp -acy -cGc -cGc +fGz acC acU acC +acC +acC acD acD acr aeL -aeL +acC acp agB adk @@ -46625,8 +54575,8 @@ afS afS afS acr -ame -aic +doN +iJO aer afS cLZ @@ -46637,23 +54587,23 @@ amj alu alu alu -auN -aqw -azv -awR +gNv +awO +kNs +vaR amj ayl ayL azx aAv alu -aBN +bPl aCF ari aEC -aqw +maW arR -aHw +wWX alu aHD aBR @@ -46824,11 +54774,11 @@ acq acz acC acC -acM -acM -acM +acC +lff +acC +acD acD -adM acr acr acr @@ -46842,34 +54792,34 @@ afS afS afS alp -ame -ahj +oOL +vXt anx afS akM acp agY -arl -arl -arl +eMP +dtP +aDO arl amj -auL -aqw -azv +ouo awO +ufx +diJ alu ayk -ayM -azy +pSc +itN awk alu aBO awN +vtW +lES aDJ -aDJ -aDJ -awN +kOt aBP alu aHD @@ -46879,15 +54829,15 @@ aMd aMg aNw aNw +wuP +rTs aMg +xLv aMg -aMg -aMg -aMg -aMg +sHL aNw aNw -bhU +dnz bhU aHF aMg @@ -46905,12 +54855,12 @@ aMg aMg aMg aMg -bgF -bgF -bgF -bhR -biR -aMg +qxD +cOc +kfg +nKZ +mEg +aMd bjx bjx bjx @@ -47035,19 +54985,19 @@ dQR idn nnz aqL -wWE +lue asc acr acz +hFl acC +qkI acC acM -acM -acM acD acD acr -aeK +acT afj acp agB @@ -47059,46 +55009,46 @@ ajC ake rat acr -ame -ahj +dTF +qNX aer afS aoT acp tLO -arm -aip -asE -atr +uVw +cgB +oNW +ruZ atV -atr -atr -arU +pPP +lXC +ono awO amj -aqw +noN aqw azv awl alu -ans +wQk awN asq asq aFF -aGA -aHy +tSY +tSY alu aHD aKk aBR aBR +vPL +cRy +vPL +xlT aBR -aBR -aBR -aBR -aBR -aBR +swl aFL aBR aBR @@ -47107,7 +55057,7 @@ aBR aMc aHF aHD -aYK +wZW aIp aBR aBR @@ -47117,16 +55067,16 @@ aIn aIn aIn aIp +iZm aBR aBR aBR aBR aBR -aBR -aVo -aIn -biy -biS +gIi +xsn +vkR +phk aIn bjy bjy @@ -47255,14 +55205,14 @@ aqL lbh asc acs -acz +tGP acC acD -vPZ +acD +acC acC -adn adC -adN +skx aen adN adN @@ -47277,25 +55227,25 @@ acr acr acr pXm -ahj +vXt acp acp acp acp -efK -arl -aiY +oIb +ttb +hwC asF arl amj -auL -aqw -awg +cLo +awO +mCo awS alu alu ayN -azz +cGR alu alu amj @@ -47310,22 +55260,22 @@ aHD aBR aLc aBR +vPL +aJk +jyS aBR +dUi aBR aBR -aBR -aBR -aBR -aBR -aBR -aBR -aFL +uqh +emi +jGS aBR aMc aHF aHD aBR -aBR +sWp aBR aLd aIn @@ -47340,10 +55290,10 @@ aBR aBR aBR aLd -aIn -aIn -biz -aTh +wDQ +pgC +iww +cdI aIn bjy bjy @@ -47470,19 +55420,19 @@ tnG nlB nlB dQR -asc +dAg acq -acz +ibx acD acF -acO -acC -ado +bDY acC +upd acC +acU acr -aeL -aeL +acC +acC acp agz ahm @@ -47505,23 +55455,23 @@ alu alu alu alu -auL -aqw -azv +sxR +awO +awa awT -axz -aym -aqw -azv -avw -ayH -avw -avw -aDK +dOl +gwP +wLw +qzt +ilZ +qPQ +rmS +mPP +nsc aED +mZt aFG -aFG -aHz +izT alu aHF aFM @@ -47530,16 +55480,16 @@ aFM aFM aFM aOE +rSM +whL aFM aFM aFM aFM aFM aFM -aFM -aFM -aHF aHF +aUi aHF aFM aFM @@ -47553,14 +55503,14 @@ aFM aFM aHC aBR -aBR +uwB aBR aBR aYK aIn aIn -biz -biT +oYO +vrD aIn bjz bjz @@ -47687,16 +55637,16 @@ tnG dQR dQR dQR -asc +gOd acq -acz +ifh acD acD -acM -acM +tkI +acC acM acC -acD +igD acr acr acr @@ -47722,23 +55672,23 @@ rbV rbV vxv alu -auN -aqw -awh -awU -aqw +rTC +awO +fvr +pJZ +tns aqw -ayO -azA +cqp +jEX arR -aqw -aqw +kxa +vMc avx -aDL -aqw -aqw -aqw -awO +oJF +vMc +vMc +hzo +owc alu aHF aHF @@ -47776,12 +55726,12 @@ aBR aFL aVo aIn -aMc -biU +pjh +dEW aWJ bjA bjA -bjA +gLa bjA blq axX @@ -47906,14 +55856,14 @@ dQR kfx asc acp -acz -acC +nXS +nyZ acC acM +acD acV -acV -acC acC +aeL acr aeK afj @@ -47928,31 +55878,31 @@ aiX iis afS amg -ahj +aRv aer afS aoT acp aqM gdK -gdK +qHy aqL -yej -vGN -atr -atr -arU -arR -aqw -aqw -arR -azA -arR +xHr +wCU +qmp +diR +ono +iVz +wiJ +ckr +awP +kKW +xpE aBf avy axB aDM -aEE +iXo aEE aGB aHA @@ -47973,10 +55923,10 @@ mIc tap aof aNK -aXL +wdn bdo aof -aZz +cXG aOO aOO aOO @@ -47993,8 +55943,8 @@ aBR aBR aVo aIn -xpL -biU +iBi +rWg aIn bjB bjA @@ -48123,27 +56073,27 @@ elh kfx asc acq -acz -acC -acC +hGD +fXg +fuB acC vPZ acD acD -acD +usq aem acC acC afP agz ahn -aic +waZ acp jTa raU raU woK -afS +fMJ amg aic acp @@ -48151,26 +56101,26 @@ acp acp acp aqM -gdK +rVY aqL -aqL -asc -ayN -auL -aqw -azv -aqw -arR -arR -ayP -azv +gxo +kQD +mia +pkd +lfY +awa +oyM +kuA +rqj +gcI +awa aAw -awP -alu -alu -alu -alu -alu +qKW +xUc +dCD +xUc +tNx +tNx alu alu alu @@ -48183,7 +56133,7 @@ aGD aMf aPL aMf -aXk +aMf aof aTV aTV @@ -48191,7 +56141,7 @@ din aof aWH aOM -jna +aUb asT aZC aZC @@ -48206,11 +56156,11 @@ aHD aBR aBR aBR -aBR -aBR +sWp +tWA lBc eRI -aMc +mxC biV sIY bjC @@ -48337,24 +56287,24 @@ aao aao tjX dQR -kfx +vdz asc acp -acy -cGc -cGc +fGz +mdu +ven +fuB acC -acC -adp +dXL adD adD acr aeL -aeL +acC acp -agz -ahm -aib +rHe +dzD +gYI acp afS afS @@ -48368,32 +56318,32 @@ afS eLp acp aqM +bBE aqL aqL -aqL -asc +lgr alD -auL -arR -awi -awV -awQ -awQ -awQ -arU -aqw -aBg -alu -aaM -aqw -arl -aqw -aGC -aHB -aIj +hEP +jFq +wiM +lXC +aFH +qyh +aFH +rSm +ity +nOK +fVz +fCQ +ayV +hNh +iQf +mLw +tVg +tVg alu aof -aLe +ydE aof apC aNy @@ -48403,7 +56353,7 @@ aQW aRU aof aTU -wGD +lhB aTV aof aYU @@ -48415,7 +56365,7 @@ aZT aIY bbj caN -bcE +kCL aOO aOO apC @@ -48427,8 +56377,8 @@ aBR aBR aVo aIn -aMc -aHD +bhF +oxP aIn bjD bka @@ -48570,8 +56520,8 @@ acr acr acp agz -ahm -ahj +lFx +nMQ aiC ajb ajE @@ -48586,34 +56536,34 @@ akM acp aqM aqL -aqL +rDe aqL asc alD -uDt -arR +lqd +dDx arR aqw axA +hDe arR -arR -azA -aAx +qXK +xGp awO -amj -aCI -aDN -arS -aFH +cSD +rPc +kLG +khT +iTD awV -aFH awQ -aJl +atr +pGS aKo aKo aSX aMF -aNz +lVO aKo aKo aQX @@ -48644,8 +56594,8 @@ aBR bhi bhi bhI -wGV -usg +oqY +gUA aIn bjD jdQ @@ -48780,57 +56730,57 @@ aao acp acp acp -adF +hfC adP aeo aeM afk acp agz -aho -aif +neD +duw aiD ajc aif aif aif alr -ami +ocL anb aer afS aoT acp aqM -aqL +bBE aqL aqL asc alD -rfX +vvx avy -aqw +gvU avy axB ayn ayQ -azD -aqw -awO -amj -aCJ -arR -aEG -arR -arl -arR -aDN +xxN +hGH +rmW +qsl +rIH +fTw +iVW +oFQ +wlr +axB +drI ayN aKp aQW aTb kmm -aNA +xBo aMf aMf aQY @@ -48856,14 +56806,14 @@ apD aHD aBR aBR -aLd +mbt bhi bhi bhi raQ -aMc -aHD -aIn +gtt +xPT +dGw bjD bka bjA @@ -48986,7 +56936,7 @@ aao aao aao aqL -aqL +bBE lbh dQR kfx @@ -49012,13 +56962,13 @@ ajF aer acp als -ajL +mGS anc acp acp acp acp -aqM +smH aqL aqL aqL @@ -49026,25 +56976,25 @@ hGv alu alu pzC -fni -pzC +iev +vOg alu alu ayR -azv -aqw -awO -amj -aCK -aDO -aEH -aFI -vBT -amj -amj +uKC +xjR +awT +bSL +pqK +aPn +kGi +heR +imP +iCQ +iCQ alu aof -aLe +ydE aof apC aNB @@ -49076,10 +57026,10 @@ aBR tHl bhi dbi -oWk -oWk -fTg -aHD +dex +dex +fyo +xvW aIn bjD bka @@ -49219,18 +57169,18 @@ alF buB acp afl -afR -afR -afR +nMG +nMG +nMG acp aiE -afS -afS -aki +kcR +wfS +dfA aer agB ahn -aic +bff aer afS bNE @@ -49242,23 +57192,23 @@ aqL cBq alu pIl -avz -aqw -auP +pix +kMt +wWn qoQ alu -ayS -azv -aqw -aqw +klE +uKC +keC +sII apE -arl -aqw -aEI -aFJ -aGE -aqw -aIk +vJx +ayV +azv +heR +tzh +aGw +kLs alu aKq aHF @@ -49295,14 +57245,14 @@ bhi dbi qby stZ -cHz -aHD +qeC +izJ eRI ofX bjy bkr bjy -bls +vvT axX ayr ayZ @@ -49426,24 +57376,24 @@ dXK hQO aqL arp -ldD -acP +pmf acP acP +myJ acP acP acP asc acp afm -afS -afS -afS +dGs +bWw +jDG acp -aiF -afS -afS -aki +xYy +ktt +bFd +gHC aer alt ahn @@ -49459,30 +57409,30 @@ aqL asc alu oji -avA +odN aqw -awW +lid tbS alu -ayT -awi -aAy -atr +hik +hYx +oyb +lhu apF atr -aDP +bYx arU -alu -aqw -arl -aqw +bgJ +rgf +arR +awO alu aHF aHF aHF apD aND -aXk +aMf aMf aZS aof @@ -49495,7 +57445,7 @@ aXj aOI aYh oDW -oFY +aRd bcI bcJ aRd @@ -49512,14 +57462,14 @@ bhi dbi qby qby -kWW -aHF -mSn -bjE -bkb -bkb -bks -bjw +tOJ +fOV +hip +nIx +qqK +rIu +xsH +pak bsX bmy bmZ @@ -49653,17 +57603,17 @@ acP asc acp xyu -afS +jYd agD -afS +mXm acp -aiG -afS -afT -afS +pTl +tOg +knL +tEG akQ -agB -ahm +jNf +lFe ahj aer afS @@ -49676,23 +57626,23 @@ aqL asc alu oji -avA -aqw -awW +cPE +jgg +afX tbS alu -ayU -aqw +syf +avy aAz -aBh -alu -arl -aqw -aEJ -aFK -arl -aqw -aIl +jFs +tNx +ekl +avy +aGy +ljx +avy +axB +jSL alu aHF aHF @@ -49727,16 +57677,16 @@ aBR eTj bhi dbi -pTo -uyd -gMj -aHF -aMg -bjF -bkc -bkc -bkc -blt +kjY +dZL +olK +fOV +xNI +tKq +ykB +vNk +ykB +eeR xDW bmz bna @@ -49864,23 +57814,23 @@ oMf pRP aWy acP -acP +vxS acP jeO asc acp afn -afT -agE +ezz +eRL afS acp -aiH +jtH afT ajG -akk +gHC aer agB -ahm +jKm ahj acp acp @@ -49893,13 +57843,13 @@ aqL asc alu gts -avA -aqw -awW +omV +uZo +wIR tbS alu alu -azH +ovH alu alu alu @@ -49935,7 +57885,7 @@ aOK bbk aOK aPS -bdp +vGA apD aHF aHD @@ -49946,14 +57896,14 @@ bhi bhi auW unC -aMc -aHD +wup +izJ eRI ofX bjy bjy bjy -blr +ofp axX axX axX @@ -50071,10 +58021,10 @@ aao tjX dQR dQR -dXK +fsy aaB pRP -sWh +xMz hFv hFv kAs @@ -50086,38 +58036,38 @@ acP bJQ aao acp -afo -afT -agF +fgu +oRa +vlu ahp acp -aiI -afT -afT -akk +tFL +wRo +qTw +gHC aer -agz +dHs ajL -ahj +cVS any aoh aoU acq aqM aqL -aqL +psP aqL asc alu oji -avA -vfo -awW +sRs +dIn +enR tbS alu -kRy -ayV -ayV +eMN +cya +nYz alu aHF aMg @@ -50163,8 +58113,8 @@ aVo aIn xPg bhL -aMc -aHD +wup +izJ aIn giY bjy @@ -50177,9 +58127,9 @@ bjx bjx bjx bjx -bjx -bjx -bjw +ixy +vbO +rvG axX axX bru @@ -50303,19 +58253,19 @@ jeO aqL aao acp -afp +oyW afT -agG -akM +wdV +gIW acp aiJ afT -ajH -afS +ikq +rEe aer -agz -ahm -ahj +riL +mvP +pMc aer aoi aoV @@ -50329,12 +58279,12 @@ alu jRH avB pOt -awX -gej +sxg +bOR uST -vhw -ayV -ayV +cSB +qMJ +sCT alu aHD aBR @@ -50344,7 +58294,7 @@ aBR aBR aBR aBR -aBR +uwB aBR aFL aMc @@ -50374,14 +58324,14 @@ bdP apC aHD aBR -aFL +ouD aBR aVo aIn xPg aIn -aMc -aHD +wup +izJ aIn xtB bjy @@ -50396,8 +58346,8 @@ bjA bjA bjA bjA -blu -bjw +jxV +nWE axX brv bos @@ -50409,7 +58359,7 @@ vbp tub axX bjY -bjA +rNy bjA bjA bjH @@ -50520,18 +58470,18 @@ aqL aao aao acp -afo -afT +nkB +rXJ agH -ahr +uZJ aih +vmt ahr -ahr -ajI +lYc akm -aih -agC -amo +fyC +lAV +wAy ahj acp aer @@ -50559,7 +58509,7 @@ aBR aBR aBR aBR -aBR +tWA aBR aBR aBR @@ -50571,7 +58521,7 @@ aof aof aof aof -aSV +ykb bdl aof aof @@ -50597,8 +58547,8 @@ aVo aIn xPg aIn -aMc -aHD +wup +izJ aIn giY bjy @@ -50610,11 +58560,11 @@ bjA bjA bjA bjA +mjD bjA +rNy bjA -bjA -bjA -blq +blr axX brw btu @@ -50627,7 +58577,7 @@ bor axX bjY bjA -bjA +dcD bkC bjy btD @@ -50737,20 +58687,20 @@ aao aao aao acp -afq -afS -afT -afS +qdL +xQQ +eWk +egZ acp aiK -afS +rVw ajJ akn acp agz amp and -anz +lvu aoj aoj apH @@ -50772,7 +58722,7 @@ alF alF axW aBR -aBR +ixB aBR aFL aBR @@ -50814,8 +58764,8 @@ bhi bhi auW dgy -aMc -aHD +umN +abN dgy ofX ssI @@ -50830,7 +58780,7 @@ bjA bjA bjA bjA -bjA +tyu blq axX axX @@ -50849,10 +58799,10 @@ bjy bjy bjy azO +gKJ ydn ydn -ydn -ydn +uqg epe kdr kdr @@ -50956,20 +58906,20 @@ acp acp acp acp -agI +uLn acp acp acp aer -ajK +sEu aer acp alv amq -ahj +fSg aeJ adS -aoW +adk aeJ aqH aqL @@ -50977,7 +58927,7 @@ arZ amD acP acP -acP +opg acP acP acP @@ -51011,7 +58961,7 @@ aYm aVU aOM aOM -aXO +xbZ kRK aNL aOM @@ -51031,15 +58981,15 @@ bhi bhi wGr aBR -aMc -aHD +bhF +oxP aIn bjD bjy bjA bkq bjA -bjA +tZj bjA bjA bjA @@ -51067,11 +59017,11 @@ bkd azO azO azO -fJH -ydn +xYa +gKJ ydn epe -kdr +eYC kdr kdr kdr @@ -51157,7 +59107,7 @@ aao aao tjX kfx -cgO +lEW pJt pJt gPc @@ -51191,16 +59141,16 @@ acp aqH aqL asa +vxS acP +aTy acP acP acP -acP -acP -acP +rPq aqO aqO -acP +hso acP aAA acP @@ -51213,7 +59163,7 @@ aBR aBR aBR aBR -aBR +iZm aBR aMc apC @@ -51243,13 +59193,13 @@ apC aHD aWJ aBR +tWA aBR aBR aBR aBR -aBR -aMc -aHD +jYb +igb aIn bjD bjy @@ -51257,19 +59207,19 @@ bjB bjA bjA bjA +bkC +bkr +bkr +bkr +bkr +bkr +vPr bjA bjA -bjA -bjA -bjA -bjA -bkq -bjA -bjA -bjA +mjD bjH bjy -blq +blu ayr bmq bqo @@ -51282,12 +59232,12 @@ btD btD blq vpY -jBq +vYp vpY -siu +wIE bvH ihW -epe +kGn kdr kdr kdr @@ -51365,10 +59315,10 @@ aao aao aao aao -aao -aao -aao -aao +lwR +lwR +lwR +lwR aao aao aao @@ -51382,7 +59332,7 @@ acP acP acP acP -acP +opg asc acp adR @@ -51400,7 +59350,7 @@ adS akR agz amr -aic +qky aer afS cLZ @@ -51416,7 +59366,7 @@ ahe ahe ahe ahe -atl +qEm ahe ahe auE @@ -51460,33 +59410,33 @@ apC aHD aWJ aBR -aBR +ixB aBR aBR aBR bhO -biY -dzY -bpT -bjG -bjy -bjy -bkr -bjB -bjA -bkC -bkr -bkr -bkr -bkr -bkr -bjB -bjA -bkC -bkr -bjy -bjy -blq +rre +kRT +gsb +sNJ +bGP +iEw +rIu +rIu +bGP +rIu +rIu +ftt +rIu +rIu +bGP +rIu +kTG +rIu +qMu +onc +kjU +pak bsX nVq nVq @@ -51499,11 +59449,11 @@ buJ buJ buo bvz -dXu +sbn bvz -qLV -oXr -oXr +uzb +sXf +vDK qLV qLV qLV @@ -51537,7 +59487,7 @@ aKi aKi aKi aKi -tDl +aJK aCe dyv dyv @@ -51585,9 +59535,9 @@ aao aao aao aao -aao -aao -aao +uut +eCM +ylx aao aao aao @@ -51610,17 +59560,17 @@ adk adk adS aer -aiL +wer adS ahm adS acr agz ahm -aic +oCa anx -afS -akM +fps +hAl acp aqH arp @@ -51679,31 +59629,31 @@ aIn aIm aBR aBR -aBR -aBR +uuB +uuB bhP -aMc -gpt -aKt -bjy -bjy -bjy -bjy -bjy -bkr -bjy -bjy -bjy -bjy -bjy -bjy -bjy -bkr -bjy -bjy -bjy -bjy -blq +oYO +fia +xNI +uDM +dFr +vKg +uDM +uDM +uDM +rSf +uDM +vKg +uDM +gBv +pND +vKg +vKg +uDM +uDM +uDM +vKg +fNT maD nVq nVq @@ -51714,14 +59664,14 @@ bjw bjw bjx bjx -bjw +jwV vpY -jBq +xnm vpY -kdr +lGl bvQ eAU -kdr +tUe kdr kdr kdr @@ -51801,14 +59751,14 @@ aao aao aao aao -aao -aao -aao -aao +cUN +fkD +eCM +rvB aao tjX -dQR -dQR +dgQ +cpw dQR hQO arp @@ -51827,17 +59777,17 @@ afV adT adT aer -aiM +sbc adS ajL akp acr alw ams -ane -aer +iDu +kjc afS -aoT +pQb acp aqH aqL @@ -51861,10 +59811,10 @@ atn atn atn amn -aHD -aBR +wxo aBR aBR +tWA aBR aMc apC @@ -51873,10 +59823,10 @@ aOM aPS aUb aof -aSZ +nSp czS aof -aVW +qzk aWF aof kRK @@ -51899,15 +59849,15 @@ aBR aBR aBR bhP -aMc -aHD -aBR +lQb +oXv +sWp bjH bkd bks bks bks -bks +tmh bkb bkb bkb @@ -51920,7 +59870,7 @@ bkb bkb bkb bkb -bjw +bkb ayr btj nVq @@ -51933,11 +59883,11 @@ bjy bjy blq vpY -jBq +pok vpY -siu -ydn -ydn +gjH +aOj +uqg epe kdr kdr @@ -52016,21 +59966,21 @@ aao aao aao aao +fBJ +mzC +rSE +lSA +eCM +rvB aao -aao -aao -aao -aao -aao -aao -tjX +xqW vHU dQR hQO aqL aqL lUa -acP +hso acP acP acP @@ -52050,7 +60000,7 @@ ajL akq acr acr -amt +mPm acr acp acp @@ -52116,11 +60066,11 @@ bfI bfI bfI bhQ -aHF -aHF aFM -aFM -aHF +aCN +aCN +aCN +bhU awp awp axr @@ -52235,12 +60185,12 @@ aao aao aao aao +fBJ +hos +btZ +tHH aao -aao -aao -aao -aao -qMS +psI dQR kfx aqL @@ -52264,7 +60214,7 @@ adS ahk adk ajL -aiN +wBP acr adS ajL @@ -52295,7 +60245,7 @@ aua aua aws amn -aHD +xfM aBR aBR aBR @@ -52317,7 +60267,7 @@ aWH xej ole eSN -aPS +mYp baI aYO bca @@ -52331,13 +60281,13 @@ aNw aNw aNw aHF -aHF +reB bhR -aHF -aHF -aHF -aHF -aHF +bhU +bhU +bhU +bhU +cZW awp bkD blx @@ -52372,7 +60322,7 @@ meT vrt ydn ydn -epe +xhn kdr kdr kdr @@ -52471,7 +60421,7 @@ acP asc acq acv -adW +pjD aeP afs adW @@ -52514,7 +60464,7 @@ aFO amn aHD aBR -aBR +eiK aBR aBR aMc @@ -52534,13 +60484,13 @@ aYW xej tBD eSN -aZZ +shP upV baJ bcb bcR bcc -toA +bQe apC aTh aIn @@ -52551,8 +60501,8 @@ aMc aHF tHB aVp -aVp -aVp +vIQ +vIQ aVp vIQ bku @@ -52589,8 +60539,8 @@ meT meT fZm ydn -epe -kdr +kGn +eYC kdr bvZ kdr @@ -52683,12 +60633,12 @@ aqL aqL lUa acP -acP +myJ acP asc adG adW -aet +tFH akA adW adW @@ -52703,7 +60653,7 @@ acr cLq lym alx -adS +anD cLq cLq acr @@ -52738,7 +60688,7 @@ aMc apC aUd aYL -aYM +aOK aOK aOK aOM @@ -52766,12 +60716,12 @@ aIp aBR aMc aHF -aHF -aHF -aHF -aHF -aHF -aHF +bhU +bhU +bhU +bhU +bhU +bhU awp bkE bly @@ -52798,15 +60748,15 @@ ayr bjw bjY bjA -bjA +tYm bjA bjA azO -meT +nJu meT vrt ydn -epe +jgK kdr kdr kdr @@ -52824,7 +60774,7 @@ byz byK aAp bzp -fyp +hRc aAp aAp aAp @@ -52913,16 +60863,16 @@ acp adS adk aiO -ajf -ajN +bPY +fRF akt acr alz amw -adS -anC -alz -alz +anD +cKy +gcL +fKC amb aqM aqL @@ -52934,19 +60884,19 @@ aua avC aua asJ -aua +eGB ayo -aua +pYL azP asJ -asJ +aua asJ asJ asJ awn aws amI -aHD +wxo aIn aIm aBR @@ -52978,7 +60928,7 @@ aYO apD aTh aWJ -aBR +vem aBR aBR aMc @@ -52987,8 +60937,8 @@ aMg lID lID aMg -aHF -aHF +bhU +rLO awp bkG wvK @@ -53016,7 +60966,7 @@ bjw bjY bjA bjA -bjA +rNy bjA azO meT @@ -53121,7 +61071,7 @@ acP acP asc acp -mtM +yfg jGn adW adW @@ -53130,8 +61080,8 @@ aer adS adS aiO -ajg -adU +mwI +vFe akt acr alA @@ -53140,8 +61090,8 @@ adS anD alA alA -sVB -aqM +jJU +vkj aqL ase amn @@ -53150,9 +61100,9 @@ amn amn avD awn -asJ -asJ -asJ +nkm +vFr +nkm ayX azQ aAC @@ -53193,7 +61143,7 @@ bcU bds aYO apC -aTh +jUK aIn aKl aIm @@ -53334,7 +61284,7 @@ aqL aao aao arp -acP +cuW acP asc acp @@ -53347,8 +61297,8 @@ acp aht adS aiO -ajh -ajP +cgz +osi akt acr adS @@ -53359,23 +61309,23 @@ adk adS acr aqM -qwm +qAF asc amI aty atY amn asJ -asJ -asJ aua -asJ +eoB +pYL +pdt aua -aws +rst asJ aBi asJ -asJ +aua aua aua asJ @@ -53396,7 +61346,7 @@ aOO aOO aof aNP -pdG +aOO qXi aof aYq @@ -53410,10 +61360,10 @@ bcV bdt baJ bej -beE -aFM -aFM -aHC +mDi +eBq +tcY +rBT aBR aMc fHw @@ -53449,14 +61399,14 @@ caD bjw bjY bjA -bjA +uVC bjA bjA azO -wZC +sED ihW ydn -ydn +gKJ epe kdr kdr @@ -53564,7 +61514,7 @@ acr ahu adS aiO -aji +wnf ajQ akt acr @@ -53576,17 +61526,17 @@ aok adk alZ aqM -acP +jdN asc amI atB atY auU asJ -asJ -asJ -asJ -asJ +aua +aua +aua +aua asJ azS amn @@ -53597,7 +61547,7 @@ eqr amn amn amn -aHD +wxo aIn aJm aKt @@ -53608,7 +61558,7 @@ aNQ aGG aPX aof -pNU +aNQ aOO aUg aof @@ -53616,21 +61566,21 @@ aNQ aOO aXn aof -aYr +vkL aof -aNJ -aUc +uBr +pMl aof bbr -toA +bQe aYO fPB bQe bek -bjZ -aMg -aHF -aHD +gxQ +xNI +rJm +qnr aBR aMc fHw @@ -53671,9 +61621,9 @@ bkd azO azO azO -fJH -ydn -ydn +xYa +uqg +aOj epe kdr kdr @@ -53793,7 +61743,7 @@ aol adS acr aqM -acP +vxS asc amn atz @@ -53802,24 +61752,24 @@ amn pvj asJ awY -axH -asJ +kKA +aua asJ azT amn -aBj +nTv qYB aBk aBk aBj rKy amn -aHD +wxo aIp aBR aBR aBR -aMc +tkx apC apJ apJ @@ -53844,10 +61794,10 @@ apC apC apC apC -beF +jde bfb -aMc -aHD +bhF +xGl aIm aMc aHD @@ -53877,7 +61827,7 @@ bsC awp bjY bjA -bjA +uVC bjA blq bjw @@ -53888,8 +61838,8 @@ blq vpY jBq vpY -siu -ydn +wIE +gKJ ihW epe kdr @@ -54011,15 +61961,15 @@ acr acr aqM acP -asc +gOd amn aty atY amn asJ awo -bNA -axI +efT +qlW ayp asJ azU @@ -54040,7 +61990,10 @@ aMd aMg aMg aMg +xRb +rTs aMg +xLv aMg aMg aMg @@ -54048,13 +62001,10 @@ aMg aMg aMg aMg -aMg -aMg -aMg -aMg -aHF -aHF -aMg +axW +sfw +rBT +aMd aMg aMg aMg @@ -54063,10 +62013,10 @@ aMg aMg beG aIn -vmm -aHF -aFM -aHF +tFv +iww +uIP +bhU aHF aCN lRC @@ -54105,10 +62055,10 @@ bjw vpY jBq vpY -kdr -erJ -erJ -kdr +eYC +kip +cnF +eYC kdr kdr kdr @@ -54227,7 +62177,7 @@ aoX apb acr aqM -acP +jdN asc amn tmH @@ -54236,7 +62186,7 @@ amn asJ awo axa -axJ +krH ayq ayY azV @@ -54252,45 +62202,45 @@ aHD aBR aBR aBR +ndD aBR aBR +ndD aBR +dYO aBR aBR aBR aBR aBR -aBR -aBR -aBR -aBR -aBR +nVV +emi aVo aIn aWJ +cRy +bhF +nfP aBR -aMc -aHD -aBR -aBR +vem aVo aIn aIn aWJ aBR -aBR +tWA bfc -vmm -aHF -aMg -aHF -aHF -aHF -aHF +tFv +xsn +fXF +bhU aHF aHF +nzx aHF aHF +bhU +bhU awp bkK blB @@ -54322,8 +62272,8 @@ bjw vpY jBq vpY -kdr -eAU +lGl +vcd bvQ kdr kdr @@ -54444,7 +62394,7 @@ alB adW acr aqM -acP +oEq asg amI atB @@ -54470,12 +62420,12 @@ aBR aBR aBR aBR +swl aBR aBR +tWA aBR -aBR -aBR -aBR +daY aBR aBR aBR @@ -54486,8 +62436,8 @@ aIn aIn aIn aKl -aMc -aHD +fsO +oxP aKl aKl aIn @@ -54497,17 +62447,17 @@ aIn aKl aKl aIn -aMc -aHD +tcy +oxP aIn aMc aHF aMg -lID +ghz lID aMg aHF -aHF +bhU awp bkK bBg @@ -54539,10 +62489,10 @@ blq vpY jBq vpY -siu -ihW +jJG +ipA ydn -epe +xhn kdr kdr bvZ @@ -54660,7 +62610,7 @@ alC aon aoY acr -aqM +vkj acP ash amI @@ -54669,8 +62619,8 @@ atY amn asJ awo -axb -axI +rVM +tQV ayp asJ azW @@ -54690,41 +62640,41 @@ aBR aBR aBR aBR +vPL aBR +vPL aBR aBR -aBR -aBR -aBR -aVn -aFM -aFM -aFM -aFM -aFM -aFM -aHF -baa -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aFM -aHF -aHD +emi +ttn +mns +eBq +eBq +eBq +htb +htb +iea +cIE +htb +htb +htb +eBq +htb +htb +eBq +htb +htb +xsn +bXq aWJ aMc aHD dPJ -gpR -gpR +pld +pld dPJ nvn -aHF +bhU awp bkL qHc @@ -54745,7 +62695,7 @@ bsG azG btn bjA -bjA +itF bjA bjA bjA @@ -54756,8 +62706,8 @@ blu azO azO azO -lms -ydn +mMC +gKJ ydn epe kdr @@ -54862,7 +62812,7 @@ ahS aqM acP acP -acP +vND acP asc aiQ @@ -54884,15 +62834,15 @@ amn amn amn amn -avF +vAt awo -axc +sva awZ ayp asJ -aws +azP enJ -aBo +hHl aBW aBk aBk @@ -54907,39 +62857,39 @@ aBR aBR aBR aBR +vPL +vPL +qhY aBR +aLc aBR -aBR -aBR -aBR -aBR -aMc -aHF -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -aMg -axW +bhF +xsn +xNI +xNI +xNI +nRM +xNI +hIu +xNI +xNI +bXz +xNI +xNI +lNq +ntc +xNI +xNI +xNI +xNI +eak aIp aMc fHw -gpR -gpR -gpR -gpR +pld +pld +pld +pld wBu aHF awp @@ -54963,7 +62913,7 @@ azG bjY bjA bjA -bjA +rNy bjA bjA bjH @@ -55095,7 +63045,7 @@ agt apa acr ajT -acP +jdN asc amI aty @@ -55106,32 +63056,32 @@ asJ axd axd asJ -asJ +aua azY qus aBp -aBW -aBk +rvX +xsy aBk amn amn amn -aHD -aBR -aBR -aBR -aBR +rUU aBR +uqh aBR aBR aBR aBR +vPL +ndD +rvr +tRM aBR +emi aBR -aBR -aBR -aMc -aHD +jYb +jxp aIn aIn aIn @@ -55153,12 +63103,12 @@ aIp aBR aMc fHw -gpR -gpR -gpR -gpR +pld +pld +tCQ +kDv wBu -aHF +dyX awp qeK ccP @@ -55182,7 +63132,7 @@ bjA bjA nYV bjA -bjA +asb vEU gke buc @@ -55287,7 +63237,7 @@ aqL aqL aqL arp -acP +vRb acP rZU ahS @@ -55327,7 +63277,7 @@ aua ltK amn aBq -aBq +gat szZ aBk aEN @@ -55336,19 +63286,19 @@ amn aHF aFM aFM +goa +aCN aFM -aFM -aFM -aFM -aFM +aCN +rSM aOR aFM -aFM -aFM +oLa +aCN aHC aBR -aMc -aHD +bhF +bXq aIn aXo aKt @@ -55358,6 +63308,7 @@ aKt aIp aBR aBR +tWA aBR aBR aBR @@ -55366,13 +63317,12 @@ aBR aBR aBR aBR -aBR -aBR +vem aWW aHD dPJ -gpR -oOw +kDv +cpo dPJ aMc aHF @@ -55514,7 +63464,7 @@ rVT acP acP acP -acP +krV asc acr acr @@ -55528,12 +63478,12 @@ akj akj akj acr -aqM -acP +mAk +fmW asc amn atB -atY +rNG amn asJ awq @@ -55564,21 +63514,21 @@ anJ anJ aHD aBR -aMc -aHD +bhF +oxP aIn aWJ aBR +nVV aBR aBR aBR aBR +cRy aBR aBR aBR -aBR -aBR -aBR +vem aBR aBR aBR @@ -55587,12 +63537,12 @@ aBR aBR aMc aHF -aCN -lRC -bSy -aCN -aHF -aHF +uEi +pMd +dtC +uEi +baa +reB awp bkO blC @@ -55728,7 +63678,7 @@ vgE vgE vgE lPg -acP +jLj acP acP acP @@ -55741,16 +63691,16 @@ akw alF alF akw -akw -akw -akw -alF -aqI +qmH +iSq +xoy +nDu +rJW amD asc amn -aty -atY +jlr +rGr amn avG awq @@ -55760,36 +63710,38 @@ awq axM aws amn -aBr -alT +oTG +mRP aCS aDU -alT -aFT +dVj +wKK amn -aHG +vHB aIq aJn -aEO +okU aLp aEO -aMH -aEO -aLp +mes aEO +hpd aEO +vFB anJ aTc aBR -aMc -aHD +bhF +oxP aIn aWJ aWI aFM aFM aFM +aCN aFM +aCN aFM aFM aFM @@ -55797,16 +63749,14 @@ aFM aFM aFM aFM -aFM -aFM -aFM -aFM -aFM -aHF -aHF +poG +aCN +aCN aHF aHF +dyX aHF +dyX jdj aHF aHF @@ -55950,26 +63900,26 @@ acP acP acP acP +myJ acP acP acP acP acP acP +oEq acP -acP -acP -acP -acP +oEq +jKh acP acP acP asc amn -lyx -atY +uwh +rNG amn -asJ +nkm awq mnv axN @@ -55977,29 +63927,29 @@ ays axN aAa aAE -atY -atY -aCT +vAI +nfS +nzb atY atY atY aAE aHG -aIr +qgn aJn -aEQ -aLq -aMh -aER -aNR -wXN +qEc +dIJ +nXQ +nXQ +vGL +mgb +nOW aGI -aEO aqz aHD aKl -aMc -aHD +oYO +oxP aIn aWJ aMc @@ -56023,10 +63973,10 @@ asv asv aHF aHF +fxO aHF aHF -aHF -aHF +xaW awp bkE blC @@ -56169,7 +64119,7 @@ acP acP acP acP -acP +aTy acP acP acP @@ -56177,7 +64127,7 @@ amD acP acP acP -acP +oEq acP acP acP @@ -56189,34 +64139,34 @@ auU asJ awq awq -axM +wFW ayt axM aAb amn -atY -atY -atY -atY -atY +aCa +ijb +szt +nfS +gLC aFU amn aHG aHG -aJn -aEO -aLr -aEO -aGH -aNS -aLr +jPJ +jgO +pGU +iKK +rxK +dnC aEO +pGU aEO anJ aTd aIn -aMc -aHD +vAo +xPT aIn aWJ aMc @@ -56376,12 +64326,12 @@ aqL arp acP acP +myJ acP acP acP acP -acP -acP +aTy acP acP acP @@ -56404,36 +64354,36 @@ aty atY amn pvj -awr -axg +evV +axN axO ayu -aza +awq aws aAE -atY -aBZ -aBZ -aBZ +jnd +tkp +tkp +tkp aBZ aBZ aAE aHG aIs -aJo -aEO -aEO -aEO -psE -aNS +gvZ aEO +tiL +qtT +sjQ +hJU aEO +izC aRj aqz aHD aUh -aMc -aHD +ixx +oxP aIn aWJ aWW @@ -56456,7 +64406,7 @@ bgd aLf asH aHF -aHF +bhU aHF asv bjJ @@ -56464,7 +64414,7 @@ bgx bkw blX blD -cGT +uUY bmH bnl pBv @@ -56537,7 +64487,7 @@ aDX aDX aDX aDX -fKW +vQF bEc aDX aDX @@ -56594,6 +64544,7 @@ aqL lUa acP acP +vRb acP acP acP @@ -56604,8 +64555,7 @@ acP acP acP acP -acP -akV +smw acP acP asc @@ -56621,36 +64571,36 @@ amn amn amn asJ -aws -asJ +uIX asJ +nkm ayv asJ aws amn -alT -aCa -aCa -aCa +hAa +ttk +atY +atY aCa aCa amn aHH -aHG -aJn +dME +jPJ aEO aLs +lvO +mnu +usZ aEO -aEO -aNS -aLp -aEO +umW aEO anJ aHD aIn -aMc -aHD +fzt +oxP aIn aWJ aMc @@ -56673,8 +64623,8 @@ bgs bfM avr bhT -aHF -aHF +bhU +bhU asv beI bgx @@ -56813,7 +64763,7 @@ bQh bQh lUa acP -acP +qcC acP acP acP @@ -56828,18 +64778,18 @@ ahe ahS aku aoo -apc +atE apK -ahf +muk ars apc -apK -atC +dnw +gHR ars amn amn jZp -axh +gvY amn amn anJ @@ -56852,22 +64802,22 @@ amn amn amn amn -aHI -aHI -aJp -aKv -aLt -aGI -aEO -aNT -aOS -aGI -aRk +ekz +geo +nmn +aEQ +aGH +buU +ozy +aNS +dsU +pGU +tyQ anJ -aTe -aFM -aHF -aHD +oIg +aIn +bhF +oxP aIn aWJ aMc @@ -56889,9 +64839,9 @@ bgc bgc bgK asH -aHF -aHF -aHF +ibn +bhU +bhU asv bjK aZF @@ -57047,45 +64997,45 @@ aku aop apc apK -ahf +mPU ars apc apK -ahf +qDK ars ako -apc -awt -avJ -axP +enx +pXY +xnf +bFz ahf anJ -aAH -aAg -aAg -aAg +hsq +gKM +xlD +svb anJ -aDV -aEO -aEO -aEO -aEO -aEO +vbN +gzj aEO +pGU +pGU +qEc +qmE aKw -aLr aEO aEO -aNS -aLr -aPY aEO -aSc -aHF -aHF -aHF -aHD -aIn +oqe +aLr +mKR +pGU +pRy +sfw +uCV +jyZ +oxP +qzI aWJ aMc asv @@ -57106,7 +65056,7 @@ bgc bgt bgL asv -bhU +eOf aHF rHD asv @@ -57263,45 +65213,45 @@ ahS aku aop apc +atE +atE +atE +atE +atE apc apc apc -apc -apc -apc -apc -apc -apc -aop -apc -apc -ars +mgr +cgo +rdH +uvL +iXV anJ -hhX -cYy -aCb -aCb +xIY +qkn +tXa +fZA aCU -aDW +xqb aEP aER aER +nXQ +sCf aER -aIt aER +xio aER -aER -aER -aER -aNU -aEO -aEO -aRl +hbY +wFv +pGU +pGU +gae cNH -aTf -aHF -aHF -aHD +hRE +wql +iww +oxP aIn aWJ aMc @@ -57392,7 +65342,7 @@ pBD xpl pBD pBD -plx +vQr pBD pBD xpl @@ -57480,46 +65430,46 @@ ahS aku aoq apd -apL -aqQ -apc +tVE +whb +vWt apc apc apc apc aqQ -apc -aop -apc -apc +vVt +krR +bGX +oHu ars anJ -aAf -aAH -aAg -aAg +scH +fiI +pdP +kAD anJ -aNS -aEO +jUO aEO +pGU aGH +mgb aEO aEO -aEO -aEO -aEO +pGU +fOf aGH aEO aNV aEP -aDW +ydO aRm anJ -aTg -aHF -aHF -aHD -aIn +uUU +bhF +xsn +bXq +wBw aWJ aMc asv @@ -57683,7 +65633,7 @@ aqL aqL aqL lUa -acP +cAR acP asc hHa @@ -57697,7 +65647,7 @@ ahS ako ako ako -apM +sdo ako ako ako @@ -57705,37 +65655,37 @@ ako ako ako ako -asM +avI aop -apc -axQ +atE +jWY ahf anJ -aAg -aAH -aAg -aAg +fRP +hsq +fXZ +bsw anJ aNS -aEQ -jUM -aGI -aEQ -jUM +aEO +mgb +aLr +aEO +aEO aJq aKx aKx aKx aKx aNW -aEO -aNS +pGU +vxI aEO anJ -bhR -aUi -aHF -aHD +aTh +xdV +fVX +oxP aIn aIp aMc @@ -57912,17 +65862,17 @@ ahS ahS khK ako -eNe -ape +fWb +oHW apN -ape -uVi +nEB +maN ako -asL -atD atD +sih +sih ako -apc +atE awu apc ako @@ -57940,20 +65890,20 @@ anJ anJ anJ anJ -aKy +oVg aLu -aMi -aMI -aNX +wcx +ffl +eri aKx -aNS +nPG aRn aqz -bhR -aHF -aHF -aHF -aFM +aTh +kZX +fVX +hpl +aWI aFM aHF aHF @@ -58127,50 +66077,50 @@ ahS ahS ahS ahS -khK +cYC ako -xzb -ape -apN -ape -pgP +qOK +uVd +ftR +djV +sfT ako -asM +hkJ atE apc ako -tgf +bLi aop -apc +atE axR -ayw -azc +nwe +gzm ako -aAJ -apo +nih +nms sqt anJ aEa -aER -aFX -aEO -aHJ +jHH +nkD +nmb +xJW aIu anJ aEO aEO aMj aEO -aFW +lVY aKx -aNS -aEO +nPG +pGU anJ -bhR -aHF -aHF -aHF -aHF +aTh +ePz +qhF +lBX +aMc asv asv asv @@ -58344,19 +66294,19 @@ ahS ahS ahS khK -taV -ako -ape -ape -vZh -ape -ied +ora +ats +kGK +uVd +mdh +uVd +kWh ako asN atE -apc +mIy ako -xXT +atE aop apc ako @@ -58364,30 +66314,30 @@ ayx azd ako aAJ -apo -apo +cCY +mSi anJ -aEb -aEO -aEO -aEO +kuj +gqF +gVn aEO +ntw aEO aJr aEO coT aEO aEO -aNY -aKx +jJP +fhx aNS -aRk +vXF anJ -bhR -aHF -aHF -aHF -aHF +aTh +kZX +cIE +nfP +cPr asv aXS aYs @@ -58399,11 +66349,11 @@ asv asv asv asv -asv +iuU asv beK bfn -asv +iuU bgg bgg bgO @@ -58563,7 +66513,7 @@ khK xQd xQd ako -ape +djV mfG apO aqR @@ -58573,20 +66523,20 @@ asO atE apc ako -hto -aop +atE +eSO axi ako ako ako ako aAJ -apo +tDs apo anJ aEc -aEc -aFY +hSX +isS aGJ aCP aIv @@ -58595,18 +66545,18 @@ aKz aLv anJ aMJ -aFW +lxz aKx aNS -aEO +pGU aqz -aTi -aVp -aVp -aVp -aVp +oJP +iDC +kRT +kRT +sub aXq -bcX +ych bcX bcX aZF @@ -58616,11 +66566,11 @@ bbA bbA bbA aZF -bdU +mdO aZF beL bfo -asv +iuU bgh bgu bgh @@ -58640,14 +66590,14 @@ awp awp awp bWk -bWk +cIq ntX nVx nVx nVx nVx nVx -nVx +hrs nVx eRc uvZ @@ -58781,31 +66731,31 @@ aao aao ako jNE -ape -eJU -aqS -ape +pdB +uVH +taD +kGK ako asP -apc +xqy apc auV apc -aop -apc +eSO +jwU axR -ayw -azc +giC +rPs ako aAJ -apo +gbA apo anJ anJ anJ anJ anJ -anJ +xLd anJ anJ anJ @@ -58817,11 +66767,11 @@ anJ sPv aRo anJ -aTj -aMg -aMg -aMg -aHF +gSL +wDQ +iww +xsn +eak bET aXr aXr @@ -58835,11 +66785,11 @@ bbB bai bai bbB -beM +aXU bfp -asv +iuU bgi -bgv +hmW aLg bgg bgg @@ -58855,10 +66805,10 @@ bep bep bep bep -bep -bqa -bWk -bMf +bjc +uDc +iBF +qTH xJC mzV mzV @@ -58997,48 +66947,48 @@ aao aao aao ako -ygN -apg -apP -ape -ape +opn +oEz +poL +kGK +vnJ ako -asQ +vjW atE atE ovq apc -aop -apc +dsn +atE ako -ayx -azd +czE +nGl ako aAK apo -apo -kMk -apo -apo -apo -apo -apo -apo -apo -apo +jAV +qAk +uLZ +vnD +gbA +btT +lIb apo apo +kGz apo +ois +xro apo anT -aQa -aCZ +uiF +iWi anT aTk aQu -aQu -aQu -aTr +gwf +uxk +aSi asH aXU aYt @@ -59048,20 +66998,20 @@ asv asv asv asv -asv -asv -asv -asv +jYP +jYP +fYU +jYP beI bft -asv +iuU bgj bgw bgQ bgg bhY asv -bjb +gLe bjm bes bes @@ -59070,18 +67020,18 @@ bes bes bes bes +xxx bes bes -bes -bpX -bWk -bMf -mzV -mzV +fEb +rvP +bSk mzV +txi mzV mzV mzV +txi mzV pcI uvZ @@ -59215,89 +67165,89 @@ aao aao ako jNE -ape -apN -aqT -ape +oMD +ria +ueM +uVd ako -asR +tjx atF atE ako -apc -aop -apc +jwU +kSn +dyj ako ako ako ako -aAK -apo -apo -apo +mEW apo apo apo apo apo +gbA +fxe +ovm iOR apo -apo -apo -apo -apo +gbA +gbA +gbA +gbA apo aOU aQa -aCZ +jij aOU aTk aQu -aVq -aVq +dpU +lKL aTr asv aXV aYu aZd asv -baj -baP -bbC -asv -bcY +dEN +bwA +vvn +eUX bcY -aKn -asv +xJY +tfu +sEp beI bft +iuU +iuU asv asv asv asv asv -asv -asv -bqa -kwQ +nkx +juF bjl bes bes +pCa bes bes bes bes bes bes -bes -bpX -bqa -bMf -mzV +xoc +dzd +gmp mzV mzV mzV mzV +ptQ mzV mzV pcI @@ -59441,53 +67391,53 @@ asS atG aub ako -atE -aop +wPC +cFx apc axR -ayw +nwe azc ako aAJ apo -apo -apo -apo -apo -apo -apo -apo -apo -apo -apo -apo -apo -apo -apo +kYs +cPh +gbA +ptq +gmE +iVu +uOy +taj +hrX +gbA +ebT +gbA +buF +gqJ anT aQb -aCZ +quU anT aTk aUk -aKP -aKP +oCK +yfY aTr asv asv asv asv asv -aXr +cnQ baO -aXr -bck -aXU -aXr -bdW +jXA +tQG +ozs +qGT +niR asv beN -bfq +hhf bfO bgk bgx @@ -59495,21 +67445,21 @@ bgR bhk bgx biD -bqa -bja +uZG +uaU beq bhr bes bes bes bes +sqM bes bes bes -bes -bpX -bqa -bMf +fEb +vIe +vap mzV eWo mzV @@ -59651,14 +67601,14 @@ pmS aou aph apR -aou -arw +uzD +iXD ako bqA atG auc ako -atE +wyh aop apc ako @@ -59666,7 +67616,7 @@ ayx azd ako aAJ -apo +vvI anT anX anX @@ -59687,8 +67637,8 @@ aRp anT aTk aUk -aKP -aVY +oCK +jjR aXW aSg aTq @@ -59698,22 +67648,22 @@ asv asv asv asv -asv -bcZ +lhN +cDG bdA -aXU -bck +kIX +tUa beI bfr bfP -bgl +xUX bfP bfP bhl bbB bET -bqa -bja +fEb +tHM beq bes bes @@ -59724,13 +67674,13 @@ bes bes bes bes -bpX -bqa -bja -mzV +fEb +vIe +tHM mzV mzV mzV +cWX mzV mzV mzV @@ -59864,25 +67814,25 @@ aao aao pmS hqO -amE +tdE aou -api +iwo apS -aqV -aqV -asi -apd +tbl +tbl +gdy +tNa atH aud amZ -avH -awv -axj +tTd +atH +myu ako ako ako ako -aAK +pwX apo anU nWG @@ -59904,8 +67854,8 @@ aIE anT aTk aUk -aKP -aKP +oCK +uxk aKP aSh aTr @@ -59915,35 +67865,35 @@ asH baj baP bbC -asv +eUX bda -aXr -bdY -asv +bLG +kIX +jYP beI -bfs -asv -asv +uao +iuU +iuU asv asv asv asv asv -bqa -bqa -bpY -bpY -bpY -bpY -bpY -bpY -bpY -bpY -bpY -bpY -bqa -bqa -bja +oOj +thC +cFd +cFd +hcK +cFd +cFd +cFd +cFd +cFd +cFd +ofO +inN +inN +tHM bes mzV eWo @@ -60083,7 +68033,7 @@ amE hqO ako ako -apj +krZ ako ako ako @@ -60093,9 +68043,9 @@ ako ako ako avI -apc -axk -axS +jbd +wpV +uTB mnY kwq mnY @@ -60119,10 +68069,10 @@ aOW aQe aQm aqU -aTk +len aUl -aOk -aOk +oCK +sWt aOk aQu aTr @@ -60133,34 +68083,34 @@ aXr baO aXr bck -aXr -aXr -bdY -asv -beI +wxG +jXA +bJJ +eOS +tdT bft -asv +iuU bgm bgy -bgS -bhm -bhZ +eft +chx +lIv asv -gSg -bqa -bqa -bqa -bqa -bqa -bqa -bqa -bqa -bqa -bqa -bqa -bqa -bqa -bja +xoc +inN +vIe +vIe +vIe +vIe +xOg +vIe +qId +aZP +xOg +vIe +inN +vIe +tHM bes mzV mzV @@ -60293,31 +68243,31 @@ aao aao aao aao +hGy pmS -pmS -pmS +owg pmS hqO ako aov -apk +txM apT aqW -arx +ncc ako asW asU asW ako -avJ -apc -axl +vWt +erf +mQA ovq apo -aqa -ata -apo -apo +ffK +sHg +gbA +gbA tKR aCo aCZ @@ -60336,48 +68286,48 @@ aOX aQf aQh aqU -aTl -aTu -aTu -aTu -aTu -aTu -aTq +abW +qBx +haV +xaC +qBx +dmE +aTr aTq aTq asv asv asv asv -asv -aXr +iuU +iaa bdB bdW -asv +hDX beI bft -asv +iuU bgm bgz bgB bgB bfR asv -gSg -bqa -bep -bep -bep -bep -bep -bqa -bqa -bqa -bqa -bep -bep -bep -bjc +xoc +vIe +hUe +hUe +hUe +kdi +kdi +inN +vIe +vIe +vIe +hUe +hUe +hUe +nBd lvy lvy lvy @@ -60511,30 +68461,30 @@ aao aao aao pmS -pmS +sMg pmS pmS hqO ako aov -apk -apU +cIC +vcy aoB -arx +oXj ako apU apU aoB ako -apc -avJ -apc +atE +atE +dgI ako -aBu +ycW arD arD aMk -apo +nNS anU aCZ aCZ @@ -60553,49 +68503,49 @@ aOY aQg aCo aqU -aDy -aSg -aSg -aSg -aSg -aSg -aTq +lcb +haV +etw +etw +etw +gcs +aTr aTq aTq asv -aXr -aXr -aXr +qeH +cUK +ooC bck -aXr -aXU -bdW +usU +rqt +qDu asv beI bft -asv +iuU bgn bgz bgT bgB bfR biE -gSg -bja +xoc +tHM bjl bes bes bes bes -bpX -bqa -bqa -wGF -bes -bes +fEb +vIe +inN +nRv bes +wkv bes bes +xxx bes bes mzV @@ -60733,25 +68683,25 @@ alG pmS hqO ako -aow -apk +tCy +cIC apU apU -arx +oXj aml -apU -apU -aoB -aml -apc -apc +cDC +dUc +eTK +qUT +qqa +pfJ apc aku aBu -arD +kYO arD aMk -apo +gbA anU fXR aCo @@ -60770,8 +68720,8 @@ aOZ aMQ aMN aqU -aTk -aQu +lcb +uxk aVq aVq aVq @@ -60781,11 +68731,11 @@ aTq aTq asH baj -aIo -bbC +lHK +jxZ asv asv -bdC +ctE asv asv beI @@ -60793,21 +68743,21 @@ bfu bfQ bgo bgA -bgU -bhn +eIj +jsc bgB bET -gSg -bja +xoc +kjS bjm bes bes +pCa bes -bes -nbc -bep -bep -bjc +tqg +vIe +vIe +tHM vVZ aao vVZ @@ -60952,17 +68902,17 @@ aao ako aov apk -apV -apU -aoB +iJu +lun +xCX +mGy +mAv +qnj +oCg ask -aoB -aoB -aoB -ask -apc -apc +lQW apc +avJ aku aBu arD @@ -60987,8 +68937,8 @@ aPa aQh aRq anT -aTk -aQu +lcb +yfY aVr aVY aKP @@ -61001,9 +68951,9 @@ asv asv asv asv -bdb -aXr -aXr +veU +suP +eJI asv beI bbB @@ -61014,17 +68964,17 @@ bgB bgB bia asv -bqa -bto +hST +ctw bjm -bes +xxx bes bes ejP -ujD -ujD -ujD -ujD +egg +xXV +xXV +aqP vVZ rjw fCb @@ -61171,17 +69121,17 @@ aox apl apW apY -ary +mgX amm apY -apY +wAd asY aml atE aww apc aku -aBu +xgm arD arD aMk @@ -61204,8 +69154,8 @@ aOX aQi aLE aSe -aTk -aUm +lcb +gMa aUk aKP aKP @@ -61218,30 +69168,30 @@ aTq aTq aTq asv -bwA -bdD -aXU +idb +uWB +mcd asv beI bbB asv -bgp -bgp +uiq +srz bgV bhp aLi asv -bja +kwQ beq bjm bes bhr aao aao -mxf -uij -uij -uVe +tNf +bUJ +xNa +cSP brD fCb fCb @@ -61384,11 +69334,11 @@ alI alH aao ako -aov -apk -aoB -aoB -ahq +sOq +pWp +ojs +bPq +pdT ako asV aoB @@ -61400,9 +69350,9 @@ apc aku aBu arD -arD +rOP aMk -apo +mEE anU aCf aCZ @@ -61421,8 +69371,8 @@ aPb aQj aRr tKR -aTk -aQu +lcb +uxk aUk aKP aKP @@ -61455,10 +69405,10 @@ bes bes aao aao -neH -whi -bqb -iXp +tNf +gkO +utQ +cSP aao aao rjw @@ -61603,16 +69553,16 @@ aao ako aoy apk -aoB +qaF aqW -arx +hBk ako asW oDB asW ako avJ -avJ +atE axi ako aBu @@ -61638,8 +69588,8 @@ aPc aQk aIE anT -aTk -aQu +lcb +uxk aVs aKP aKP @@ -61672,10 +69622,10 @@ bes bes aao kBn -ujD -ujD -ujD -ujD +eGq +kNa +kNa +gHD vVZ brE fCb @@ -61819,7 +69769,7 @@ akY aao akL akU -apm +chH akU akU akL @@ -61829,13 +69779,13 @@ akL akL akL cQO -apc +atE avJ ako aBu +rdf arD -arD -aMk +suR anU aCi aCZ @@ -61855,8 +69805,8 @@ aPa aQl aCo aqU -aTk -aUk +lcb +yfY aKP aKP aKP @@ -61884,15 +69834,15 @@ beq rBK bfw bhq -bes -bes +sqM +qIp bes bes aao -mxf -uij -uij -uVe +tNf +eEO +hVG +cSP vVZ vVZ vVZ @@ -62039,17 +69989,17 @@ aoA apk apX apU -arA +tOO apU asX aoB -auf +cgL uwV ant ant ant ako -aBu +xgm arD arD aMk @@ -62072,11 +70022,11 @@ aPe aQm aLE aqU -aTk -aUk -aKP +iaO +yfY aKP aKP +laO aKP aKP aWK @@ -62106,10 +70056,10 @@ bkh bkV bkV aao -cAs -mDs -mDs -ooD +tNf +xNa +xNa +cSP vVZ fCb fCb @@ -62252,24 +70202,24 @@ aao aao aao akL -aoB -apk -aoB -apU -apU -apU -aoB +pwa +cIC +qYH +qJh +bZH apU +qFq +qJh aoB akL gbA -aqa -aqa -aqa +ffK +pHf +ata rzR cHH aCW -aMk +tkf anU aOc aCo @@ -62289,8 +70239,8 @@ aPb aIE aCZ aqU -aTk -aUk +lcb +yfY aVt aKP aKP @@ -62298,7 +70248,7 @@ aKP aKP aKP aKP -aKP +jrj aKP aKP aKP @@ -62323,10 +70273,10 @@ bki beq beq aao -cAs -mDs -mDs -ooD +eGR +bUJ +xNa +cSP myY kTs fCb @@ -62469,14 +70419,14 @@ aao aao aao akL -aoB +pqj apn -apY -apY -arB -apY -asY -aoB +lXt +tcI +oGr +fik +syK +xHb aug akL xgm @@ -62497,7 +70447,7 @@ aCZ tKR aIC aJx -aKH +kbd anT aCZ aIE @@ -62506,8 +70456,8 @@ aQc aQn aIE anT -aTk -aQu +lcb +yfY aVr aKP aKP @@ -62518,7 +70468,7 @@ aKP aKP aKP aKP -aKP +kmk aKP aKP aKP @@ -62540,10 +70490,10 @@ beq beq aao aao -cAs -mDs -mDs -ooD +tNf +bUJ +bUJ +cSP myY fCb fCb @@ -62689,11 +70639,11 @@ akL agP aoB apZ -aoB +apU arC -aoB +pwa auh -aoB +bPq auh akL aBu @@ -62723,8 +70673,8 @@ aPh aOV aCZ aqU -aTk -aUn +rhB +xHX aUk aKP aKP @@ -62738,7 +70688,7 @@ aKP aKP aKP aKP -aKP +laO aKP bes bes @@ -62751,16 +70701,16 @@ bes bes iVi bes -bes +xxx bki bky aao aao aao -cAs -mDs -mDs -ooD +tNf +xNa +lnK +cSP vVZ fCb kTs @@ -62913,7 +70863,7 @@ akL akL akL akL -aBu +xgm aCc pLH pgh @@ -62940,11 +70890,11 @@ aOb aQo aQl aqU -qhl -aVv +sOZ +uxk aUk aKP -aKP +hDT aKP aKP aKP @@ -62960,7 +70910,7 @@ aKP bes bes bes -bes +xJp bes bes bes @@ -62974,10 +70924,10 @@ beq aao aao aao -sJq -bpZ -bpZ -qkC +eSK +gsM +gsM +lAN vVZ kTs fCb @@ -63137,7 +71087,7 @@ pgh aao aao fEE -aMk +cJn anU aCo aCZ @@ -63157,12 +71107,12 @@ aPi aQp aQm aqU -qhl -sEh +sOZ +uxk aUk aKP aKP -aKP +mbh aKP aKP aKP @@ -63191,10 +71141,10 @@ aao aao aao aao -lSS -nUV -nUV -rRO +eWW +tYj +tYj +oEB pbr pbr pbr @@ -63350,11 +71300,11 @@ pLH aCc aCc aCc -ukW -kzF +gOK +xgr aao fEE -aMk +tkf anU aCp aDb @@ -63374,8 +71324,8 @@ aPj aQq aRs anT -qhl -wIj +tTv +yfY aUk aKP aKP @@ -63394,12 +71344,12 @@ aKP bes bes bes +gKF bes bes bes bes -bes -bes +mrF iVi bes bes @@ -63567,9 +71517,9 @@ aao aao pLH aCc -pLH +bFx ukW -rrF +wtu kpd aMk anW @@ -63591,12 +71541,12 @@ anW anW anW anW -aDy -wIj +lcb +yfY aUk aKP aKP -aKP +oNd aKP aSi aZe @@ -63807,9 +71757,9 @@ eBL eBL eBL anW -aTq -aDy -sEh +uwP +uDe +uxk aUk aKP aWL @@ -64024,9 +71974,9 @@ aEi aEi aEi aqx -aTq -aDy -wIj +oCK +mNP +yfY aUk aKP aKP @@ -64045,7 +71995,7 @@ atb bja bes bes -bes +qIp bes bes bes @@ -64241,13 +72191,13 @@ pSf iEm lmO aqx -aTq -aDy -wIj +oCK +mNP +yfY aQu aVr aKP -aKP +uFN aKP aTr atd @@ -64458,9 +72408,9 @@ unS rKe eeI anW -aTq -qhl -wIj +uoo +otX +yfY aQu aUk aKP @@ -64477,7 +72427,7 @@ baR nRT atb bja -bes +gKF bes bes bes @@ -64675,9 +72625,9 @@ pSf qcE mIs aRu -nnK -mNT -wIj +xiP +gjN +yfY aQu aUk aKP @@ -64892,9 +72842,9 @@ aEi sHO vFA ocA -aTq -qhl -wIj +oCK +otX +yfY aQu aQu aOk @@ -64921,7 +72871,7 @@ aEX aEX bes bes -bes +pCa bes aao aao @@ -65109,14 +73059,14 @@ oes nnA jUJ anW -aTq -phx -aTt -aSf -aSf -aWM -aSf -aSf +xBv +lNg +qRm +dxH +dxH +fTj +dxH +dTI aYv atd nRT @@ -65310,9 +73260,9 @@ aCc aCc aMk apo -apo -nrA -apo +pbM +dZl +kle anW voz wBK @@ -65326,14 +73276,14 @@ aEi iaS aui aqx -aTq -aDy -aTp -aSg -aSg -aSg -aSg -aSg +oCK +mNP +xaC +etw +etw +etw +etw +vby qhl atb nRT @@ -65355,7 +73305,7 @@ bes bes bes bes -bes +pCa bes bes bes @@ -65527,11 +73477,11 @@ pLH aCc aMk apo -apo -apo -apo +dgi +nQF +qRj anW -lTC +vfW nuQ whw vFA @@ -65543,9 +73493,9 @@ sEb sEb nkE aqx -aTq -aDy -wIj +oCK +mNP +yfY aQu aVq aVq @@ -65743,10 +73693,10 @@ aao aao rLM aMk +cPh +pbM apo -apo -apo -apo +qxo anW anW anW @@ -65760,12 +73710,12 @@ aoc aoc anW anW -aTq -qhl -wIj +oCK +otX +yfY aUk aKP -aKP +mUW aWK aQu aYx @@ -65776,7 +73726,7 @@ baT bbF bap baT -bdG +aKL atb bja bes @@ -65785,10 +73735,10 @@ bes bes bes bes +xJp bes bes -bes -bes +qIp bes bes bes @@ -65960,29 +73910,29 @@ aao aao arD bMz +hQD aqa aqa +ejG aqa aqa aqa +ata aqa -aqa -aqa -aqa -aSg -aSg -aSg aSg +mzu aSg aSg aSg +mzu +mzu aSg -aTq -qhl -wIj +oCK +otX +yfY aUk aKP -aKP +hDT aKP aSh aYx @@ -66177,10 +74127,10 @@ aao aao arD arD +eJf arD arD -arD -arD +rOP arD arD arD @@ -66192,15 +74142,15 @@ aKP aKP aKP aKP -aKP +mUW aMR -aTr -aDy -wIj +mgz +mNP +yfY aQu aVr aKP -aKP +ixH aSh eYA aZh @@ -66222,7 +74172,7 @@ bes bes bes bes -bes +gKF bes bes aao @@ -66400,22 +74350,22 @@ arD arD arD arD +iNe arD arD -arD -aKP aKP +laO aKP aKP aKP aKP aMR aQu -aTr -aDy -aTp -aTu -qoS +dpU +mNP +mlt +dmE +mwq aTu aTu aTu @@ -66614,8 +74564,8 @@ aao aao arD arD -arD -arD +eJf +lSU aao aao aao @@ -66628,10 +74578,10 @@ aOk aOk aQu aQu -aTr -aDy -aTq -aTq +oCK +poV +fFs +uxk dTB rbs rbs @@ -66845,14 +74795,14 @@ aQu aQu aQu ceA -aTr -aDy -aTq -aTq +oCK +uDe +haV +yfY rbs oPM eKZ -pAX +ifC hKO dTB nRT @@ -66868,7 +74818,7 @@ bes aEX aEX bes -bes +xxx bes bes bes @@ -67062,12 +75012,12 @@ aao aao aao dvz -rnK -shn -qWT -rnK +prz +cgi +rTc +uFZ dvz -djo +ttr xsX xTk rkh @@ -67279,15 +75229,15 @@ aao aao aao lLe -sVk -xTV -vUw -iKn +gVF +mRz +fmx +dWx rbs aIe -pAX -pAX -qLD +mqO +ntF +jxj dvz dTB aJy @@ -67496,15 +75446,15 @@ aao aao aao aao -hLs -xTV -iKn -hNW +ruo +mRz +sML +jjL dTB jKp -dFL -pAX -dKk +qpP +ntF +gJB fyZ dTB atb @@ -67713,15 +75663,15 @@ aao aao aao dTB -juZ -xTV -iKn -iKn +noQ +mRz +sML +ieW xaE -pAX -pAX -pAX -pAX +jSt +mqO +ntF +ifC gEM aao aao @@ -67930,15 +75880,15 @@ aao aao aao aao -hLs -xTV -iKn -qJB +ruo +mRz +sML +bKV dTB -mYV -pAX -pAX -rDa +rGD +ntF +jSt +jbq cry aao aao @@ -68147,15 +76097,15 @@ aao aao aao sYL -hLs -aUv -iKn -iKn +ruo +rnv +sML +dWx rbs nIS pAX -pAX -qLD +ifC +uLT dTB aao aao @@ -68364,14 +76314,14 @@ aao aao aao dTB -iFz -qbG -iFz -iFz +qbp +rbl +hvd +oox dTB -dAd -oHn -pAX +efF +pxP +ifC qLD xZL aao @@ -68581,14 +76531,14 @@ aao aao aao aao -aTw -pmV -aTv -aTv +bGQ +eJu +iyp +oBy rbs lAR oJv -pAX +ifC irZ dTB aao @@ -68798,10 +76748,10 @@ tQw aao aao aao -vFH -pmV -aTv -kqO +nVJ +xfp +lqC +wdd dTB rbs rbs @@ -69015,14 +76965,14 @@ tQw tQw aao aao -dJr -sVM -xWv -wOK -kUW +bQw +qjm +oof +mHx +vRX aOn -nfY -nfY +spd +spd pgV gCE gCE @@ -69233,8 +77183,8 @@ gXp gXp hFg eFh -sRV -aMT +tbe +oBy tQw ujC ujC @@ -69450,8 +77400,8 @@ tQw tQw tQw eFh -sRV -aMT +uWv +oBy tQw tQw pIN @@ -69667,8 +77617,8 @@ tQw tQw tQw eFh -sRV -aMT +wmm +rrV tQw tQw aWN @@ -69868,7 +77818,7 @@ aAP aAP aCs aAP -aEm +xuV aFf anI aao @@ -69878,14 +77828,14 @@ anI anI anI anI -kZI +nEv gmN tQw tQw tQw arK -qKH -aMT +uek +hfo tQw tQw ujC @@ -70065,7 +78015,7 @@ alP anq anS anS -apv +viJ adZ adZ auY @@ -70095,14 +78045,14 @@ uaB uaB uaB aMq -aTv -aOm -aOm -aOm -aOm -aSl -pmV -aMT +bJb +hEN +hEN +vhP +vhP +ozW +eJu +oBy tQw ujC ujC @@ -70312,14 +78262,14 @@ aJE aKQ aKQ hmm -aTv -aOn -aOn -aOn -aOn -aTv -pmV -aMT +lqC +pxV +pxV +sQP +sQP +iyp +qnT +rrV tQw tQw pIN @@ -70529,14 +78479,14 @@ aJF anI anI anI -jvW +tMA gXp gXp gXp gXp -aTw -ocR -uoj +evt +myW +hcR tQw tQw aWN @@ -71378,7 +79328,7 @@ auu avh agd agd -axq +sBB amk anI ayE @@ -76164,7 +84114,7 @@ aao aao aob aob -aGZ +mTQ aHT aJa aJZ diff --git a/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm b/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm index f4ec5053616a..907f40733d2e 100644 --- a/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm +++ b/maps/map_files/BigRed/sprinkles/10.prison_breakout.dmm @@ -10,31 +10,11 @@ /obj/structure/surface/table, /turf/open/floor/white, /area/bigredv2/outside/marshal_office) -"ad" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/corpsespawner/prisoner, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) -"ae" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) "af" = ( /obj/structure/surface/table, /obj/effect/decal/cleanable/dirt, /turf/open/floor/white, /area/bigredv2/outside/marshal_office) -"ag" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/whitegreen/east, -/area/bigredv2/outside/marshal_office) "ah" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/marshal_office) @@ -59,19 +39,6 @@ }, /turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) -"an" = ( -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_x = 30 - }, -/obj/item/tool/soap/deluxe, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) -"ao" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/marshal_office) "ap" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/white, @@ -85,31 +52,9 @@ }, /turf/open/floor/freezerfloor, /area/bigredv2/outside/marshal_office) -"as" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Marshal Office Prison" - }, -/turf/open/floor/whitegreenfull/northeast, -/area/bigredv2/outside/marshal_office) "at" = ( /turf/closed/wall/solaris, /area/bigredv2/outside/marshal_office) -"au" = ( -/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/whitegreenfull/northeast, -/area/bigredv2/outside/marshal_office) -"av" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Marshal Office Prison Toilet" - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/marshal_office) "aw" = ( /obj/structure/bed, /turf/open/floor/white, @@ -145,69 +90,10 @@ /obj/structure/machinery/flasher/portable, /turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) -"aC" = ( -/obj/structure/closet/l3closet/security, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) "aD" = ( /obj/structure/closet/l3closet/security, /turf/open/floor/vault2/west, /area/bigredv2/outside/marshal_office) -"aE" = ( -/obj/structure/surface/rack, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"aF" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/revolver/cmb, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"aG" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/revolver/cmb, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) -"aH" = ( -/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) -"aI" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - icon_state = "door_locked"; - name = "\improper Marshal Office Prison" - }, -/turf/open/floor/whitegreenfull/northeast, -/area/bigredv2/outside/marshal_office) -"aJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 1; - icon_state = "door_locked"; - name = "\improper Marshal Office Prison" - }, -/turf/open/floor/whitegreenfull/northeast, -/area/bigredv2/outside/marshal_office) -"aK" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - density = 0; - dir = 1; - icon_state = "door_open"; - name = "\improper Marshal Office Prison" - }, -/turf/open/floor/whitegreenfull/northeast, -/area/bigredv2/outside/marshal_office) -"aL" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/vault2/west, -/area/bigredv2/outside/marshal_office) "aN" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, @@ -227,39 +113,6 @@ "aR" = ( /turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) -"aS" = ( -/obj/structure/surface/rack, -/obj/item/clothing/accessory/storage/black_vest, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"aT" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"aU" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"aV" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"aW" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"aX" = ( -/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) "aY" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor, @@ -296,13 +149,6 @@ }, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"be" = ( -/obj/structure/machinery/power/apc/power/south, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) "bg" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark, @@ -330,11 +176,6 @@ /obj/effect/landmark/good_item, /turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) -"bm" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) "bn" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -350,12 +191,6 @@ }, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"bq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Marshal Office Brig" - }, -/turf/open/floor/delivery, -/area/bigredv2/outside/marshal_office) "br" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/delivery, @@ -364,29 +199,6 @@ /obj/structure/closet/secure_closet/marshal, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"bt" = ( -/obj/structure/surface/table, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"bu" = ( -/obj/structure/surface/table, -/obj/item/ammo_magazine/shotgun/buckshot, -/obj/structure/machinery/camera/autoname, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"bv" = ( -/obj/structure/surface/table, -/obj/item/clothing/head/beret/sec/warden, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"bw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/ammo_casing/shell, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) "bx" = ( /obj/structure/machinery/computer/secure_data, /obj/structure/surface/table, @@ -424,27 +236,6 @@ /obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, /area/bigredv2/outside/marshal_office) -"bH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/obj/item/ammo_casing/shell, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"bI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood, -/obj/item/tool/screwdriver, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"bK" = ( -/obj/effect/landmark/corpsespawner/prison_security, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) "bL" = ( /obj/structure/window_frame/solaris, /obj/item/shard, @@ -479,24 +270,6 @@ /obj/effect/landmark/crap_item, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"bS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"bT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"bU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/item/ammo_casing/shell, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) "bV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -543,21 +316,6 @@ "cb" = ( /turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/n) -"cc" = ( -/obj/structure/surface/table, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"ce" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/armor/riot, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) -"cf" = ( -/obj/item/shard, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) "cg" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -611,10 +369,6 @@ /obj/item/shard, /turf/open/floor/plating, /area/bigredv2/outside/marshal_office) -"cp" = ( -/obj/structure/window_frame/solaris, -/turf/open/floor/plating, -/area/bigredv2/outside/marshal_office) "cq" = ( /turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/n) @@ -636,15 +390,6 @@ /obj/effect/landmark/survivor_spawner, /turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) -"cw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) -"cx" = ( -/obj/item/shard, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) "cy" = ( /obj/structure/machinery/light{ dir = 1 @@ -663,13 +408,6 @@ }, /turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) -"cB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/marshal_office) "cC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -688,11 +426,6 @@ }, /turf/open/floor, /area/bigredv2/outside/marshal_office) -"cK" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) "cL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/green{ @@ -730,11 +463,6 @@ /obj/item/tool/kitchen/knife, /turf/open/floor/redcorner, /area/bigredv2/outside/marshal_office) -"cQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor/redcorner, -/area/bigredv2/outside/marshal_office) "cR" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -792,11 +520,6 @@ "cZ" = ( /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"da" = ( -/obj/effect/landmark/corpsespawner/prisoner, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/dark, -/area/bigredv2/outside/marshal_office) "db" = ( /obj/structure/machinery/door_control{ id = "Marshal Offices"; @@ -849,9 +572,37 @@ }, /turf/open/floor, /area/bigredv2/outside/marshal_office) +"dl" = ( +/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) "do" = ( /turf/open/mars/mars_dirt_10, /area/bigredv2/outside/n) +"dt" = ( +/obj/structure/closet/l3closet/security, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"dG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/rack, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/outside/marshal_office) +"ea" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_y = -2 + }, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"es" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) "fh" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; @@ -859,15 +610,6 @@ }, /turf/open/floor/delivery, /area/bigredv2/outside/marshal_office) -"fD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor, -/area/bigredv2/outside/marshal_office) "gu" = ( /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/n) @@ -876,28 +618,211 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"if" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"ix" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/landmark/objective_landmark/far, +"gL" = ( +/obj/structure/machinery/light, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"gV" = ( +/obj/structure/machinery/deployable/barrier, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) -"jq" = ( -/obj/structure/machinery/camera/autoname, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1; +"hc" = ( +/obj/item/trash/wy_chips_pepper{ + pixel_y = -13; + pixel_x = 24 + }, +/obj/item/stack/sheet/metal{ + pixel_x = 10; + pixel_y = -5 + }, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = 3; + pixel_x = -1 + }, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"hF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/item/weapon/gun/pistol/holdout{ + pixel_x = 9; + pixel_y = 18 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"if" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/n) +"ip" = ( +/obj/item/weapon/shield/riot, +/obj/item/frame/table/reinforced, +/obj/item/shard, +/obj/item/shard, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"ix" = ( +/obj/structure/closet/secure_closet/brig, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"iH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/botany, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"jj" = ( +/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) +"jn" = ( +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"jo" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/weapon/baton/cattleprod{ + pixel_x = 11; + pixel_y = -7 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"jq" = ( +/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) +"jW" = ( +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"kG" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"lU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"mz" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"mB" = ( +/obj/item/reagent_container/food/snacks/syndicake{ + pixel_x = -8; + pixel_y = -4 + }, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"np" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"nz" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"nV" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/plating/platingdmg1, +/area/bigredv2/outside/marshal_office) +"ov" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/item/frame/table, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"pj" = ( +/obj/item/frame/table, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"pw" = ( +/obj/item/clothing/mask/gas{ + pixel_y = 7; + pixel_x = 7 + }, +/obj/item/stack/folding_barricade{ + pixel_y = -4; + pixel_x = 1 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"pG" = ( +/obj/structure/surface/table, +/obj/structure/machinery/camera/autoname, +/obj/item/ammo_magazine/shotgun/slugs, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "qm" = ( /obj/structure/bed, /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) +"qG" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/revolver/cmb{ + pixel_y = -1; + pixel_x = -3 + }, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"qM" = ( +/obj/item/clothing/mask/gas{ + pixel_y = 9 + }, +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"qX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/weldingtool{ + pixel_x = 2; + pixel_y = 10 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"rA" = ( +/obj/item/clothing/mask/gas, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "rC" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -914,15 +839,372 @@ }, /turf/open/floor/red/southwest, /area/bigredv2/outside/marshal_office) +"so" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"sy" = ( +/obj/item/ammo_casing/shell, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"sR" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/botany, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"tu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/stack/sheet/metal{ + pixel_x = 1 + }, +/obj/item/frame/rack, +/turf/open/floor/plating/platingdmg1, +/area/bigredv2/outside/marshal_office) +"ug" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/clothing/suit/armor/riot{ + pixel_y = -9; + pixel_x = -12 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"ui" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"uo" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"ut" = ( +/obj/item/clothing/mask/gas{ + pixel_x = 10; + pixel_y = -12 + }, +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"uy" = ( +/obj/item/stack/sheet/metal{ + pixel_x = 3; + pixel_y = -11 + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"uA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/botany, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"uX" = ( +/obj/structure/barricade/deployable, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"vi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/armor/riot{ + pixel_y = 5; + pixel_x = 7 + }, +/obj/item/shard, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"wm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"wB" = ( +/obj/item/storage/toolbox{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) "wL" = ( /obj/structure/machinery/light, /turf/open/floor/bcircuit, /area/bigredv2/outside/marshal_office) -"zX" = ( +"xk" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/medium, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"xF" = ( +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_y = -9 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"yb" = ( +/obj/structure/window_frame/solaris, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"yx" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Marshal Office Prison Toilet" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"yY" = ( +/obj/item/ammo_casing/shell, +/obj/item/storage/box/MRE{ + pixel_x = -1; + pixel_y = -6 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"za" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/shell, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"zv" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"zD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Marshal Office Brig"; + density = 0; + icon_state = "door_open" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"AG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/revolver/small{ + pixel_x = -11; + pixel_y = 13 + }, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"AI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/tool/screwdriver{ + pixel_x = -13; + pixel_y = 9 + }, +/obj/item/tool/crowbar/red{ + pixel_y = -14; + pixel_x = 2 + }, +/obj/item/stack/tile/plasteel{ + pixel_x = 16; + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/bigredv2/outside/marshal_office) +"BS" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/obj/structure/machinery/power/apc/power/south, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/marshal_office) +"DR" = ( +/obj/item/weapon/shield/riot{ + pixel_x = -3; + pixel_y = -7 + }, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"Ee" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + density = 0; + dir = 1; + icon_state = "door_open"; + name = "\improper Marshal Office Armory" + }, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/marshal_office) +"Ek" = ( +/obj/item/stack/folding_barricade{ + pixel_x = 1; + pixel_y = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"Fs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/revolver/cmb{ + pixel_y = -11; + pixel_x = 5 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/trash/sosjerky{ + pixel_x = -12; + pixel_y = 17 + }, +/obj/item/ammo_magazine/revolver/cmb{ + pixel_y = 1; + pixel_x = -7 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"FA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/armor/riot{ + pixel_x = -8; + pixel_y = -5 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"FK" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"Gs" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"Hl" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs{ + pixel_y = -9; + pixel_x = -7 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"Ho" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/bullet, +/turf/open/floor, +/area/bigredv2/outside/marshal_office) +"HO" = ( +/obj/structure/surface/table, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_color = "red"; + phone_id = "Marshal Office" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"HS" = ( +/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) +"Io" = ( +/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) +"IR" = ( +/obj/structure/machinery/light, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/obj/item/shard, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/marshal_office) +"Kb" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "Marshal Offices"; + name = "Storm Shutters"; + pixel_y = 24 + }, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"Ll" = ( +/obj/effect/landmark/corpsespawner/security, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"Lq" = ( +/obj/structure/barricade/deployable{ + dir = 8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"LM" = ( +/obj/item/frame/rack, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"Ml" = ( +/obj/item/ammo_casing/shell, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/obj/item/tool/kitchen/knife/butcher{ + pixel_x = 8; + pixel_y = 12 + }, /turf/open/floor/dark, /area/bigredv2/outside/marshal_office) +"Mq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_y = -8; + pixel_x = -6 + }, +/obj/item/trash/semki{ + pixel_y = -14 + }, +/obj/item/stack/sheet/metal{ + pixel_x = 10; + pixel_y = -5 + }, +/turf/open/floor/plating/platingdmg1, +/area/bigredv2/outside/marshal_office) +"MH" = ( +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_x = 30 + }, +/obj/item/tool/soap/deluxe{ + pixel_y = -7; + pixel_x = -9 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/marshal_office) "MM" = ( /obj/structure/window/framed/solaris/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -931,6 +1213,20 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/medical) +"MS" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"Nc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/armor/riot{ + pixel_y = -6; + pixel_x = -8 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "No" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -938,30 +1234,149 @@ }, /turf/open/floor/red/west, /area/bigredv2/outside/marshal_office) -"NW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"NQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/redcorner, +/area/bigredv2/outside/marshal_office) +"Ow" = ( +/obj/structure/surface/table, +/obj/structure/machinery/power/apc{ + dir = 1; + start_charge = 0 }, -/obj/structure/machinery/door_control{ - id = "Marshal Offices"; - name = "Storm Shutters"; - pixel_y = 24 +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"Px" = ( +/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) +"PL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/redcorner/east, /area/bigredv2/outside/marshal_office) +"Qs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal{ + pixel_x = 1 + }, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/marshal_office) +"QW" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/marshal_office) +"Ro" = ( +/obj/item/ammo_casing/shell, +/obj/effect/landmark/corpsespawner/prisoner, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_x = -8 + }, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, +/obj/item/tool/kitchen/utensil/knife{ + pixel_x = -6; + pixel_y = -18 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) "RJ" = ( /obj/effect/landmark/lv624/xeno_tunnel, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/n) +"Sa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/rack, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"Sf" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"Sj" = ( +/obj/structure/surface/table, +/obj/item/clothing/head/beret/sec/warden{ + pixel_y = 5 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"SF" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/platingdmg2/west, +/area/bigredv2/outside/marshal_office) +"ST" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 1; + name = "\improper Marshal Office Prison"; + icon_state = "door_open" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/marshal_office) +"UU" = ( +/obj/item/ammo_casing/shell, +/obj/item/storage/box/MRE{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) +"VC" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/plating/platingdmg1, +/area/bigredv2/outside/marshal_office) +"VS" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"VX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/marshal_office) +"Wi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed, +/turf/open/floor/white, +/area/bigredv2/outside/marshal_office) +"Ww" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/shell, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/shard, +/turf/open/floor/dark, +/area/bigredv2/outside/marshal_office) +"YT" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/ammo_magazine/revolver/cmb{ + pixel_y = -7; + pixel_x = -7 + }, +/turf/open/floor/vault2/west, +/area/bigredv2/outside/marshal_office) (1,1,1) = {" aa +VS ab -ab -as +uy ab ab -aI +ST aO aY bh @@ -984,7 +1399,7 @@ aa aa at aw -aw +ab ah aP aY @@ -1003,9 +1418,9 @@ gJ dj "} (3,1,1) = {" -ac +ab +aa aa -ao at at at @@ -1031,10 +1446,10 @@ ac aa aa at -ax +kG az ah -aP +PL aZ bi ah @@ -1051,13 +1466,13 @@ df dj "} (5,1,1) = {" -ad +ab ak -ap -au +sR +jj ap ap -aJ +np aQ ba bj @@ -1067,7 +1482,7 @@ at at at at -NW +Kb bk ah ah @@ -1075,15 +1490,15 @@ ah dj "} (6,1,1) = {" -ae -ab +zv ab +MS at -aw -aw +ab +ab ah aR -bb +iH bk ah ca @@ -1101,7 +1516,7 @@ dj (7,1,1) = {" ac ab -aa +Wi at at at @@ -1115,7 +1530,7 @@ by bZ cj cZ -cB +cA bk cV cZ @@ -1125,12 +1540,12 @@ dj (8,1,1) = {" af ab -ab +aw at ax az ah -aR +es bc bk ah @@ -1140,8 +1555,8 @@ by cj cZ cC -cQ -bL +wm +bG cZ df dj @@ -1149,14 +1564,14 @@ dj (9,1,1) = {" aa aa -aa -as +uA +dl ab ab -aK +Sf aR bc -bm +Gs ah jq rC @@ -1171,16 +1586,16 @@ ah dj "} (10,1,1) = {" -ag +VX al al at aw -aw +ab ah -aR +so bb -bh +gL ah cZ cZ @@ -1202,10 +1617,10 @@ at at at ah -aR +QW bb bk -bq +zD bE bP bP @@ -1213,20 +1628,20 @@ cl cr bb bi -cU +Px cZ ci dj "} (12,1,1) = {" ah -an +MH ar -av +yx ay aA ah -aR +QW bd bn br @@ -1238,7 +1653,7 @@ cs cE cR bG -da +cZ qm dj "} @@ -1259,7 +1674,7 @@ bQ bG ah ct -cF +nz cS ah ah @@ -1273,19 +1688,19 @@ if RJ ah aB -aL -aL -aL +Ll +UU +mB ah bs -cZ -cZ -cc +Lq +ut +qM bG aP -fD -bi -bL +bc +FK +bG cZ de dj @@ -1296,19 +1711,19 @@ aj aj cq ah -aC -cZ -cZ -cZ +Io +Ro +sy +yY ah -bt -cZ -cZ -cc +Ow +pj +LM +uX bG cu bc -cQ +bk cV cZ ci @@ -1321,17 +1736,17 @@ aj cq ah aD -cZ -aS -cZ -ah -bt -cZ -aN -cZ +mz +HS +Ml +ah +HO +rA +Nc +gV cn -aP -bb +ui +AG bk bG cZ @@ -1344,18 +1759,18 @@ aj bO cq ah -aD -aN -aT -cZ +dt +Ww +Hl +xF ah -bu -bH +pG +xk bR -ce +Ek co -cw -bb +lU +uo bk ah ah @@ -1368,17 +1783,17 @@ aj do ai ah -aE -zX -aU -be -ah -bv -bI -bS -ce -cp -cx +hc +za +Qs +BS +ah +Sj +FA +vi +uX +yb +jn cF bk cW @@ -1392,19 +1807,19 @@ bO gu ai ah -aF -aN -aV -ci +ea +dG +tu +IR ah -bw +jo aN -bT -cf +Sa +pw bL -aR -bb -bk +wB +hF +NQ bG dc dh @@ -1416,18 +1831,18 @@ gu ai ai ah -aG -aN -aW +qG +Fs +nV +SF +Ee +ug bg -bp -bg -bg -bU +ov cg bp -aQ -cK +AI +Ho bk ah bG @@ -1440,13 +1855,13 @@ ai ai ai ah -aH -cZ -aN -cZ +YT +DR +Mq +VC ah bx -bK +jW bV ch ah @@ -1466,7 +1881,7 @@ ah ah ah ah -aX +ip ah ah ah @@ -1476,7 +1891,7 @@ bG ah cy cM -bk +qX cY cY di diff --git a/maps/map_files/BigRed/sprinkles/20.lz1entrance_v2.dmm b/maps/map_files/BigRed/sprinkles/20.lz1entrance_v2.dmm index 729d541cbc96..7df1e7f87dbc 100644 --- a/maps/map_files/BigRed/sprinkles/20.lz1entrance_v2.dmm +++ b/maps/map_files/BigRed/sprinkles/20.lz1entrance_v2.dmm @@ -1,13 +1,4 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/space_port) -"ab" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/space_port) "ac" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/space_port) @@ -38,432 +29,577 @@ }, /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/space_port) -"ak" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"al" = ( -/obj/item/shard, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"am" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"an" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkgreen2/northwest, -/area/bigredv2/outside/space_port) -"ao" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/darkgreen2/north, -/area/bigredv2/outside/space_port) -"ap" = ( -/obj/item/shard, -/turf/open/floor/darkgreen2/north, -/area/bigredv2/outside/space_port) -"aq" = ( -/turf/open/floor/darkgreen2/north, -/area/bigredv2/outside/space_port) -"ar" = ( -/obj/structure/noticeboard{ - pixel_y = 30 +"aP" = ( +/obj/structure/window/framed/solaris/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Spaceport2"; + name = "\improper Spaceport Shutters" }, -/turf/open/floor/darkgreen2/north, -/area/bigredv2/outside/space_port) -"as" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/darkgreen2/northeast, -/area/bigredv2/outside/space_port) -"at" = ( -/turf/open/floor/asteroidwarning/north, +/turf/open/floor/plating, /area/bigredv2/outside/space_port) -"au" = ( +"bh" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/caves) +"bi" = ( +/turf/open/mars, +/area/bigredv2/outside/nw) +"by" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/space_port) -"av" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/space_port) -"aw" = ( -/turf/open/floor/dark, +/turf/open/mars, +/area/bigredv2/outside/nw) +"bT" = ( +/obj/structure/fence, +/turf/open/mars, +/area/bigredv2/outside/nw) +"bY" = ( +/turf/template_noop, +/area/template_noop) +"cB" = ( +/obj/structure/surface/table, +/turf/open/floor/darkgreen2/east, /area/bigredv2/outside/space_port) -"ax" = ( +"cS" = ( +/obj/structure/fence, +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/nw) +"dq" = ( +/obj/item/stack/rods, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/dirt, +/turf/open/mars, +/area/bigredv2/outside/nw) +"dx" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/nw) +"dL" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/nw) +"dW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, /area/bigredv2/outside/space_port) -"ay" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"en" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/cameras{ + dir = 1 }, -/turf/open/floor/dark, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) -"az" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"et" = ( +/obj/item/trash/popcorn{ + pixel_y = 9 }, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) -"aA" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"fA" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"fT" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, +/turf/open/asphalt/cement/cement12, /area/bigredv2/outside/space_port) -"aB" = ( -/obj/structure/filingcabinet, -/turf/open/floor/darkgreen2/east, +"gh" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"gi" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/nw) +"gp" = ( +/obj/structure/surface/table, +/obj/item/paper_bin, +/turf/open/floor/darkgreen2/southeast, /area/bigredv2/outside/space_port) -"aC" = ( +"gD" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/asphalt/cement, /area/bigredv2/outside/space_port) -"aD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"ic" = ( +/obj/effect/decal/strata_decals/grime/grime1{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"iM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"iV" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"jv" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"lf" = ( +/turf/open/asphalt/cement/cement2, +/area/bigredv2/outside/space_port) +"lM" = ( +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) -"aE" = ( +"lW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/bigredv2/outside/space_port) +"mV" = ( +/obj/effect/decal/strata_decals/grime/grime2, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/nw) +"na" = ( +/obj/structure/largecrate, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) -"aF" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"ob" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 4 }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"qi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"qA" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"qL" = ( +/obj/structure/surface/table, +/obj/item/device/radio, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"qY" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"sC" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) -"aG" = ( +"sD" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"ta" = ( +/obj/effect/landmark/crap_item, +/turf/open/asphalt/cement/cement9, +/area/bigredv2/outside/space_port) +"tv" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/nw) +"uh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/nw) +"uu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/asteroidwarning/east, +/turf/open/asphalt/cement/cement1/north, /area/bigredv2/outside/space_port) -"aI" = ( +"uF" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Spaceport" + dir = 6 }, -/turf/open/floor/dark, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) -"aJ" = ( +"ve" = ( +/obj/structure/lz_sign/solaris_sign, +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"vv" = ( +/obj/item/trash/hotdog{ + pixel_x = -12; + pixel_y = -11 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"vN" = ( +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"vW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"wu" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 5 }, -/turf/open/floor/dark, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"wD" = ( +/obj/structure/surface/table, +/obj/item/paper, +/obj/item/tool/pen, +/turf/open/floor/darkgreen2, /area/bigredv2/outside/space_port) -"aK" = ( +"wP" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/asphalt/cement, +/area/bigredv2/outside/space_port) +"wU" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/darkgreen2/north, +/area/bigredv2/outside/space_port) +"wV" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/dark, /area/bigredv2/outside/space_port) -"aL" = ( +"xc" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"xn" = ( +/turf/open/floor/darkgreen2/west, +/area/bigredv2/outside/space_port) +"xy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/nw) +"xB" = ( /obj/structure/surface/table, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/door_control{ - id = "Spaceport2"; - name = "Storm Shutters"; - pixel_x = 32 - }, -/turf/open/floor/darkgreen2/east, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkgreen2/southwest, /area/bigredv2/outside/space_port) -"aM" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"yp" = ( +/obj/item/shard, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/space_port) -"aN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, +"yI" = ( +/turf/open/floor/darkgreen2/north, /area/bigredv2/outside/space_port) -"aO" = ( -/turf/open/floor/asteroidwarning, +"zc" = ( +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/nw) +"zi" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) -"aP" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Spaceport2"; - name = "\improper Spaceport Shutters" +"Ar" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"Az" = ( +/obj/structure/noticeboard{ + pixel_y = 30 }, -/turf/open/floor/plating, +/turf/open/floor/darkgreen2/north, /area/bigredv2/outside/space_port) -"aQ" = ( -/turf/open/floor/darkgreen2/west, +"AJ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"Bc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement4, /area/bigredv2/outside/space_port) -"aR" = ( -/obj/structure/bed/chair/office/dark, +"Bs" = ( /turf/open/floor/dark, /area/bigredv2/outside/space_port) -"aS" = ( +"BC" = ( /obj/structure/bed/chair/office/dark{ dir = 4; layer = 3.25 }, /turf/open/floor/dark, /area/bigredv2/outside/space_port) -"aT" = ( -/obj/structure/surface/table, -/turf/open/floor/darkgreen2/east, -/area/bigredv2/outside/space_port) -"aU" = ( +"BT" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/turf/open/floor/asteroidwarning/east, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"Ce" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement/cement12, /area/bigredv2/outside/space_port) -"aV" = ( -/obj/structure/largecrate, -/turf/open/floor/asteroidfloor/north, +"CD" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/nw) +"DD" = ( +/turf/open/asphalt/cement/cement15, /area/bigredv2/outside/space_port) -"aW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, +"Fd" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/nw) +"Fw" = ( +/turf/open/mars/mars_dirt_13, +/area/bigredv2/outside/nw) +"FL" = ( +/obj/item/shard, +/turf/open/floor/darkgreen2/north, /area/bigredv2/outside/space_port) -"aX" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"FW" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/nw) +"GQ" = ( +/obj/item/stack/sheet/metal, +/obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/space_port) -"aY" = ( -/obj/structure/surface/table, -/obj/effect/landmark/crap_item, -/turf/open/floor/darkgreen2/southwest, +/turf/open/mars, +/area/bigredv2/outside/nw) +"GU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement, /area/bigredv2/outside/space_port) -"aZ" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/darkgreen2, +"Hu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement14, /area/bigredv2/outside/space_port) -"ba" = ( -/obj/structure/surface/table, -/obj/item/device/radio, -/turf/open/floor/darkgreen2, +"Hz" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkgreen2/northwest, /area/bigredv2/outside/space_port) -"bb" = ( -/turf/open/floor/darkgreen2, +"It" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) -"bc" = ( +"IL" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"bd" = ( -/obj/structure/surface/table, -/obj/item/paper, -/obj/item/tool/pen, -/turf/open/floor/darkgreen2, -/area/bigredv2/outside/space_port) -"be" = ( -/obj/structure/surface/table, -/obj/item/paper_bin, -/turf/open/floor/darkgreen2/southeast, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"Je" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/dark, /area/bigredv2/outside/space_port) -"bh" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/caves) -"bi" = ( -/turf/open/mars, +"Jt" = ( +/turf/open/mars/mars_dirt_12, /area/bigredv2/outside/nw) -"bj" = ( -/turf/open/mars/mars_dirt_11, +"JE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement3, +/area/bigredv2/outside/space_port) +"JY" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/bigredv2/outside/nw) -"bk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars_cave/mars_dirt_4, +"Kn" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/asphalt/cement_sunbleached, /area/bigredv2/outside/nw) -"bl" = ( -/turf/open/mars_cave/mars_dirt_4, +"Ku" = ( +/obj/item/trash/cigbutt{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/asphalt/cement_sunbleached, /area/bigredv2/outside/nw) -"bm" = ( +"KV" = ( /turf/open/floor/asteroidwarning/southwest, /area/bigredv2/outside/nw) -"bn" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"bo" = ( -/obj/item/stack/rods, +"Lq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"Mv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/nw) -"bp" = ( -/obj/item/stack/sheet/metal, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, +"MD" = ( +/obj/structure/filingcabinet, +/turf/open/floor/darkgreen2/east, +/area/bigredv2/outside/space_port) +"MH" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) -"bq" = ( -/obj/structure/lz_sign/solaris_sign, -/turf/open/floor/asteroidwarning, +"Nj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/asphalt/cement_sunbleached, /area/bigredv2/outside/nw) -"br" = ( -/obj/item/stack/rods, +"Ox" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/nw) +"OM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Spaceport" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"OT" = ( /obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"bs" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/nw) -"bt" = ( -/turf/open/mars/mars_dirt_13, -/area/bigredv2/outside/nw) -"bu" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"bv" = ( -/turf/open/floor/asteroidwarning/west, +/turf/open/mars, /area/bigredv2/outside/nw) -"bw" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"OX" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement3, +/area/bigredv2/outside/space_port) +"QI" = ( /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"bx" = ( -/obj/effect/decal/cleanable/dirt, +/area/bigredv2/outside/space_port) +"Rq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, /turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"Rt" = ( +/turf/open/floor/asteroidwarning/southeast, /area/bigredv2/outside/nw) -"by" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars, +"Sg" = ( +/obj/structure/fence, +/turf/open/mars/mars_dirt_3, /area/bigredv2/outside/nw) -"bz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, +"St" = ( +/obj/item/trash/waffles{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/bigredv2/outside/nw) -"bA" = ( -/turf/open/mars/mars_dirt_10, +"Sw" = ( +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/nw) -"bB" = ( -/obj/structure/fence, -/turf/open/mars/mars_dirt_10, +"TC" = ( +/obj/item/trash/cigbutt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/bigredv2/outside/nw) -"bC" = ( +"TD" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/mars/mars_dirt_11, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/bigredv2/outside/nw) -"bD" = ( +"TP" = ( +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/space_port) +"TW" = ( +/turf/open/asphalt/cement, +/area/bigredv2/outside/space_port) +"Uv" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/space_port) +"Uw" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate, -/turf/open/floor/asteroidwarning/northwest, +/turf/open/floor/darkgreen2, +/area/bigredv2/outside/space_port) +"UY" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/asphalt/cement_sunbleached, /area/bigredv2/outside/nw) -"bE" = ( -/turf/open/floor/asteroidwarning/north, +"Vh" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 1 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/bigredv2/outside/nw) -"bF" = ( +"Vi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/nw) -"bG" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"bH" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/asteroidfloor/north, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/nw) -"bI" = ( +"Wu" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/space_port) +"WW" = ( /obj/structure/cargo_container/wy/mid, /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/nw) -"bJ" = ( -/obj/structure/cargo_container/wy/right, +"WZ" = ( +/obj/structure/largecrate/random/barrel, /turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"bK" = ( -/obj/effect/landmark/crap_item, +/area/bigredv2/outside/space_port) +"Xi" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, +/turf/open/mars/mars_dirt_11, /area/bigredv2/outside/nw) -"bL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/asteroidfloor/north, +"XF" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/asphalt/cement_sunbleached, /area/bigredv2/outside/nw) -"bM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, +"XL" = ( +/turf/open/mars/mars_dirt_14, /area/bigredv2/outside/nw) -"bN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"XU" = ( +/obj/structure/surface/table, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/door_control{ + id = "Spaceport2"; + name = "Storm Shutters"; + pixel_x = 32 }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"bP" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"bQ" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"bS" = ( +/turf/open/floor/darkgreen2/east, +/area/bigredv2/outside/space_port) +"XX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, +/obj/structure/largecrate, +/turf/open/floor/asteroidwarning/northwest, /area/bigredv2/outside/nw) -"bT" = ( -/obj/structure/fence, -/turf/open/mars, +"Yf" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/bigredv2/outside/nw) -"bU" = ( -/turf/open/floor/asteroidwarning/east, +"Yw" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/bigredv2/outside/nw) -"bV" = ( +"Yz" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/nw) -"bW" = ( -/obj/structure/fence, -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/nw) -"bX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"bY" = ( -/turf/template_noop, -/area/template_noop) -"bZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/nw) -"ca" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/nw) -"cb" = ( -/turf/open/mars/mars_dirt_14, +/turf/open/asphalt/cement, +/area/bigredv2/outside/space_port) +"YG" = ( +/turf/open/asphalt/cement/cement1/north, +/area/bigredv2/outside/space_port) +"YX" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/space_port) +"Zq" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/darkgreen2/northeast, +/area/bigredv2/outside/space_port) +"ZJ" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/bigredv2/outside/nw) -"cc" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/dark, +"ZP" = ( +/turf/open/asphalt/cement/cement4, /area/bigredv2/outside/space_port) -"Dc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/template_noop, -/area/template_noop) (1,1,1) = {" -aa -ak -ak -ak -ak -aD +YX +QI +QI +QI +QI +Uv ac bh bh @@ -473,362 +609,362 @@ by bY bY bY -Dc +bY bY bY bi "} (2,1,1) = {" -ab -ab -ak -aC -aM -aU +Wu +Wu +QI +uF +sC +Rq ac bi -bt -bj -bC -bj -bY -bY -Dc -bY +Fw +Sw +Xi +Sw +Yf +Fd bY bY +Fd +ZJ bi "} (3,1,1) = {" ac ac -at -aD -aN +lf +JE +Hu ac ac -bj -bk -bu -bu -bu +Sw +Vi +jv +jv +jv bT bT -bE -bn +JY +Ar bi bi bi "} (4,1,1) = {" ac -ak -at -aE -aN -aV +QI +ZP +lW +fT +na ac -bk -bk -bu -bD -bF -bm +Vi +Vi +jv +XX +Mv +KV bT -bZ -bX +uh +TD bi bi bi "} (5,1,1) = {" ad -ak -at -aD -aO -ak +QI +ZP +gD +TP +QI ac -bl -bl -bu -bE -bH -bP +xc +xc +jv +FW +MH +CD bT -bZ -bn +uh +Ar bi bi bi "} (6,1,1) = {" ae -al -au -aD -aO -aV +yp +Bc +gD +TP +na ac -bm -bk -bu -bE -bI -bQ +xc +Vi +jv +FW +WW +sD bT -bE -bn +JY +Ar by bi bi "} (7,1,1) = {" ac -ak -au -aE -aO -ak +QI +Bc +lW +TP +QI ac -bn -bu -bu -bE -bJ -bn +xc +jv +jv +tv +gi +Rt bT -bE -bn +JY +Ar bi bi bi "} (8,1,1) = {" ac -am -au -aE -ak -aW -aW -bG -bv -bv -bF -bK -bv -bv -bG -bG -bv -bv -bv +WZ +Bc +lW +TW +OX +Hu +zc +fA +IL +IL +gh +ob +gh +vN +vN +gh +vv +gh "} (9,1,1) = {" ad -ak -at -aF -aM -aX -aM -bz -bw -bz -bz -bL -bG -bG -bG -bG -bG -bG -bS +QI +ZP +wP +GU +Yz +Ce +qi +qA +qA +qA +wu +vN +XF +vN +vN +vN +XF +vW "} (10,1,1) = {" ad -ak -av -aG -ab -ab -ab -bS -bx -bx -bG -bM -bG -bU -bU -bU -bU -bU -bU +QI +ta +uu +YG +YG +DD +mV +Yw +Fd +vN +BT +vW +Fd +Fd +Fd +Fd +Fd +Fd "} (11,1,1) = {" ac -am -ak -aD -ak -ak +WZ +QI +Uv +QI +QI ac -bq -bu -bu -bE -bM -bn -bu -bl -bl -bl -bl -bl +ve +jv +jv +JY +BT +Vh +jv +xc +xc +xc +xc +xc "} (12,1,1) = {" ac ac -aw -aI +Bs +OM aP aP ac -bn -bl -bu -bE -bM -bn -bu -bl -bl -bl -bl -bl +xc +xc +jv +uh +BT +Ar +jv +xc +xc +xc +xc +xc "} (13,1,1) = {" ac -an -ax -aJ -aQ -aY +Hz +dW +iV +xn +xB ac -bn -bs -bl -bE -bM -bG -bv -bv -bv -bv -bv -bv +xy +Jt +xc +JY +BT +vW +gh +gh +ic +Ox +gh +gh "} (14,1,1) = {" ac -ao -ay -aA -aR -aZ +wU +Lq +iM +It +en ac -bo -bi -bA -bE -bM -bG -bG -bG -bG -bG -bG -bG +OT +by +dL +JY +BT +vN +Kn +UY +vN +vN +vN +vN "} (15,1,1) = {" ae -ap -az -aw -aK -ba +FL +zi +Bs +wV +qL ai -bX -bi -bA -bE -bN -bz -bV -bV -bV -bV -bV -bV +by +by +dL +St +Nj +qY +AJ +AJ +AJ +AJ +AJ +AJ "} (16,1,1) = {" ah -aq -aw -aA -aA -bb +yI +Bs +iM +iM +lM ai -bp -bi -bB -bE -bG -bn -bu -bu -bs -bs -bl -bl +GQ +bi +cS +et +vN +Ar +jv +jv +Jt +Jt +xc +xc "} (17,1,1) = {" ai -aq -aA -cc -aw -bc +yI +iM +Je +Bs +Uw ai -bn -bi -bB -bE -bG -bn -bu -ca +by +by +cS +JY +Ku +TC +jv +dx bi bi -cb -bs +XL +Jt "} (18,1,1) = {" ac -ar -aw -aA -aS -bd +Az +Bs +iM +BC +wD ac -br +dq bi -bB -bE -bG -bn -bW +cS +JY +vN +Ar +Sg bi bi bi @@ -837,19 +973,19 @@ bi "} (19,1,1) = {" aj -as -aB -aL -aT -be +Zq +MD +XU +cB +gp ac -bX +by bi -bB -bE -bG -bn -bW +cS +JY +vN +Vh +Sg bi bi bi diff --git a/maps/map_files/BigRed/sprinkles/25.lz1containers_scramble.dmm b/maps/map_files/BigRed/sprinkles/25.lz1containers_scramble.dmm index 18820b304c27..45d1945cdcf9 100644 --- a/maps/map_files/BigRed/sprinkles/25.lz1containers_scramble.dmm +++ b/maps/map_files/BigRed/sprinkles/25.lz1containers_scramble.dmm @@ -45,10 +45,6 @@ "an" = ( /turf/closed/wall/solaris, /area/bigredv2/outside/space_port) -"ao" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/dark, -/area/bigredv2/outside/space_port) "ap" = ( /obj/effect/decal/cleanable/blood/gibs/up, /turf/open/floor/dark, @@ -241,10 +237,6 @@ /obj/effect/landmark/crap_item, /turf/open/floor/plating, /area/bigredv2/outside/space_port) -"bh" = ( -/obj/effect/landmark/hunter_primary, -/turf/open/floor/plating, -/area/bigredv2/outside/space_port) "bi" = ( /obj/structure/cargo_container/grant/left, /turf/open/floor/plating, @@ -269,6 +261,151 @@ /obj/structure/cargo_container/arious/right, /turf/open/floor/plating, /area/bigredv2/outside/space_port) +"bs" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/space_port) +"ch" = ( +/obj/structure/cargo_container/arious/rightmid, +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"dg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-in" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"fU" = ( +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/space_port) +"ii" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-in" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"kN" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/space_port) +"lo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-in" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"mx" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"oV" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/dark, +/area/bigredv2/outside/space_port) +"tf" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-in" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"tu" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"xP" = ( +/obj/structure/largecrate/random/barrel/true_random, +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"yf" = ( +/obj/structure/cargo_container/watatsumi/rightmid, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-in" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"yg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"yZ" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"Aw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-in" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"DA" = ( +/obj/structure/cargo_container/arious/right, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-in" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"In" = ( +/obj/structure/cargo_container/arious/leftmid, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-in" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"KQ" = ( +/obj/structure/cargo_container/watatsumi/rightmid, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-in" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"NH" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/floor/plating/plating_catwalk, +/area/bigredv2/outside/space_port) +"OZ" = ( +/obj/effect/landmark/hunter_primary, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-in" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"QA" = ( +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"Ta" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S-corner" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) +"Ww" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-in" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N-corner" + }, +/turf/open/floor/plating, +/area/bigredv2/outside/space_port) (1,1,1) = {" ab @@ -300,13 +437,13 @@ ac ac aV ac -ac -ac -ac -ac -ac -ac -ac +ii +lo +fU +fU +ii +lo +QA "} (3,1,1) = {" ac @@ -319,12 +456,12 @@ ac ac aV ac -ac -ac -ac -ac -ac -aA +tu +Ta +fU +fU +yg +mx ac "} (4,1,1) = {" @@ -338,12 +475,12 @@ ac ac aV ac -ac -ac -ac -ac -ac -aB +Aw +dg +fU +fU +Aw +KQ bl "} (5,1,1) = {" @@ -359,8 +496,8 @@ aW ac ac ac -ac -ac +fU +fU ac aC bm @@ -376,12 +513,12 @@ ac ac aX ac -ac -ac -ac -ac -ac -ac +ii +lo +fU +fU +ii +lo bn "} (7,1,1) = {" @@ -395,12 +532,12 @@ ac ac aY ac -ac -ac -ac -ac -ac -ac +yg +xP +fU +fU +yg +Ta ac "} (8,1,1) = {" @@ -414,12 +551,12 @@ ac ac aV ac -ac -ac -ac -bi -ac -ac +Aw +dg +fU +kN +Aw +dg ac "} (9,1,1) = {" @@ -435,8 +572,8 @@ aV ac bg ac -ac -bj +fU +NH ac ac ac @@ -452,17 +589,17 @@ an ac aV ac -ac -ac -ac -bk -ac -ac +ii +lo +fU +bs +ii +lo ac "} (11,1,1) = {" ai -ao +oV at ay aD @@ -471,12 +608,12 @@ an aT aV ac -ac -ac -ac -ac -ac -ac +yg +Ta +fU +fU +yg +Ta ac "} (12,1,1) = {" @@ -490,12 +627,12 @@ aP ac aV ac -ac -bh -ac -ac -ac -ac +Aw +OZ +fU +fU +Aw +tf ac "} (13,1,1) = {" @@ -511,8 +648,8 @@ aV ac ac ac -ac -ac +fU +fU ac ac bi @@ -528,12 +665,12 @@ an ac aV bd -ac -ac -ac -ac -ac -bl +ii +lo +fU +fU +Ww +In bj "} (15,1,1) = {" @@ -547,12 +684,12 @@ aQ ac aV be -aA -ac -ac -ac -ac -bm +yZ +Ta +fU +fU +yg +ch bk "} (16,1,1) = {" @@ -566,12 +703,12 @@ aR ac aV ac -aB -ac -ac -ac -ac -bn +yf +dg +fU +fU +Aw +DA ac "} (17,1,1) = {" @@ -587,8 +724,8 @@ aV ac aC ac -ac -ac +fU +fU ac ac ac diff --git a/maps/map_files/BigRed/sprinkles/35.filtration_restored.dmm b/maps/map_files/BigRed/sprinkles/35.filtration_restored.dmm index 10252b55284c..702980ac1f79 100644 --- a/maps/map_files/BigRed/sprinkles/35.filtration_restored.dmm +++ b/maps/map_files/BigRed/sprinkles/35.filtration_restored.dmm @@ -2,28 +2,10 @@ "aa" = ( /turf/closed/wall/solaris, /area/bigredv2/outside/filtration_plant) -"ac" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) "ad" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/filtration_plant) -"ae" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"af" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) "ah" = ( /obj/structure/window/framed/solaris, /turf/open/floor/plating, @@ -34,705 +16,735 @@ "aj" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/caves) -"ak" = ( -/obj/structure/closet/wardrobe/atmospherics_yellow, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"al" = ( -/obj/structure/surface/table, -/obj/item/tool/lighter/random, +"ay" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2/west, +/turf/closed/wall/solaris, /area/bigredv2/outside/filtration_plant) -"am" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/se) -"an" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, +"az" = ( +/turf/open/floor, /area/bigredv2/outside/filtration_plant) -"ap" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/darkyellow2, +"aF" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/chan, +/turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) -"aq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 1 - }, -/turf/open/floor/darkyellow2/southwest, +"aY" = ( +/turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/filtration_plant) -"ar" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +"bf" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/dark, +/turf/open/floor, /area/bigredv2/outside/filtration_plant) -"as" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +"bt" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, +/turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/outside/filtration_plant) -"at" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, +"bv" = ( +/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/chan, +/obj/effect/decal/warning_stripes, +/turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) -"au" = ( -/obj/structure/machinery/computer/atmos_alert{ - dir = 8 - }, -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/southeast, +"bw" = ( +/turf/closed/wall/solaris/reinforced/hull, /area/bigredv2/outside/filtration_plant) -"av" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/se) -"aw" = ( -/turf/open/mars/mars_dirt_6, -/area/bigredv2/outside/se) -"ax" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/se) -"ay" = ( +"bA" = ( /obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris, -/area/bigredv2/outside/filtration_plant) -"az" = ( -/turf/open/floor, +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) -"aA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Atmospherics Condenser Storage" - }, -/turf/open/floor/almayer/test_floor4, +"bD" = ( +/obj/structure/window/framed/solaris/reinforced/hull, +/turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) -"aB" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Atmospherics Condenser" +"bI" = ( +/obj/structure/window_frame/solaris/reinforced, +/obj/item/shard{ + icon_state = "small" }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/plating, /area/bigredv2/outside/filtration_plant) -"aC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"bK" = ( +/turf/open/mars, +/area/bigredv2/outside/se) +"bX" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/turf/open/floor/dark, +/turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/filtration_plant) -"aD" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Atmospherics Condenser" +"cd" = ( +/obj/structure/dispenser/oxygen, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"cg" = ( +/obj/structure/machinery/door_control{ + id = "FiltrationShutters"; + name = "Airlock Shutters"; + pixel_y = 25 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor, /area/bigredv2/outside/filtration_plant) -"aE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/headset, -/turf/open/floor/dark, +"dk" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/filtration_plant) -"aF" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/chan, -/turf/open/floor/plating, +"dP" = ( +/obj/structure/largecrate/random, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) -"aG" = ( -/turf/open/floor/asteroidwarning/east, +"dS" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/bigredv2/outside/se) -"aH" = ( +"dV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, /turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"aJ" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/se) -"aK" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/se) -"aL" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer/test_floor4, -/area/bigredv2/outside/filtration_plant) -"aM" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer/test_floor4, +"fp" = ( +/obj/structure/machinery/computer/general_air_control, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) -"aN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, +"gg" = ( +/obj/structure/surface/table, +/obj/item/circuitboard/solar_tracker, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/filtration_plant) -"aO" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/dark, +"gJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/delivery, /area/bigredv2/outside/filtration_plant) -"aP" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/dark, +"gO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) -"aQ" = ( +"ib" = ( /obj/structure/surface/table, -/obj/effect/landmark/good_item, -/turf/open/floor/darkyellow2/east, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) -"aR" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/darkyellow2/east, +"iw" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/se) +"iZ" = ( +/turf/open/floor/delivery, /area/bigredv2/outside/filtration_plant) -"aS" = ( -/turf/open/floor/bot/north, +"jh" = ( +/obj/structure/machinery/light, +/turf/open/floor, /area/bigredv2/outside/filtration_plant) -"aT" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor/almayer/test_floor4, +"kg" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"aV" = ( +"kh" = ( /obj/effect/decal/warning_stripes{ - icon_state = "U-N" + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"aW" = ( -/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"aX" = ( +"kv" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 5 }, /turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"aY" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/filtration_plant) -"aZ" = ( -/obj/structure/machinery/computer/general_air_control, -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"bb" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkyellow2/north, -/area/bigredv2/outside/filtration_plant) -"bc" = ( +"la" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkyellow2, +/turf/open/floor/bot/north, /area/bigredv2/outside/filtration_plant) -"bd" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/tool, -/turf/open/floor/darkyellow2/northeast, +"lC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" + }, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"lO" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) -"be" = ( -/obj/structure/surface/table, -/obj/item/circuitboard/solar_tracker, -/turf/open/floor/darkyellow2/southeast, +"nk" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/closed/wall/solaris, /area/bigredv2/outside/filtration_plant) -"bf" = ( +"no" = ( /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor, -/area/bigredv2/outside/filtration_plant) -"bg" = ( -/obj/structure/machinery/computer3/server/rack, /obj/effect/decal/warning_stripes{ - icon_state = "U-S" + icon_state = "W"; + layer = 2.5 }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"bh" = ( /obj/effect/decal/warning_stripes{ - icon_state = "U-S" + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/computer3/server/rack, /turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"bj" = ( -/obj/structure/surface/rack, +"np" = ( /obj/item/tank/air, -/obj/item/tool/pickaxe, -/turf/open/floor/darkyellow2/west, +/turf/open/floor, /area/bigredv2/outside/filtration_plant) -"bk" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, +"nu" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/firecloset/full, +/turf/open/floor/bot/north, +/area/bigredv2/outside/filtration_plant) +"nF" = ( +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/filtration_plant) +"oQ" = ( /obj/structure/machinery/light, -/turf/open/floor/darkyellow2, +/obj/structure/largecrate/random, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/filtration_plant) -"bl" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1; - name = "\improper Filtration Facility" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +"pd" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"pF" = ( +/obj/structure/surface/rack, +/obj/item/tank/air, +/obj/item/tool/pickaxe, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) -"bm" = ( +"qm" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; name = "\improper Filtration Facility" }, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) -"bn" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +"qH" = ( +/obj/structure/machinery/computer3/server/rack, +/obj/effect/decal/warning_stripes{ + icon_state = "U-N" }, -/turf/open/floor/darkyellow2/northeast, -/area/bigredv2/outside/filtration_plant) -"bo" = ( -/obj/item/tank/air, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) -"bp" = ( +"qL" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"bq" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, +"rq" = ( +/obj/item/tank/air, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"rA" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/bot/north, /area/bigredv2/outside/filtration_plant) -"br" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Filtration Facility" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/almayer/test_floor4, +"rQ" = ( +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) -"bt" = ( +"rS" = ( +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"sf" = ( /obj/effect/decal/cleanable/dirt, -/turf/closed/wall/solaris/reinforced/hull, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) -"bu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"sv" = ( +/obj/structure/dispenser/oxygen, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"sF" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"tc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "U-N" }, -/obj/item/frame/table, +/obj/structure/machinery/computer3/server/rack, /turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"bv" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber/huge/chan, -/obj/effect/decal/warning_stripes, -/turf/open/floor/plating, -/area/bigredv2/outside/filtration_plant) -"bw" = ( -/turf/closed/wall/solaris/reinforced/hull, -/area/bigredv2/outside/filtration_plant) -"by" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"tx" = ( +/obj/structure/machinery/door_control{ + id = "FiltrationShutters"; + name = "Airlock Shutters"; + pixel_x = -32 }, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"tE" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) -"bz" = ( +"tT" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/bot/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"bA" = ( +"um" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/window/framed/solaris, -/turf/open/floor/plating, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"bB" = ( -/obj/structure/surface/table, -/obj/structure/machinery/computer/atmos_alert{ - dir = 4 +"us" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, -/turf/open/floor/darkyellow2/west, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/filtration_plant) -"bD" = ( -/obj/structure/window/framed/solaris/reinforced/hull, -/turf/open/floor/plating, +"uu" = ( +/obj/structure/cargo_container/grant/left, +/turf/open/floor/bot/north, /area/bigredv2/outside/filtration_plant) -"bE" = ( +"uE" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/se) +"uT" = ( /obj/structure/cryofeed/right{ name = "\improper coolant feed" }, /turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/outside/filtration_plant) -"bF" = ( -/obj/structure/cryofeed, -/turf/open/floor/bluegrid/bcircuitoff, -/area/bigredv2/outside/filtration_plant) -"bG" = ( -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/east, +"vz" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) -"bH" = ( -/obj/structure/machinery/computer/area_atmos/area{ - dir = 8 +"vF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E-corner" }, -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/east, +/turf/open/mars_cave/mars_cave_7, +/area/bigredv2/outside/filtration_cave_cas) +"wo" = ( +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/se) +"wL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/frame/table, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"bI" = ( -/obj/structure/window_frame/solaris/reinforced, -/obj/item/shard{ - icon_state = "small" +"wQ" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) -"bJ" = ( +"wZ" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/turf/open/floor/darkyellow2/north, +/area/bigredv2/outside/filtration_plant) +"xY" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"yR" = ( /obj/item/weapon/twohanded/fireaxe, /turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/filtration_plant) -"bK" = ( -/turf/open/mars, +"yU" = ( +/obj/item/tool/warning_cone, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/bigredv2/outside/se) -"bN" = ( +"zD" = ( /obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/darkyellow2/southwest, +/obj/item/tool/lighter/random, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkyellow2/west, /area/bigredv2/outside/filtration_plant) -"bO" = ( -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"bP" = ( -/obj/item/tank/air, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"bQ" = ( +"zJ" = ( /obj/structure/surface/table, /obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/light, +/turf/open/floor/darkyellow2/southwest, +/area/bigredv2/outside/filtration_plant) +"zL" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) -"bS" = ( -/obj/item/frame/table, -/obj/structure/machinery/light, +"Ai" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) -"bT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/obj/effect/decal/cleanable/dirt, +"Aw" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, /turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"bU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/west, +"Bd" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/se) +"Bt" = ( +/obj/structure/cryofeed, +/turf/open/floor/bluegrid/bcircuitoff, /area/bigredv2/outside/filtration_plant) -"bW" = ( +"Bx" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"bX" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +"BF" = ( +/obj/item/tool/warning_cone, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"BZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 }, -/turf/closed/wall/solaris/reinforced, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/filtration_plant) -"bZ" = ( -/turf/open/floor/asteroidfloor/north, +"Ce" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/se) +"Cy" = ( +/turf/open/floor/darkyellowcorners2/north, /area/bigredv2/outside/filtration_plant) -"cb" = ( -/obj/structure/machinery/door_control{ - id = "FiltrationShutters"; - name = "Airlock Shutters"; - pixel_x = -32 +"CK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"De" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Filtration Facility" }, -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) -"ce" = ( -/obj/structure/machinery/light, -/turf/open/floor/asteroidfloor/north, +"DI" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) -"cf" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "FiltrationShutters"; - name = "\improper Airlock Shutters" +"DT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/filtration_plant) +"EP" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"Fe" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Filtration Facility" }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) -"cg" = ( -/obj/structure/machinery/door_control{ - id = "FiltrationShutters"; - name = "Airlock Shutters"; - pixel_y = 25 +"FD" = ( +/obj/structure/surface/table, +/obj/structure/machinery/computer/atmos_alert{ + dir = 4 + }, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"FG" = ( +/obj/structure/machinery/computer/atmos_alert{ + dir = 8 }, -/turf/open/floor, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/southeast, /area/bigredv2/outside/filtration_plant) -"ch" = ( -/obj/structure/dispenser/oxygen, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"ci" = ( -/obj/item/tool/warning_cone, -/turf/open/mars_cave/mars_cave_2, +"Ga" = ( +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/filtration_cave_cas) -"cj" = ( -/obj/item/tool/pickaxe, -/turf/open/floor/bot/north, -/area/bigredv2/outside/filtration_plant) -"ck" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +"Gd" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Filtration Facility" }, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"cl" = ( -/turf/open/floor/asteroidwarning/west, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) -"cn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/delivery, +"Gm" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + name = "\improper Atmospherics Condenser" + }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) -"cO" = ( +"GL" = ( +/obj/item/tank/air, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"et" = ( -/turf/open/floor/almayer/test_floor4, +"IX" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, +/area/bigredv2/outside/se) +"Jc" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) -"eL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkyellow2/northeast, +"Ji" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/light, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) -"ff" = ( +"Jo" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/bot/north, +/area/bigredv2/outside/filtration_plant) +"Jp" = ( +/obj/structure/cargo_container/grant/right, +/turf/open/floor/bot/north, +/area/bigredv2/outside/filtration_plant) +"Jq" = ( /turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"gt" = ( +"KF" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/darkyellow2/east, +/area/bigredv2/outside/filtration_plant) +"KG" = ( +/obj/structure/cargo_container/grant/rightmid, +/turf/open/floor/bot/north, +/area/bigredv2/outside/filtration_plant) +"KP" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellow2, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"hk" = ( -/turf/open/floor/darkyellow2/north, +"Li" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/filtration_plant) -"jh" = ( +"LU" = ( +/turf/open/mars/mars_dirt_6, +/area/bigredv2/outside/se) +"Mf" = ( /obj/structure/machinery/light, -/turf/open/floor, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) -"ka" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/darkyellow2/north, +"MH" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"kE" = ( -/obj/structure/machinery/light, -/turf/open/floor/darkyellow2/southeast, +"Nn" = ( +/obj/structure/surface/table, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2/northeast, /area/bigredv2/outside/filtration_plant) -"nk" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/closed/wall/solaris, +"Oi" = ( +/obj/structure/surface/table, +/obj/effect/landmark/good_item, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) -"np" = ( -/obj/item/tank/air, -/turf/open/floor, +"On" = ( +/obj/item/tool/pickaxe, +/turf/open/floor/bot/north, /area/bigredv2/outside/filtration_plant) -"oE" = ( +"Oq" = ( /obj/structure/machinery/light{ dir = 1 }, +/turf/open/floor/darkyellow2/northeast, +/area/bigredv2/outside/filtration_plant) +"OG" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/se) +"OX" = ( +/obj/structure/machinery/computer3/server/rack, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 + icon_state = "U-S" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"Pt" = ( +/turf/open/floor/darkyellow2, +/area/bigredv2/outside/filtration_plant) +"Qw" = ( +/obj/structure/machinery/computer/area_atmos/area{ + dir = 8 }, -/turf/open/floor/dark, +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) -"qi" = ( +"QM" = ( /obj/structure/machinery/light{ dir = 1 }, -/obj/structure/closet/firecloset/full, -/turf/open/floor/bot/north, +/turf/open/floor/darkyellow2/west, +/area/bigredv2/outside/filtration_plant) +"Rf" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"ti" = ( +"Rn" = ( +/obj/structure/bed/chair{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/bot/north, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"tp" = ( -/obj/structure/largecrate/random, -/turf/open/floor/darkyellow2/east, +"RX" = ( +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/filtration_plant) -"tz" = ( -/turf/open/floor/darkyellow2/northwest, +"Sw" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "FiltrationShutters"; + name = "\improper Airlock Shutters" + }, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) -"tB" = ( -/obj/effect/landmark/crap_item, -/turf/open/mars_cave/mars_cave_2, -/area/bigredv2/outside/filtration_cave_cas) -"vK" = ( -/turf/open/floor/darkyellow2/west, +"SA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/headset, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"xd" = ( +"SL" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/darkyellow2/north, /area/bigredv2/outside/filtration_plant) -"yi" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/darkyellow2/east, +"SR" = ( +/turf/open/floor/asteroidwarning/west, /area/bigredv2/outside/filtration_plant) -"yZ" = ( -/turf/open/floor/darkyellowcorners2/west, +"Tn" = ( +/turf/open/floor/darkyellow2/northwest, /area/bigredv2/outside/filtration_plant) -"zu" = ( -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/filtration_cave_cas) -"Ap" = ( +"TW" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/darkyellowcorners2/east, -/area/bigredv2/outside/filtration_plant) -"AD" = ( -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"Ee" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/floor/darkyellow2/west, -/area/bigredv2/outside/filtration_plant) -"FI" = ( -/turf/open/floor/darkyellow2/east, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"FK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"Uq" = ( +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/filtration_cave_cas) +"UB" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/se) +"UD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"Jy" = ( -/obj/structure/closet/firecloset/full, +"Vh" = ( /turf/open/floor/bot/north, /area/bigredv2/outside/filtration_plant) -"Kp" = ( -/obj/structure/surface/table, -/turf/open/floor/darkyellow2/southwest, +"Vm" = ( +/turf/open/floor/darkyellow2/east, /area/bigredv2/outside/filtration_plant) -"Ms" = ( -/obj/structure/machinery/computer3/server/rack, +"Vr" = ( +/turf/open/floor/almayer/test_floor4, +/area/bigredv2/outside/filtration_plant) +"Vz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"VB" = ( /obj/effect/decal/warning_stripes{ - icon_state = "U-N" + icon_state = "U-S" }, -/turf/open/floor/darkyellow2/west, +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"Qx" = ( +"Wg" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/dark, +/area/bigredv2/outside/filtration_plant) +"WF" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/asteroidwarning/east, +/turf/open/floor/darkyellowcorners2/east, /area/bigredv2/outside/filtration_plant) -"QJ" = ( -/turf/open/floor/darkyellow2/southwest, +"WR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"Rv" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/asteroidwarning/east, +"Xj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, /area/bigredv2/outside/filtration_plant) -"Sj" = ( +"Xl" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 1; - name = "\improper Filtration Facility" + name = "\improper Atmospherics Condenser" }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) -"Sk" = ( -/obj/structure/machinery/light, -/obj/structure/largecrate/random, -/turf/open/floor/darkyellow2/southeast, +"Xz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) -"TC" = ( +"XD" = ( +/obj/item/frame/table, /obj/structure/machinery/light, /turf/open/floor/darkyellow2, /area/bigredv2/outside/filtration_plant) -"TX" = ( +"XZ" = ( +/turf/open/floor/darkyellowcorners2/west, +/area/bigredv2/outside/filtration_plant) +"Yx" = ( +/obj/structure/machinery/light, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/filtration_plant) +"YC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark, -/area/bigredv2/outside/filtration_plant) -"UH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E-corner" +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Atmospherics Condenser Storage" }, -/turf/open/mars_cave/mars_cave_7, -/area/bigredv2/outside/filtration_cave_cas) -"US" = ( -/turf/open/floor/delivery, -/area/bigredv2/outside/filtration_plant) -"VW" = ( -/obj/structure/cargo_container/grant/left, -/turf/open/floor/bot/north, -/area/bigredv2/outside/filtration_plant) -"Wc" = ( -/turf/open/floor/darkyellowcorners2/north, +/turf/open/floor/almayer/test_floor4, /area/bigredv2/outside/filtration_plant) -"Wz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/darkyellow2/north, +"Zz" = ( +/obj/structure/surface/table, +/turf/open/floor/darkyellow2/southwest, /area/bigredv2/outside/filtration_plant) -"WD" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, +"ZG" = ( +/obj/effect/landmark/crap_item, /turf/open/mars_cave/mars_cave_2, /area/bigredv2/outside/filtration_cave_cas) -"Xx" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/darkyellow2, -/area/bigredv2/outside/filtration_plant) -"XC" = ( -/obj/structure/cargo_container/grant/right, -/turf/open/floor/bot/north, -/area/bigredv2/outside/filtration_plant) -"Yg" = ( -/obj/structure/cargo_container/grant/rightmid, -/turf/open/floor/bot/north, -/area/bigredv2/outside/filtration_plant) (1,1,1) = {" aa -aA +YC aa aa aa @@ -745,88 +757,88 @@ ah bI bw bw -bZ -cl -cl -cl -cl -cl -cl -cl -cl -cl +RX +SR +SR +SR +SR +SR +SR +SR +SR +SR aa "} (2,1,1) = {" -ak -TX -ap +wZ +UD +Ai aa -aL -et -aL -aL +lO +Vr +lO +lO aa -tz -vK -bJ +Tn +rQ +yR bw bw bw bw -bZ -bZ -bZ -bZ -bZ -bZ -bZ -ce +RX +RX +RX +RX +RX +RX +RX +Yx bw "} (3,1,1) = {" -ak -TX -TC +wZ +UD +Mf aa -oE -FK -FK -FK -bl -bW -bp -AD +no +kh +kh +kh +De +Jq +qL +Pt bw bw bw bw -US -US -US -US -cn -US -US -US +iZ +iZ +iZ +iZ +gJ +iZ +iZ +iZ aY "} (4,1,1) = {" -ak -TX -AD +wZ +UD +Pt aa -aT -aM -aT -et +sv +xY +sv +Vr aa -hk -TX -yZ -bU -bB -Kp +rS +UD +XZ +tE +FD +Zz aY cg az @@ -840,7 +852,7 @@ aY "} (5,1,1) = {" aa -aA +YC aa aa aa @@ -848,170 +860,170 @@ aa aa aa aa -Wz -bq -bW -bW -bW -cb +wQ +MH +Jq +Jq +Jq +tx aY bf ad -ti -ti +la +la az -aS -aS +Vh +Vh jh aY "} (6,1,1) = {" -al -ac -aq +zD +Vz +BZ aa -tz -bg -Ms -QJ +Tn +OX +qH +nF aa -hk -TX -bW -bW -bW -bW -cf +rS +UD +Jq +Jq +Jq +Jq +Sw az ad -ti -aS +la +Vh az -aS -VW +Vh +uu az bw "} (7,1,1) = {" -ff -aC -ar -aB -bW -bW -bW -bW -Sj -bW -TX -bW -bW -bW -bW -cf +CK +um +kv +Gm +Jq +Jq +Jq +Jq +qm +Jq +UD +Jq +Jq +Jq +Jq +Sw az az az az az -aS -Yg +Vh +KG az bw "} (8,1,1) = {" -an -ae -as +WR +tT +zL ah -hk -bh -aV -gt +rS +VB +tc +sf ah -xd -TX -bW -bW -bW -bW -cf +SL +UD +Jq +Jq +Jq +Jq +Sw az az -aS -aS +Vh +Vh az -aS -XC +Vh +Jp az bw "} (9,1,1) = {" -af -af -aH -aD -aN -aN -ar -AD +Xj +Xj +TW +Xl +Bx +Bx +kv +Pt ah -hk -TX -bW -bW -bW -bW -cf +rS +UD +Jq +Jq +Jq +Jq +Sw az az -aS -aS +Vh +Vh np -bz -aS +Jo +Vh jh aY "} (10,1,1) = {" -ff -aE -at +CK +SA +Rn aa -Wz -bW -ac -bk +wQ +Jq +Vz +vz aa -eL -TX -FI -yi -tp -Sk +Oq +UD +Vm +EP +dP +oQ aY bf az -aS -cj +Vh +On az -aS -aS +Vh +Vh az aY "} (11,1,1) = {" -bG -bH -au +DI +Qw +FG aa -ka -aO -aW -bc +Jc +Wg +kg +Xz aa aa -br +Gd aa bw bD @@ -1032,26 +1044,26 @@ ah ah ah aa -ka -bW -TX -AD +Jc +Jq +UD +Pt aa -tz -TX -bN +Tn +UD +zJ bw -bE -bE +uT +uT bw -US -US -US -US -US -US -US -US +iZ +iZ +iZ +iZ +iZ +iZ +iZ +iZ aY "} (13,1,1) = {" @@ -1059,26 +1071,26 @@ ai aF ai aa -aZ -aP -aX -aN -bm -aN -aW -Xx +fp +Rf +Aw +Bx +Fe +Bx +kg +ib bt -bF -bF +Bt +Bt bw -bZ -bZ -bZ -bZ -bZ -bZ -bZ -ce +RX +RX +RX +RX +RX +RX +RX +Yx aY "} (14,1,1) = {" @@ -1086,26 +1098,26 @@ ai ai ai aa -bb -bW -bW -TC +pd +Jq +Jq +Mf ay -Wz -TX -bQ +wQ +UD +Ji bw -bE -bE +uT +uT bw -Rv -Rv -Rv -Rv -Qx -Rv -Rv -Rv +Li +Li +Li +Li +DT +Li +Li +Li nk "} (15,1,1) = {" @@ -1113,27 +1125,27 @@ ai aF ai aa -bd -aR -aQ -be +Nn +KF +Oi +gg aa -hk -TX -Xx +rS +UD +ib bw -bF -bF +Bt +Bt bw -WD -bO -ci -bO -bO -ci -bO -bO -bO +sF +Uq +BF +Uq +Uq +BF +Uq +Uq +Uq "} (16,1,1) = {" aa @@ -1145,164 +1157,164 @@ aa ay aa aa -hk -TX -AD +rS +UD +Pt bw bD bD bw -WD -ch -bP -bO -bO -bO -bO -bO -bO +sF +cd +rq +Uq +Uq +Uq +Uq +Uq +Uq "} (17,1,1) = {" -am -am -am -am -am +OG +Bd +Bd +Bd +UB aY -Ee -bj -bj -Wc -TX -bS +QM +pF +pF +Cy +UD +XD aa -WD -WD -WD -WD -ci -bO -bO -bO -bO -bO -bO -bO +sF +sF +sF +sF +BF +Uq +Uq +Uq +Uq +Uq +Uq +Uq "} (18,1,1) = {" -av -am -am -am -am -et -bW -bW -bW -bW -bu -ff -cO -WD -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO +yU +wo +wo +wo +iw +Vr +Jq +Jq +Jq +Jq +wL +CK +gO +sF +Uq +Uq +Uq +Uq +Uq +Uq +Uq +Uq +Uq +Uq +Uq "} (19,1,1) = {" -ax -am -am -am -am -et -bW -bW -aP -aO -by -bW -et -WD -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO -bO +IX +wo +wo +wo +iw +Vr +Jq +Jq +Rf +Wg +KP +Jq +Vr +sF +Uq +Uq +Uq +Uq +Uq +Uq +Uq +Uq +Uq +Uq +Uq "} (20,1,1) = {" -ax -am -am -am -am -et -FI -FI -Ap -bo -bW -bT -et -WD -bO -bO -bO -bO -bO -bO -tB -bO -bO -bO -bO +IX +wo +wo +wo +iw +Vr +Vm +Vm +WF +GL +Jq +dV +Vr +sF +Uq +Uq +Uq +Uq +Uq +Uq +ZG +Uq +Uq +Uq +Uq "} (21,1,1) = {" -ax -am -am -aG -aG +IX +wo +wo +Ce +dS aY -qi -Jy -bn -FI -FI -kE +nu +rA +us +Vm +Vm +dk bX -WD -bO -bO -bO -ci -bO -bO -bO -bO -bO -bO -bO +sF +Uq +Uq +Uq +BF +Uq +Uq +Uq +Uq +Uq +Uq +Uq "} (22,1,1) = {" -am -am -aJ -aw -aK +wo +wo +iw +LU +uE aY aY aY @@ -1311,24 +1323,24 @@ ah bA ah aY -WD -bO -bO -bO -bO -bO -bO -bO -zu -bO -bO -bO +sF +Uq +Uq +Uq +Uq +Uq +Uq +Uq +Ga +Uq +Uq +Uq "} (23,1,1) = {" -am -am -aJ -aK +wo +wo +iw +uE bK bK bK @@ -1339,23 +1351,23 @@ bv bv aY aj -bO -bO +Uq +Uq aj aj -bO -bO -bO -zu -bO -bO -bO +Uq +Uq +Uq +Ga +Uq +Uq +Uq "} (24,1,1) = {" -am -am -aJ -aK +wo +wo +iw +uE bK bK bK @@ -1371,10 +1383,10 @@ aj aj aj aj -ck -ck -UH -ck -ck -ck +lC +lC +vF +lC +lC +lC "} diff --git a/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm b/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm index 6e418ce24e08..8eefcb16466a 100644 --- a/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm +++ b/maps/map_files/BigRed/sprinkles/40.admin_pmc.dmm @@ -9,93 +9,17 @@ "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) "ak" = ( /obj/structure/window_frame/solaris, /obj/item/shard, /turf/open/floor/plating, /area/bigredv2/outside/admin_building) -"al" = ( -/obj/structure/machinery/door/airlock/almayer/command/colony{ - dir = 1; - name = "\improper Operations Meeting Room" - }, -/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 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"at" = ( -/obj/structure/bed/chair/comfy/black, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"au" = ( -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) -"av" = ( -/obj/structure/barricade/metal/wired{ - dir = 4; - icon_state = "metal_2" - }, -/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) -"aA" = ( -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) "aB" = ( /obj/structure/surface/table, /obj/structure/prop/server_equipment/laptop/on, @@ -111,19 +35,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,25 +55,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, -/area/bigredv2/outside/admin_building) -"aP" = ( -/obj/structure/barricade/metal/wired{ - dir = 4 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) "aQ" = ( /turf/open/floor/carpet, /area/bigredv2/outside/admin_building) @@ -174,17 +66,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,28 +76,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 - }, -/obj/item/ammo_magazine/rifle{ - current_rounds = 0; - pixel_x = -2; - pixel_y = -10 - }, -/obj/item/ammo_box/magazine/m4a3{ - num_of_magazines = 2 - }, -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) "ba" = ( /obj/structure/surface/table, /obj/structure/pipes/vents/pump{ @@ -225,16 +84,6 @@ /obj/item/clothing/head/helmet/marine/veteran/pmc/leader, /turf/open/floor/carpet, /area/bigredv2/outside/admin_building) -"bb" = ( -/obj/structure/bed/chair/comfy/blue{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/carpet, -/area/bigredv2/outside/admin_building) "bc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -242,64 +91,81 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/carpet, /area/bigredv2/outside/admin_building) -"bd" = ( -/obj/item/ammo_magazine/rifle{ - current_rounds = 0; - pixel_x = -8; - pixel_y = 9 +"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" }, -/obj/structure/pipes/standard/simple/hidden/green{ +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) +"bY" = ( +/obj/structure/barricade/metal/wired{ dir = 4 }, /turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"be" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/darkred2/west, +"cD" = ( +/obj/item/shard, +/turf/open/floor/darkred2, /area/bigredv2/outside/admin_building) -"bf" = ( +"dC" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark, +/turf/open/floor/darkred2/east, /area/bigredv2/outside/admin_building) -"bg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"ed" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"ee" = ( +/obj/effect/decal/cleanable/blood/xeno, /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" +"eg" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/wood, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"bi" = ( -/obj/item/ammo_box/magazine/ext{ - num_of_magazines = 1 +"gb" = ( +/obj/item/ammo_box/magazine{ + num_of_magazines = 2 + }, +/obj/item/ammo_magazine/rifle{ + current_rounds = 0; + pixel_x = -8; + pixel_y = 13 + }, +/obj/item/ammo_magazine/rifle{ + current_rounds = 0; + pixel_x = 14; + pixel_y = 17 }, /turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"bl" = ( -/turf/open/floor/wood, -/area/bigredv2/outside/admin_building) -"bm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/light{ - dir = 8 +"gR" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/structure/barricade/metal/wired{ + dir = 1; + icon_state = "metal_2" }, -/turf/open/floor/darkred2/west, +/turf/open/floor/carpet, /area/bigredv2/outside/admin_building) -"bn" = ( -/turf/open/floor/darkred2/southwest, +"he" = ( +/obj/structure/platform, +/obj/structure/flora/jungle/planttop1{ + pixel_y = 10 + }, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"bo" = ( +"hf" = ( /obj/item/device/radio/intercom{ freerange = 1; frequency = 1469; @@ -308,31 +174,34 @@ }, /turf/open/floor/darkred2/southeast, /area/bigredv2/outside/admin_building) -"bp" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor, +"hz" = ( +/turf/open/floor/darkred2, /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, +"hC" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"dp" = ( -/obj/item/ammo_magazine/rifle/rubber{ - current_rounds = 0; - pixel_x = -6; - pixel_y = -4 +"hM" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/carpet, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkred2, /area/bigredv2/outside/admin_building) -"is" = ( -/obj/item/ammo_magazine/pistol/rubber{ - current_rounds = 0 +"hN" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"jh" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkredcorners2/west, +/area/bigredv2/outside/admin_building) +"jm" = ( +/obj/structure/platform{ + dir = 4 }, -/turf/open/floor/wood, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "jq" = ( /obj/item/weapon/gun/rifle/m41a/corporate{ @@ -343,70 +212,137 @@ }, /turf/open/floor/carpet, /area/bigredv2/outside/admin_building) -"lz" = ( +"jY" = ( /obj/item/ammo_magazine/rifle/rubber{ current_rounds = 0; - pixel_y = 11 + pixel_x = -6; + pixel_y = -4 }, -/turf/open/floor/wood, +/obj/item/stack/sheet/metal{ + pixel_x = -5; + pixel_y = 2 + }, +/turf/open/floor/carpet, /area/bigredv2/outside/admin_building) -"mq" = ( -/obj/structure/window/framed/solaris/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Operations"; - name = "\improper Operations Shutters" +"kr" = ( +/obj/item/stack/sheet/metal{ + pixel_x = 3; + pixel_y = -11 }, -/turf/open/floor/plating, +/turf/open/floor/carpet, /area/bigredv2/outside/admin_building) -"rv" = ( -/obj/item/ammo_magazine/rifle{ +"la" = ( +/obj/item/ammo_magazine/pistol/rubber{ current_rounds = 0 }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"lv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, /turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"si" = ( -/obj/item/ammo_box/magazine{ - num_of_magazines = 2 +"mi" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/platform_decoration, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"mr" = ( +/obj/structure/barricade/metal/wired{ + dir = 4; + icon_state = "metal_2" }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"nd" = ( /obj/item/ammo_magazine/rifle{ current_rounds = 0; pixel_x = -8; - pixel_y = 13 + pixel_y = 9 }, -/obj/item/ammo_magazine/rifle{ - current_rounds = 0; - pixel_x = 14; - pixel_y = 17 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/floor/wood, /area/bigredv2/outside/admin_building) -"uv" = ( -/obj/item/ammo_magazine/rifle{ - current_rounds = 0; - pixel_x = -9; - pixel_y = 7 +"oI" = ( +/obj/item/shard, +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"oZ" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkred2/southwest, +/area/bigredv2/outside/admin_building) +"pZ" = ( +/obj/structure/machinery/door/airlock/almayer/command/colony{ + dir = 1; + name = "\improper Operations Meeting Room"; + density = 0; + icon_state = "door_open" + }, +/turf/open/floor/delivery, +/area/bigredv2/outside/admin_building) +"qR" = ( +/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) -"vH" = ( -/obj/structure/platform{ - dir = 8 +"re" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"sX" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"ts" = ( +/obj/item/storage/secure/briefcase, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"tz" = ( +/obj/effect/landmark/survivor_spawner, +/obj/structure/platform_decoration{ + dir = 1 }, /turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"vO" = ( -/obj/structure/platform{ +"uH" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/dark, +/obj/effect/landmark/corpsespawner/wygoon, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/carpet, /area/bigredv2/outside/admin_building) -"yf" = ( +"xe" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/floor/dark, /area/bigredv2/outside/admin_building) +"xQ" = ( +/obj/effect/acid_hole{ + dir = 4 + }, +/turf/closed/wall/solaris, +/area/bigredv2/outside/admin_building) +"yd" = ( +/obj/structure/window_frame/solaris, +/turf/open/floor/plating, +/area/bigredv2/outside/admin_building) "za" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -419,28 +355,62 @@ }, /turf/open/floor, /area/bigredv2/outside/admin_building) -"AC" = ( -/obj/item/ammo_magazine/pistol/rubber{ - current_rounds = 0 +"AF" = ( +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/carpet, +/turf/open/floor/dark, /area/bigredv2/outside/admin_building) "Br" = ( /obj/structure/surface/table, /obj/item/storage/firstaid/regular/empty, /turf/open/floor/carpet, /area/bigredv2/outside/admin_building) -"ND" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +"Cj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"Pk" = ( +"Cw" = ( +/obj/effect/landmark/corpsespawner/wygoon/lead, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"CO" = ( +/obj/item/ammo_magazine/rifle{ + current_rounds = 0; + pixel_x = -9; + pixel_y = 7 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"EO" = ( +/obj/item/ammo_magazine/pistol/rubber{ + current_rounds = 0 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"ER" = ( /obj/structure/platform{ dir = 1 }, /turf/open/floor/dark, /area/bigredv2/outside/admin_building) -"QR" = ( +"Gc" = ( +/obj/item/ammo_box/magazine/ext{ + num_of_magazines = 1 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"Mu" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"Nb" = ( /obj/structure/barricade/metal/wired{ dir = 4 }, @@ -449,6 +419,42 @@ }, /turf/open/floor/wood, /area/bigredv2/outside/admin_building) +"Nc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/darkredcorners2, +/area/bigredv2/outside/admin_building) +"Nl" = ( +/obj/effect/landmark/corpsespawner/wygoon, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"NS" = ( +/obj/item/ammo_magazine/rifle/rubber{ + current_rounds = 0; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"Op" = ( +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"PU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/crap_item, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"PX" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/barricade/metal/wired{ + dir = 4 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) "Sz" = ( /obj/item/ammo_magazine/rifle/rubber{ current_rounds = 0; @@ -457,9 +463,67 @@ }, /turf/open/floor/carpet, /area/bigredv2/outside/admin_building) +"TJ" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/admin_building) +"Ua" = ( +/obj/item/stack/sheet/metal{ + amount = 3 + }, +/turf/open/floor/carpet, +/area/bigredv2/outside/admin_building) +"Ux" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/storage/toolbox/syndicate, +/turf/open/floor/darkred2/east, +/area/bigredv2/outside/admin_building) +"WY" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"Yb" = ( +/obj/item/ammo_magazine/rifle{ + current_rounds = 0 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"YI" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/sandbags/wired, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) +"Zg" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/darkred2, +/area/bigredv2/outside/admin_building) +"ZN" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/ammo_magazine/rifle{ + current_rounds = 0; + pixel_x = -2; + pixel_y = -10 + }, +/obj/item/ammo_box/magazine/m4a3{ + num_of_magazines = 2 + }, +/turf/open/floor/wood, +/area/bigredv2/outside/admin_building) +"ZO" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/darkred2/west, +/area/bigredv2/outside/admin_building) (1,1,1) = {" -mq +yd ab ab ab @@ -471,134 +535,134 @@ ab ab "} (2,1,1) = {" -aj +Zg aD -ar -aA -lz -bl -rv -aZ -bi +lv +Mu +NS +Cw +Yb +ZN +Gc ab "} (3,1,1) = {" -aj -ak -dp -AC -aJ -aO +cD +yd +jY +la +Ua +ts aJ aQ -si +gb bp "} (4,1,1) = {" -aj +hz ak -at +gR aB aK Br aV ba -bl -uv +sX +CO "} (5,1,1) = {" -aj +hz ae jq aC aQ -aC +kr Sz -bb -bl -bl +uH +sX +sX "} (6,1,1) = {" -ay -al -au +TJ +pZ +Nl aW aL aS -aQ +ed bc -bl -is +sX +EO "} (7,1,1) = {" -aj +hz ae -av -aP -aP -QR -aP -bd -bl -bl +PX +mr +bY +Nb +bY +nd +sX +sX "} (8,1,1) = {" -aj +hz ae ae -ad +ak ad ad ae za -ae +xQ ae "} (9,1,1) = {" -af -bm -an -be -aM -an -aX -ND -bn -bs +jh +ZO +re +WY +YI +re +PU +hC +oZ +ak "} (10,1,1) = {" -ag -vO -aw -bf -ay -aT -ay -bf -ay -bs +mi +jm +eg +Cj +oI +hN +TJ +Cj +TJ +ak "} (11,1,1) = {" -am +he ap -Pk -aG -aN -aU -aY -bg -bo +ER +Nc +Op +Ux +ee +dC +hf bs "} (12,1,1) = {" -ai -vH -yf -aH +tz +AF +xe +hM ae ae ae -bh +qR ae ae "} diff --git a/maps/map_files/BigRed/sprinkles/40.viro_open.dmm b/maps/map_files/BigRed/sprinkles/40.viro_open.dmm index 3a06d7aae8d4..e1be44cacdfe 100644 --- a/maps/map_files/BigRed/sprinkles/40.viro_open.dmm +++ b/maps/map_files/BigRed/sprinkles/40.viro_open.dmm @@ -2,399 +2,395 @@ "aa" = ( /turf/closed/wall/solaris/rock, /area/bigredv2/caves) -"ab" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_13, +"ai" = ( +/turf/open/mars, /area/bigredv2/outside/virology) -"ac" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/southwest, +"aU" = ( +/turf/open/mars, /area/bigredv2/outside/nw) -"ad" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, +"aV" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/mars, /area/bigredv2/outside/nw) -"ae" = ( +"bc" = ( +/turf/closed/wall/solaris/rock, +/area/bigredv2/outside) +"bd" = ( +/turf/closed/wall/solaris/reinforced, +/area/bigredv2/outside/virology) +"br" = ( +/obj/structure/inflatable/popped, +/turf/open/mars, +/area/bigredv2/outside/virology) +"bJ" = ( +/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/warnwhite/north, +/area/bigredv2/outside/virology) +"bX" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_2, +/area/bigredv2/outside/virology) +"da" = ( +/obj/structure/inflatable, +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/virology) +"df" = ( /obj/effect/landmark/crap_item, -/turf/open/floor/asteroidwarning, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/bigredv2/outside/nw) -"af" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, -/obj/structure/pipes/standard/simple/hidden/green{ +"dk" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/virology) +"gD" = ( +/obj/structure/inflatable, +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/virology) +"gH" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/nw) +"ia" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"jg" = ( +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/outside/virology) +"jQ" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; id = "viro"; name = "Virology Lockdown" }, -/turf/open/floor/asteroidfloor/north, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/bigredv2/outside/virology) -"ag" = ( -/turf/open/mars_cave/mars_dirt_4, +"kt" = ( +/obj/structure/bed/roller, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/virology) -"ah" = ( +"lY" = ( /turf/open/mars/mars_dirt_12, /area/bigredv2/outside/virology) -"ai" = ( -/turf/open/mars, -/area/bigredv2/outside/virology) -"ak" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/nw) -"al" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_2, +"mu" = ( +/obj/structure/sign/safety/biohazard, +/turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/virology) -"am" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/mars_cave/mars_cave_13, +"nR" = ( +/obj/structure/bed/roller, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/bigredv2/outside/virology) -"an" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/mars_cave/mars_dirt_6, +"oe" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/bigredv2/outside/virology) -"ao" = ( -/obj/structure/closet/bodybag{ - icon_state = "bodybag_open" - }, -/turf/open/mars/mars_dirt_12, +"ou" = ( +/obj/structure/surface/table/almayer, +/obj/item/restraint/handcuffs, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/bigredv2/outside/virology) -"aq" = ( -/obj/structure/inflatable, -/turf/open/mars_cave/mars_dirt_5, +"oM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/nw) +"oS" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/outside/virology) -"ar" = ( -/obj/structure/fence, -/turf/open/mars_cave/mars_cave_7, +"pG" = ( +/obj/structure/machinery/light, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/bigredv2/outside/virology) -"as" = ( -/turf/open/floor/asteroidwarning/northwest, +"qc" = ( +/obj/structure/inflatable/door, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/bigredv2/outside/virology) -"at" = ( -/turf/open/floor/asteroidwarning/north, +"qW" = ( +/obj/structure/inflatable/door, +/turf/open/asphalt/cement_sunbleached, /area/bigredv2/outside/virology) -"au" = ( -/obj/structure/inflatable, +"re" = ( +/obj/item/weapon/gun/flamer, /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/virology) -"av" = ( -/turf/open/floor/asteroidfloor/north, +"rh" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/glass, +/obj/item/storage/syringe_case/regular{ + pixel_y = 10 + }, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/bigredv2/outside/virology) -"aw" = ( +"ru" = ( /obj/structure/machinery/light{ dir = 4 }, /obj/structure/inflatable, -/turf/open/floor/asteroidwarning/northwest, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/bigredv2/outside/virology) -"ax" = ( -/turf/open/floor/asteroidwarning/north, +"rM" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/bigredv2/outside/nw) -"ay" = ( -/obj/structure/closet/bodybag{ - icon_state = "bodybag_open" - }, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/outside/virology) -"az" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/virology) -"aA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/virology) -"aE" = ( +"rP" = ( /obj/structure/inflatable, -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/nw) -"aF" = ( -/obj/structure/inflatable/door, -/turf/open/mars_cave/mars_dirt_4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/bigredv2/outside/virology) -"aG" = ( +"sm" = ( /obj/structure/inflatable/door, -/turf/open/floor/asteroidwarning/west, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/bigredv2/outside/virology) -"aH" = ( -/obj/structure/machinery/light{ - dir = 4 +"uC" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, +/area/bigredv2/outside/virology) +"uO" = ( +/obj/structure/inflatable/popped/door, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/obj/structure/inflatable, -/turf/open/floor/asteroidwarning/east, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/bigredv2/outside/virology) -"aI" = ( -/obj/structure/inflatable/door, -/turf/open/floor/asteroidwarning/east, +"vY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/bigredv2/outside/nw) -"aJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/virology) -"aK" = ( -/turf/open/floor/asteroidwarning/east, +"xm" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/mars_cave/mars_dirt_6, /area/bigredv2/outside/virology) -"aM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"xU" = ( +/obj/structure/closet/bodybag{ + icon_state = "bodybag_open" }, -/obj/structure/inflatable/popped/door, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/virology) -"aN" = ( -/obj/effect/decal/cleanable/ash, /turf/open/mars_cave/mars_dirt_5, /area/bigredv2/outside/virology) -"aO" = ( -/obj/effect/landmark/hunter_secondary, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/virology) -"aR" = ( +"yk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "viro"; - name = "Virology Lockdown" - }, -/turf/open/floor/asteroidfloor/north, +/turf/open/asphalt/cement_sunbleached, /area/bigredv2/outside/virology) -"aU" = ( -/turf/open/mars, -/area/bigredv2/outside/nw) -"aV" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/mars, -/area/bigredv2/outside/nw) -"aW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/inflatable/door, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/nw) -"aX" = ( +"As" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/southwest, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/bigredv2/outside/virology) -"aY" = ( -/obj/structure/sign/safety/biohazard, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/virology) -"aZ" = ( +"AF" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/virology) -"ba" = ( -/obj/structure/machinery/light, -/turf/open/floor/asteroidwarning, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, /area/bigredv2/outside/virology) -"bb" = ( -/turf/open/mars/mars_dirt_14, -/area/bigredv2/outside/virology) -"bc" = ( -/turf/closed/wall/solaris/rock, -/area/bigredv2/outside) -"bd" = ( -/turf/closed/wall/solaris/reinforced, -/area/bigredv2/outside/virology) -"be" = ( -/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/warnwhite/north, +"Bq" = ( +/obj/structure/inflatable/popped, +/turf/open/mars/mars_dirt_10, /area/bigredv2/outside/virology) -"bf" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, +"CQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/asteroidfloor/north, +/obj/structure/inflatable/door, +/turf/open/asphalt/cement_sunbleached, /area/bigredv2/outside/nw) -"bg" = ( -/obj/structure/inflatable, -/turf/open/mars/mars_dirt_11, +"Dt" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/surgery/scalpel, +/obj/item/device/autopsy_scanner, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/virology) -"bj" = ( -/obj/structure/inflatable, -/turf/open/floor/asteroidwarning/southeast, +"Ee" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/virology) +"Et" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/bigredv2/outside/nw) -"bk" = ( -/obj/structure/inflatable/door, -/turf/open/floor/asteroidwarning/southwest, +"ED" = ( +/obj/structure/inflatable/popped, +/turf/open/asphalt/cement_sunbleached, /area/bigredv2/outside/virology) -"bl" = ( -/obj/structure/inflatable, -/turf/open/floor/asteroidwarning/northwest, +"EF" = ( +/obj/structure/inflatable/door, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/virology) -"bm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/inflatable, -/turf/open/floor/asteroidwarning/north, +"Fb" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, /area/bigredv2/outside/virology) -"bn" = ( -/obj/structure/inflatable, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/virology) -"bo" = ( -/obj/structure/closet/bodybag{ - icon_state = "bodybag_open" +"FA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8 }, -/turf/open/mars_cave/mars_dirt_4, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, /area/bigredv2/outside/virology) -"bp" = ( -/turf/open/mars_cave/mars_dirt_6, -/area/bigredv2/outside/virology) -"bq" = ( +"FX" = ( /obj/structure/closet/bodybag{ icon_state = "bodybag_open" }, /turf/open/mars/mars_dirt_3, /area/bigredv2/outside/virology) -"br" = ( -/obj/structure/inflatable/popped, -/turf/open/mars, -/area/bigredv2/outside/virology) -"bs" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/surgery/scalpel, -/obj/item/device/autopsy_scanner, +"GA" = ( /turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/virology) -"bt" = ( -/obj/structure/bed/roller, -/turf/open/mars/mars_dirt_10, +"GF" = ( +/obj/effect/landmark/hunter_secondary, +/turf/open/asphalt/cement_sunbleached, /area/bigredv2/outside/virology) -"bu" = ( +"GP" = ( /obj/structure/bed/roller, /obj/effect/decal/cleanable/blood, -/turf/open/floor/asteroidwarning/northwest, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached2, /area/bigredv2/outside/virology) -"bv" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/virology) -"bw" = ( -/obj/structure/bed/roller, -/turf/open/floor/asteroidwarning/north, +"GX" = ( +/turf/open/asphalt/cement_sunbleached, /area/bigredv2/outside/virology) -"bx" = ( +"HZ" = ( /obj/structure/inflatable/popped, -/turf/open/mars/mars_dirt_10, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/bigredv2/outside/virology) -"by" = ( -/obj/structure/inflatable/popped/door, -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/virology) -"bz" = ( +"Ie" = ( /obj/structure/inflatable, -/turf/open/floor/asteroidfloor/north, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/virology) +"IZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/bigredv2/outside/virology) -"bA" = ( +"KY" = ( /obj/structure/inflatable/door, -/turf/open/floor/asteroidfloor/north, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"LF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/inflatable, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/virology) -"bE" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +"LZ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/asteroidfloor/north, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, /area/bigredv2/outside/virology) -"bF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 8 - }, -/turf/open/floor/asteroidwarning/northeast, +"MQ" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_7, /area/bigredv2/outside/virology) -"bG" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/glass, -/obj/item/storage/syringe_case/regular{ - pixel_y = 10 - }, -/turf/open/floor/asteroidwarning, +"Nt" = ( +/obj/structure/fence, +/turf/open/mars_cave/mars_cave_13, /area/bigredv2/outside/virology) -"bH" = ( -/obj/structure/surface/table/almayer, -/obj/item/restraint/handcuffs, -/turf/open/floor/asteroidwarning/southeast, +"OX" = ( +/obj/structure/inflatable, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/virology) -"lB" = ( -/turf/open/floor/asteroidwarning/southeast, +"Pb" = ( +/obj/structure/inflatable, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, /area/bigredv2/outside/virology) -"qP" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/nw) -"rG" = ( -/turf/open/floor/asteroidwarning, +"PU" = ( +/obj/structure/inflatable, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached17, /area/bigredv2/outside/nw) -"uN" = ( -/turf/open/mars_cave/mars_dirt_5, +"QV" = ( +/turf/open/mars/mars_dirt_14, /area/bigredv2/outside/virology) -"zC" = ( +"RE" = ( +/obj/structure/inflatable, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, +/area/bigredv2/outside/nw) +"RN" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; id = "viro"; name = "Virology Lockdown" }, -/turf/open/floor/asteroidwarning/north, +/turf/open/asphalt/cement_sunbleached, /area/bigredv2/outside/virology) -"FK" = ( -/obj/structure/inflatable, -/turf/open/floor/asteroidwarning/east, +"Sh" = ( +/obj/structure/inflatable/popped/door, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"TE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/inflatable/popped/door, +/turf/open/asphalt/cement_sunbleached, /area/bigredv2/outside/virology) -"GE" = ( -/turf/open/floor/asteroidwarning, +"UE" = ( +/obj/structure/inflatable, +/turf/open/asphalt/cement_sunbleached, /area/bigredv2/outside/virology) -"Kk" = ( +"Vw" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; id = "viro"; name = "Virology Lockdown" }, -/turf/open/floor/asteroidwarning, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached4, /area/bigredv2/outside/virology) -"Kv" = ( -/obj/item/weapon/gun/flamer, -/turf/open/mars_cave/mars_dirt_4, +"Wm" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, /area/bigredv2/outside/virology) -"Po" = ( +"Xm" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "viro"; + name = "Virology Lockdown" + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/virology) +"XA" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement_sunbleached, +/area/bigredv2/outside/nw) +"XR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /obj/structure/inflatable, -/turf/open/floor/asteroidwarning/northeast, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached20, /area/bigredv2/outside/virology) -"Ry" = ( +"Yn" = ( /obj/effect/decal/cleanable/ash, /turf/open/mars_cave/mars_cave_14, /area/bigredv2/outside/virology) -"Vr" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/asteroidfloor/north, +"Yy" = ( +/obj/structure/closet/bodybag{ + icon_state = "bodybag_open" + }, +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/virology) +"ZB" = ( +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/outside/virology) +"ZY" = ( +/obj/structure/closet/bodybag{ + icon_state = "bodybag_open" + }, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/outside/virology) (1,1,1) = {" aa aa -al -ar -ab -ab +bX +MQ +Nt +Nt aa aa aa @@ -403,10 +399,10 @@ aa (2,1,1) = {" aa aa -am -Ry -bp -uN +oS +Yn +jg +ZB aa aa aa @@ -415,239 +411,239 @@ aa (3,1,1) = {" aa aa -an -aN -Kv -ah -ah -bs -au +xm +dk +re +lY +lY +Dt +OX bd "} (4,1,1) = {" aa -aq -ay -bo -bq +Ie +xU +ZY +FX ai ai -bt -bl +kt +da bd "} (5,1,1) = {" aa -au -aq -aF -aF -bg -bg -au -bm +OX +Ie +EF +EF +gD +gD +OX +LF bd "} (6,1,1) = {" aa -bo -bo -as -az -aJ -aJ -aJ -aX -be +ZY +ZY +uC +LZ +As +As +As +AF +bJ "} (7,1,1) = {" bd -ao -bo -at -aA -av -av -av -aY -bd +Yy +ZY +oe +yk +GX +GX +GX +Wm +mu "} (8,1,1) = {" bd br -bx -at -aA -av -aO -av -aZ +Bq +oe +yk +GX +GF +GX +IZ bd "} (9,1,1) = {" bd -bu -by -av -aA -av -av -av -ba +GP +uO +GX +yk +GX +GX +GX +pG bd "} (10,1,1) = {" bd -bv -bz -av -aA -av -aK -aK -lB +HZ +UE +GX +yk +GX +Ee +Ee +Fb bd "} (11,1,1) = {" bd -bw -bA -av -aA -GE -ag -ag -ag +nR +qW +GX +yk +Wm +GA +GA +GA bd "} (12,1,1) = {" bd -bv -Vr -av -aA -GE -ag -ah -ag +HZ +ED +GX +yk +Wm +GA +lY +GA bd "} (13,1,1) = {" bd -bw -bA -av -aA -GE -ag +nR +qW +GX +yk +Wm +GA ai -bb +QV bd "} (14,1,1) = {" bd -Po -FK -av -aA -av -bn -aG -bk +Pb +Pb +GX +yk +GX +rP +qc +sm bd "} (15,1,1) = {" bd -ag -ag -at -aA -av -bz -av -GE +GA +GA +oe +yk +GX +UE +GX +Wm bd "} (16,1,1) = {" bd -ag -ag -at -aA -av -bz -av -GE +GA +GA +oe +yk +GX +UE +GX +Wm bd "} (17,1,1) = {" bd -ag -aw -bA -aM -bA -aH -bE -bG +GA +XR +qW +TE +qW +ru +ia +rh bd "} (18,1,1) = {" bd -ag +GA bd -zC -af -Kk +Vw +RN +jQ bd -bF -bH +FA +ou bd "} (19,1,1) = {" bd bd bd -at -aA -GE +oe +yk +Wm bd bd bd bd "} (20,1,1) = {" -ac -ak +vY +gH bd -zC -aR -Kk +Vw +Xm +jQ bd aU bd bc "} (21,1,1) = {" -ad -ak -aE -aI -aW -qP -bj +oM +gH +RE +KY +CQ +Sh +PU aU bc bc "} (22,1,1) = {" -ae -ak -ak -ax -bf -rG -ak +df +gH +gH +rM +XA +Et +gH aV aU bc diff --git a/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm b/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm index 5758eb83d7f0..c60a4e6854af 100644 --- a/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm +++ b/maps/map_files/BigRed/sprinkles/70.se-checkpoint.dmm @@ -1,8 +1,12 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ax" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor, -/area/bigred/ground/security) +"aH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/filtration_cave_cas) +"aM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement2, +/area/bigredv2/outside/filtration_cave_cas) "aN" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/secure_data{ @@ -22,15 +26,6 @@ /obj/item/device/motiondetector, /turf/open/floor, /area/bigred/ground/security) -"cO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/filtration_cave_cas) -"dz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/filtration_cave_cas) "el" = ( /obj/structure/surface/table/almayer, /obj/item/restraint/handcuffs, @@ -40,6 +35,10 @@ /obj/structure/closet/secure_closet/marshal, /turf/open/floor/greengrid, /area/bigred/ground/security) +"gr" = ( +/obj/effect/decal/strata_decals/grime/grime2, +/turf/open/asphalt/cement/cement3, +/area/bigredv2/outside/filtration_cave_cas) "hz" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/colony{ dir = 1; @@ -61,49 +60,34 @@ }, /turf/open/floor/greengrid, /area/bigred/ground/security) -"kG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/filtration_cave_cas) -"kL" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/filtration_cave_cas) "kX" = ( /turf/closed/wall/solaris/reinforced, /area/bigred/ground/security) -"mp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/northwest, +"nY" = ( +/turf/open/asphalt/cement/cement3, /area/bigredv2/outside/filtration_cave_cas) "oT" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/filtration_cave_cas) -"pb" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/asteroidwarning/north, +"pI" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/asphalt/cement/cement2, /area/bigredv2/outside/filtration_cave_cas) -"pJ" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/se) "pV" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, /turf/open/floor, /area/bigred/ground/security) -"qg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/filtration_cave_cas) "qy" = ( /obj/item/device/radio, /obj/structure/surface/table/almayer, /turf/open/floor, /area/bigred/ground/security) +"qS" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/se) "rD" = ( /obj/structure/machinery/camera/autoname{ dir = 8 @@ -114,6 +98,10 @@ /obj/structure/machinery/deployable/barrier, /turf/open/floor/greengrid, /area/bigred/ground/security) +"sd" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor, +/area/bigred/ground/security) "tV" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ dir = 4; @@ -147,10 +135,6 @@ /obj/item/stack/sheet/metal/small_stack, /turf/open/floor, /area/bigred/ground/security) -"wi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/filtration_cave_cas) "xa" = ( /turf/open/floor/greengrid, /area/bigred/ground/security) @@ -169,54 +153,54 @@ }, /turf/open/floor, /area/bigred/ground/security) -"zE" = ( +"xw" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/west, +/turf/open/asphalt/cement/cement3, /area/bigredv2/outside/filtration_cave_cas) -"Aq" = ( +"An" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement1/north, /area/bigredv2/outside/filtration_cave_cas) "AY" = ( /turf/open/floor, /area/bigred/ground/security) -"AZ" = ( -/turf/open/floor/asteroidwarning/north, +"DT" = ( +/turf/open/asphalt/cement/cement4, /area/bigredv2/outside/filtration_cave_cas) -"EV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/se) -"Ge" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidwarning/northeast, +"Es" = ( +/turf/open/asphalt/cement/cement14, /area/bigredv2/outside/filtration_cave_cas) -"Gm" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/filtration_cave_cas) -"GJ" = ( +"Fv" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/filtration_cave_cas) -"HH" = ( -/turf/open/floor/asteroidwarning, +/turf/open/asphalt/cement/cement4, /area/bigredv2/outside/filtration_cave_cas) -"Ih" = ( -/turf/open/floor/asteroidfloor/north, +"Gi" = ( +/turf/open/asphalt/cement/cement9, /area/bigredv2/outside/filtration_cave_cas) +"HM" = ( +/obj/item/tool/warning_cone, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached9, +/area/bigredv2/outside/se) "IS" = ( /obj/structure/filingcabinet, /turf/open/floor/greengrid, /area/bigred/ground/security) +"KD" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1/north, +/area/bigredv2/outside/filtration_cave_cas) "KO" = ( /obj/item/trash/sosjerky, /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigred/ground/security) +"Lw" = ( +/obj/effect/landmark/hunter_primary, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement9, +/area/bigredv2/outside/filtration_cave_cas) "LX" = ( /obj/structure/machinery/light{ dir = 8 @@ -224,10 +208,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigred/ground/security) +"Mo" = ( +/turf/open/asphalt/cement/cement12, +/area/bigredv2/outside/filtration_cave_cas) "Mq" = ( /obj/structure/surface/table/almayer, /turf/open/floor/greengrid, /area/bigred/ground/security) +"Nv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement15, +/area/bigredv2/outside/filtration_cave_cas) "NQ" = ( /obj/structure/largecrate, /turf/open/floor/greengrid, @@ -239,18 +231,20 @@ /obj/structure/machinery/vending/security, /turf/open/floor, /area/bigred/ground/security) -"OD" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/se) -"OM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/southwest, +"On" = ( +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) +"Ot" = ( +/turf/open/asphalt/cement/cement15, /area/bigredv2/outside/filtration_cave_cas) "Pf" = ( /obj/effect/decal/cleanable/blood, /obj/effect/spawner/gibspawner/human, /turf/open/floor, /area/bigred/ground/security) +"Pg" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/se) "PS" = ( /turf/open/mars, /area/bigredv2/outside/se) @@ -267,6 +261,16 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/solaris/reinforced, /area/bigred/ground/security) +"Rv" = ( +/obj/item/tool/warning_cone, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/filtration_cave_cas) +"RA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/bigredv2/outside/filtration_cave_cas) "Sr" = ( /obj/structure/machinery/camera/autoname{ dir = 8 @@ -279,12 +283,11 @@ /obj/structure/window/framed/solaris/reinforced, /turf/open/floor/plating, /area/bigred/ground/security) -"Ue" = ( -/obj/structure/machinery/camera/autoname, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/filtration_cave_cas) -"Vg" = ( -/turf/open/floor/asteroidwarning/west, +"Tw" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 1 + }, +/turf/open/asphalt/cement/cement3, /area/bigredv2/outside/filtration_cave_cas) "Vn" = ( /obj/structure/surface/table/almayer, @@ -296,11 +299,17 @@ /obj/structure/largecrate, /turf/open/floor, /area/bigred/ground/security) -"Wa" = ( -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/se) -"XU" = ( -/turf/open/floor/asteroidwarning/southwest, +"XS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/bigredv2/outside/filtration_cave_cas) +"XX" = ( +/obj/effect/landmark/crap_item, +/turf/open/asphalt/cement/cement1/north, +/area/bigredv2/outside/filtration_cave_cas) +"Ya" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/asphalt/cement/cement4, /area/bigredv2/outside/filtration_cave_cas) "Yo" = ( /obj/structure/surface/rack, @@ -314,10 +323,10 @@ }, /turf/open/floor/greengrid, /area/bigred/ground/security) -"Zu" = ( -/obj/effect/landmark/hunter_primary, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/asteroidwarning/northeast, +"Zn" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, /area/bigredv2/outside/filtration_cave_cas) "ZK" = ( /obj/effect/landmark/crap_item, @@ -329,10 +338,10 @@ (1,1,1) = {" PS -pJ -EV -OD -Wa +HM +qS +qS +Pg kX kX kX @@ -361,10 +370,10 @@ Qo "} (3,1,1) = {" oT -kL -Vg -zE -OM +pI +xw +nY +Es SF kd AY @@ -377,10 +386,10 @@ Qo "} (4,1,1) = {" oT -Ge -wi -wi -kG +Gi +KD +XX +Ot SF Vn xj @@ -409,10 +418,10 @@ Qo "} (6,1,1) = {" oT -mp -Vg -Vg -XU +aM +Tw +gr +Es kX kX kX @@ -425,10 +434,10 @@ Qo "} (7,1,1) = {" oT -Ue -Ih -Aq -qg +Ya +On +On +Mo kX VI VI @@ -441,12 +450,12 @@ Qo "} (8,1,1) = {" oT -AZ -Ih -Aq -qg +DT +XS +On +Mo kX -ax +sd AY uk uk @@ -457,10 +466,10 @@ Qo "} (9,1,1) = {" oT -cO -Aq -Ih -HH +Fv +XS +XS +Mo ve uk uk @@ -473,10 +482,10 @@ Qo "} (10,1,1) = {" oT -Gm -Ih -Ih -HH +RA +On +Zn +Mo kX AY Pf @@ -489,10 +498,10 @@ Qo "} (11,1,1) = {" oT -pb -Ih -Aq -qg +Rv +On +XS +aH kX vH ZK @@ -505,10 +514,10 @@ Qo "} (12,1,1) = {" ie -Zu -GJ -GJ -dz +Lw +An +An +Nv Qo Qo Qo diff --git a/maps/map_files/BigRed/standalone/crashlanding-eva.dmm b/maps/map_files/BigRed/standalone/crashlanding-eva.dmm index c473dc6b8580..cce52624863f 100644 --- a/maps/map_files/BigRed/standalone/crashlanding-eva.dmm +++ b/maps/map_files/BigRed/standalone/crashlanding-eva.dmm @@ -16,10 +16,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/mars, /area/bigredv2/caves_north) -"av" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars/mars_dirt_11, -/area/bigredv2/caves_north) "aw" = ( /turf/closed/shuttle/ert{ icon_state = "wy20" @@ -43,10 +39,6 @@ icon_state = "wy22" }, /area/bigredv2/outside/general_offices) -"aE" = ( -/obj/structure/computerframe, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) "aF" = ( /turf/closed/shuttle/ert{ icon_state = "wy23" @@ -68,22 +60,6 @@ "aK" = ( /turf/open/floor, /area/bigredv2/outside/general_offices) -"aL" = ( -/obj/structure/machinery/washing_machine, -/obj/item/clothing/under/darkred, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"aM" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"aN" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"aO" = ( -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) "aP" = ( /turf/closed/shuttle/ert{ icon_state = "wy18" @@ -103,53 +79,16 @@ "aT" = ( /turf/open/shuttle/dropship/can_surgery/light_grey_top_right, /area/bigredv2/outside/general_offices) -"aU" = ( -/obj/structure/surface/rack, -/obj/item/map/big_red_map, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) "aV" = ( /turf/closed/shuttle/ert{ icon_state = "wy19" }, /area/bigredv2/outside/general_offices) -"aW" = ( -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/general_offices) -"aX" = ( -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/general_offices) -"aY" = ( -/obj/structure/machinery/suit_storage_unit/carbon_unit, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) "aZ" = ( /obj/structure/window_frame/solaris, /obj/item/shard, /turf/open/floor/plating, /area/bigredv2/outside/general_offices) -"ba" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"bb" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"bc" = ( -/obj/structure/surface/rack, -/obj/item/device/mass_spectrometer/adv, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"bd" = ( -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"be" = ( -/obj/item/clothing/under/darkred, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) "bf" = ( /turf/open/floor/plating, /area/bigredv2/outside/general_offices) @@ -157,9 +96,6 @@ /obj/structure/machinery/door/airlock/almayer/generic, /turf/open/shuttle/dropship/can_surgery, /area/bigredv2/outside/general_offices) -"bh" = ( -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) "bi" = ( /obj/item/paper/crumpled/bloody, /obj/effect/decal/cleanable/blood{ @@ -167,98 +103,33 @@ }, /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) -"bj" = ( -/obj/structure/bed/chair/dropship/passenger, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) "bk" = ( /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) -"bl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"bm" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - name = "\improper Dormitories EVA" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"bo" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Dormitories Lavatory" - }, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) "bp" = ( /obj/structure/surface/table, /obj/structure/bedsheetbin, /turf/open/floor/plating, /area/bigredv2/outside/general_offices) -"bq" = ( -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) "br" = ( /turf/closed/shuttle/ert{ icon_state = "wy16" }, /area/bigredv2/outside/general_offices) -"bs" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) "bt" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/wygoon, /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) -"bu" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) -"bv" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood{ - dir = 1; - icon_state = "gib6" - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) "bw" = ( /turf/closed/shuttle/ert{ icon_state = "wy17" }, /area/bigredv2/outside/general_offices) -"bx" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/phoron{ - amount = 25 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"by" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/uranium{ - amount = 50 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"bz" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/caves_north) "bA" = ( /obj/structure/surface/table, /turf/open/floor, /area/bigredv2/outside/general_offices) -"bD" = ( -/turf/open/floor/wall_thermite, -/area/bigredv2/outside/general_offices) "bE" = ( /turf/closed/shuttle/ert{ icon_state = "wy14" @@ -276,23 +147,9 @@ icon_state = "wy15" }, /area/bigredv2/outside/general_offices) -"bH" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"bI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"bK" = ( -/obj/structure/machinery/washing_machine, -/obj/item/clothing/under/lightbrown, -/turf/open/floor/freezerfloor, -/area/bigredv2/outside/general_offices) -"bL" = ( -/obj/structure/machinery/washing_machine, -/obj/item/clothing/under/brown, -/turf/open/floor/freezerfloor, +"bJ" = ( +/obj/structure/bed/chair/dropship/passenger, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) "bM" = ( /turf/closed/shuttle/ert{ @@ -304,116 +161,22 @@ icon_state = "wy13" }, /area/bigredv2/outside/general_offices) -"bO" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"bP" = ( -/obj/structure/surface/table, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"bQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/uranium{ - amount = 50 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"bR" = ( -/obj/item/stack/sheet/plasteel, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"bS" = ( -/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) -"bT" = ( -/obj/structure/girder, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"bU" = ( -/obj/structure/girder, -/turf/open/floor/wall_thermite, -/area/bigredv2/outside/general_offices) -"bV" = ( -/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) -"bW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"bX" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"bY" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"bZ" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) "ca" = ( /turf/closed/shuttle/ert{ icon_state = "wy4" }, /area/bigredv2/outside/general_offices) -"cb" = ( -/obj/structure/surface/rack, -/obj/item/xeno_restraints, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) "cc" = ( /turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, /area/bigredv2/outside/general_offices) "cd" = ( /turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, /area/bigredv2/outside/general_offices) -"ce" = ( -/obj/structure/surface/rack, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) "cf" = ( /turf/closed/shuttle/ert{ icon_state = "wy5" }, /area/bigredv2/outside/general_offices) -"cg" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"ch" = ( -/obj/structure/closet/l3closet, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"ci" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond, -/obj/item/stack/sheet/plasteel{ - amount = 30; - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) "cj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ @@ -421,12 +184,6 @@ }, /turf/open/floor, /area/bigredv2/outside/general_offices) -"cl" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor, -/area/bigredv2/outside/general_offices) "cm" = ( /obj/effect/spawner/gibspawner/human, /obj/effect/decal/cleanable/blood, @@ -452,53 +209,24 @@ icon_state = "wy_rightengine" }, /area/bigredv2/outside/general_offices) -"cr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) "cs" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_3"; opacity = 0 }, /area/bigredv2/outside/general_offices) -"cu" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/remains, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/general_offices) "cv" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_3"; opacity = 0 }, /area/bigredv2/outside/general_offices) -"cw" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/gold, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"cx" = ( -/obj/structure/machinery/camera/autoname, -/obj/item/stack/sheet/plasteel, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) -"cy" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond, -/turf/open/floor/dark, -/area/bigredv2/outside/general_offices) "cA" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Dormitories Tool Storage" }, /turf/open/floor, /area/bigredv2/outside/general_offices) -"cB" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/wall_thermite, -/area/bigredv2/outside/general_offices) "cC" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_2"; @@ -553,18 +281,6 @@ opacity = 0 }, /area/bigredv2/outside/general_offices) -"cM" = ( -/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/platingdmg3, -/area/bigredv2/outside/general_offices) -"cN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/ne) "cO" = ( /obj/structure/window/framed/solaris, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -582,284 +298,648 @@ }, /turf/open/floor, /area/bigredv2/outside/general_offices) -"cU" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_5, -/area/bigredv2/caves_north) "cV" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating, /area/bigredv2/caves_north) -"cW" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/platingdmg3, +"di" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor, /area/bigredv2/outside/general_offices) -"cX" = ( -/obj/effect/decal/cleanable/blood{ - dir = 1; - icon_state = "gib6" +"dx" = ( +/turf/closed/wall/solaris, +/area/bigredv2/outside/bar) +"dQ" = ( +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/ne) +"dR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/platingdmg1, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) -"cY" = ( -/turf/open/floor/plating/platingdmg3/west, +"dX" = ( +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) -"cZ" = ( -/obj/effect/decal/cleanable/blood{ - dir = 1; - icon_state = "gib6" +"eF" = ( +/turf/template_noop, +/area/template_noop) +"eL" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 }, -/turf/open/floor/plating/panelscorched, +/turf/open/shuttle/dropship/can_surgery, /area/bigredv2/outside/general_offices) -"dc" = ( -/obj/item/stack/rods, +"fm" = ( +/obj/structure/dispenser/oxygen, /turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) -"dd" = ( -/obj/structure/machinery/light, +"fw" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/hydroponics) +"fB" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"fY" = ( +/obj/item/clothing/under/darkred, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) -"de" = ( +"ge" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood{ - dir = 1; - icon_state = "gib6" - }, +/obj/effect/landmark/corpsespawner/chef, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood, /turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) -"df" = ( -/obj/structure/machinery/light, -/turf/open/floor/platingdmg1, +"gp" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) -"di" = ( -/obj/structure/bed/chair{ +"gP" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/general_offices) +"hf" = ( +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor, +/turf/open/floor/plating/wood, /area/bigredv2/outside/general_offices) -"dj" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Dormitories Bedroom" - }, -/turf/open/floor/wood, +"hs" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"id" = ( +/obj/structure/surface/rack, +/obj/item/xeno_restraints, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) -"dk" = ( +"ig" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, /obj/effect/decal/cleanable/blood{ dir = 1; icon_state = "gib6" }, -/turf/open/floor/wall_thermite, -/area/bigredv2/outside/general_offices) -"dl" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/general_offices) -"dm" = ( -/turf/open/floor/plating/wood, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/general_offices) -"dn" = ( +"iq" = ( /obj/structure/surface/table, /turf/open/floor/plating/wood, /area/bigredv2/outside/general_offices) -"do" = ( -/turf/open/floor/plating/wood_broken5, -/area/bigredv2/outside/general_offices) -"dp" = ( -/obj/structure/surface/table, -/turf/open/floor/wood, -/area/bigredv2/outside/general_offices) -"dq" = ( -/turf/open/floor/plating/wood_broken6, +"iM" = ( +/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/platingdmg3, /area/bigredv2/outside/general_offices) -"dr" = ( -/turf/open/floor/plating/wood_broken3, +"jr" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) -"ds" = ( -/obj/effect/decal/cleanable/dirt, +"jQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/ne) +"kL" = ( /obj/effect/spawner/gibspawner/human, /turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) -"dt" = ( +"kV" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/hydroponics) +"lv" = ( /obj/effect/decal/cleanable/blood{ dir = 1; icon_state = "gib6" }, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/ne) -"du" = ( -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/ne) -"dx" = ( -/turf/closed/wall/solaris, -/area/bigredv2/outside/bar) -"dy" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/general_offices) +"mr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/plating/wood, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/ne) +"mt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) -"dz" = ( -/obj/structure/bed, +"mC" = ( /turf/open/floor/plating/wood, /area/bigredv2/outside/general_offices) -"dA" = ( +"mL" = ( /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/plating/wood_broken2, +/turf/open/floor/plating/wood_broken3, /area/bigredv2/outside/general_offices) -"dB" = ( -/obj/structure/bed, -/turf/open/floor/wood, +"nD" = ( +/obj/structure/girder, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"nN" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/general_offices) +"nR" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/gold, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) -"dC" = ( +"nW" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, -/turf/open/floor/plating/wood_broken3, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) -"dD" = ( -/turf/open/floor/plating/wood_broken4, +"og" = ( +/obj/item/stack/sheet/plasteel, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) -"dE" = ( -/obj/effect/decal/cleanable/blood{ +"oi" = ( +/obj/structure/surface/rack, +/turf/open/floor, +/area/bigredv2/outside/general_offices) +"oD" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"oW" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/general_offices) +"ph" = ( +/obj/structure/surface/rack, +/obj/item/device/mass_spectrometer/adv, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"pn" = ( +/obj/structure/surface/rack, +/obj/item/map/big_red_map, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"pt" = ( +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/general_offices) +"pM" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"qb" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"qo" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/remains, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"rg" = ( +/obj/structure/machinery/light, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"rk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/uranium{ + amount = 50 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"rv" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; - icon_state = "gib6" + name = "\improper Dormitories Bedroom" }, -/turf/open/floor/plating/platingdmg3/west, -/area/bigredv2/outside/ne) -"dS" = ( +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"rw" = ( +/obj/structure/surface/table, +/turf/open/floor/wood, +/area/bigredv2/outside/general_offices) +"rK" = ( +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/hydroponics) +"sm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/colonist, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"ta" = ( +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/hydroponics) +"tI" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/platingdmg1, /area/bigredv2/outside/ne) -"dT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/ne) -"dU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, +"tQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/platingdmg1, -/area/bigredv2/outside/ne) -"dV" = ( -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/ne) -"eb" = ( +/area/bigredv2/outside/general_offices) +"uj" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"uw" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"vi" = ( +/turf/open/floor/plating/wood_broken5, +/area/bigredv2/outside/general_offices) +"vU" = ( +/turf/open/floor/plating/wood_broken6, +/area/bigredv2/outside/general_offices) +"wM" = ( +/obj/structure/girder, /turf/open/floor/wall_thermite, -/area/bigredv2/outside/hydroponics) -"ec" = ( +/area/bigredv2/outside/general_offices) +"xs" = ( +/obj/effect/spawner/gibspawner/human, /turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/hydroponics) -"ed" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/hydroponics) -"ee" = ( +"xt" = ( +/obj/item/clothing/under/darkred{ + pixel_y = 7; + pixel_x = 10 + }, +/obj/structure/surface/rack, +/obj/item/clothing/under/darkred, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"xU" = ( /obj/effect/decal/cleanable/blood{ dir = 1; icon_state = "gib6" }, /turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/hydroponics) -"ef" = ( +"xW" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/general_offices) +"yy" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"zM" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + name = "\improper Dormitories EVA" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"AA" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"AX" = ( +/obj/structure/surface/rack, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"Bb" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars/mars_dirt_11, +/area/bigredv2/caves_north) +"Bv" = ( +/obj/structure/computerframe, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"BC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/tool, /turf/open/floor/platingdmg1, -/area/bigredv2/outside/hydroponics) -"eg" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/general_offices) -"em" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"BJ" = ( +/obj/structure/surface/table, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_y = -7; + pixel_x = 8 + }, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_y = 3; + pixel_x = -1 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"BP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, /turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/hydroponics) -"en" = ( -/obj/effect/spawner/gibspawner/human, +"CA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"CU" = ( +/obj/effect/decal/cleanable/blood{ + dir = 1; + icon_state = "gib6" + }, /turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/hydroponics) -"eA" = ( +/area/bigredv2/outside/ne) +"Dg" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/general_offices) +"Dh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, /turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/hydroponics) -"eB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"Dk" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"EO" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy20" + }, +/area/bigredv2/outside/general_offices) +"Fw" = ( +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"FF" = ( +/obj/structure/bed, +/turf/open/floor/plating/wood, +/area/bigredv2/outside/general_offices) +"Gn" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"Gz" = ( +/obj/structure/machinery/camera/autoname, +/obj/item/stack/sheet/plasteel, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"GM" = ( +/obj/structure/surface/table, +/obj/item/clothing/under/brown{ + pixel_y = 7; + pixel_x = 12 + }, +/obj/item/explosive/grenade/incendiary/molotov{ + pixel_x = 8 }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"Hj" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_6, +/area/bigredv2/caves_north) +"Hk" = ( +/obj/item/stack/rods, /turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/hydroponics) -"eC" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3, +"Hq" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"Hw" = ( +/obj/structure/bed/chair/dropship/passenger, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"HG" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/general_offices) +"HN" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Dormitories Lavatory" + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"HS" = ( +/obj/structure/surface/table, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"Id" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/uranium{ + amount = 50 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"Ie" = ( +/turf/open/floor/plating/wood_broken4, +/area/bigredv2/outside/general_offices) +"Jl" = ( +/turf/open/floor/platingdmg1, /area/bigredv2/outside/hydroponics) -"eF" = ( -/turf/template_noop, -/area/template_noop) -"eI" = ( +"Js" = ( +/turf/open/floor/plating/wood_broken3, +/area/bigredv2/outside/general_offices) +"Jv" = ( +/obj/structure/bed/bedroll, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"JI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"JW" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"Lw" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/diamond, +/obj/item/stack/sheet/plasteel{ + amount = 30; + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"Mc" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/hydroponics) -"eJ" = ( -/obj/item/stack/sheet/metal, +"Ml" = ( +/obj/effect/decal/cleanable/blood{ + dir = 1; + icon_state = "gib6" + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/general_offices) +"Od" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/ne) +"Oh" = ( +/obj/structure/closet/l3closet, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"OI" = ( +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/general_offices) +"Pb" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/general_offices) +"Pg" = ( +/obj/structure/machinery/suit_storage_unit/carbon_unit, /turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) -"eK" = ( +"Ph" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/diamond, +/turf/open/floor/dark, +/area/bigredv2/outside/general_offices) +"PE" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"PI" = ( +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"PN" = ( +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/general_offices) +"PO" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"Rk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/hydroponics) +"Ro" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, +/obj/effect/decal/cleanable/blood{ + dir = 1; + icon_state = "gib6" + }, /turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) -"eL" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 +"RI" = ( +/obj/structure/surface/rack, +/obj/item/clothing/under/lightbrown{ + pixel_x = 10; + pixel_y = -5 }, -/turf/open/shuttle/dropship/can_surgery, +/turf/open/floor/freezerfloor, /area/bigredv2/outside/general_offices) -"eM" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/platingdmg3/west, +"Tz" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/mineral/phoron{ + amount = 25 + }, +/turf/open/floor/dark, /area/bigredv2/outside/general_offices) -"eN" = ( +"TX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/general_offices) +"Ul" = ( +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/general_offices) +"UZ" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/ne) -"eO" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/hydroponics) -"oB" = ( -/obj/effect/landmark/objective_landmark/close, +"VB" = ( +/obj/effect/decal/cleanable/blood{ + dir = 1; + icon_state = "gib6" + }, +/turf/open/floor/plating/platingdmg3/west, +/area/bigredv2/outside/ne) +"VQ" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/dark, /area/bigredv2/outside/general_offices) -"xT" = ( +"WR" = ( +/obj/structure/surface/table, +/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/prop/helmetgarb/spent_buckshot{ + pixel_x = 9; + pixel_y = -10 + }, +/turf/open/floor/freezerfloor, +/area/bigredv2/outside/general_offices) +"Xl" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/wood_broken2, +/area/bigredv2/outside/general_offices) +"XK" = ( /obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/mars_cave/mars_dirt_6, +/turf/open/mars_cave/mars_dirt_4, /area/bigredv2/caves_north) -"EO" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy20" - }, +"Yg" = ( +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) -"IB" = ( +"Yt" = ( /obj/item/stack/rods, -/turf/open/floor/plating/panelscorched, +/turf/open/floor/plating/platingdmg3/west, /area/bigredv2/outside/general_offices) -"Kf" = ( -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/plating/panelscorched, +"YB" = ( +/obj/structure/bed, +/turf/open/floor/wood, /area/bigredv2/outside/general_offices) -"Zt" = ( -/obj/structure/bed/chair/dropship/passenger, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +"YL" = ( +/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) +"YQ" = ( +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/ne) +"YV" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/mars_cave/mars_dirt_5, +/area/bigredv2/caves_north) +"ZD" = ( +/obj/effect/decal/cleanable/blood{ + dir = 1; + icon_state = "gib6" + }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/general_offices) (1,1,1) = {" @@ -997,7 +1077,7 @@ eF aB aB aB -bo +HN aB aB aB @@ -1026,15 +1106,15 @@ eF eF eF aB -aL -bd -bd -bd -bK +xt +PI +AA +PI +WR aB -bV -cl -cl +oi +oi +oi aB aK aK @@ -1057,22 +1137,22 @@ eF eF eF aB -aM -bd -bd -bd -aM +RI +CA +dR +PI +BJ aB -bW -bl -aO +nW +PO +jr aB cF aK aK -dj -dm -dy +rv +mC +hf aB eF eF @@ -1088,22 +1168,22 @@ eF eF eF aB -aM -bd -bd -bd -bL +PI +sm +dR +CA +GM aB -bX -bl -aO +Dk +PO +Yg aB -bl +PO bf bf aB -dn -dz +iq +FF aB eF eF @@ -1119,19 +1199,19 @@ eF eF eF aB -aM -be -bd -bd +gp +fY +Jv +PI bf -bT -bY -bl -aO -bU -bl -aO -dd +nD +uw +BC +Yg +wM +TX +Yg +Pb aB aB aB @@ -1150,22 +1230,22 @@ eF eF eF aB -aN +oD bf bp -aO -aO -bU -bZ -aO -aO +Yg +Yg +wM +PE +Yg +Yg cA -aO -aO -aX -dj -do -dA +Yg +Yg +PN +rv +vi +Xl aB eF eF @@ -1181,22 +1261,22 @@ eF eF eF aB -aO -aW +Yg +OI bf -aX -aO -bD -aO -bl -bl +PN +Yg +pt +Yg +PO +PO aK -bl -aO -aX +ge +qb +PN aB -dp -dB +rw +YB aB eF eF @@ -1212,19 +1292,19 @@ eF eF eF aB -aO -aO -aX -Kf -aO -aO -aO -bl -aO -bD -aW -dc -aO +Yg +Yg +PN +HG +Yg +Yg +Yg +PO +Yg +pt +OI +dX +Yg aB aB aB @@ -1246,22 +1326,22 @@ aB aB aB aB -bD -dc -bD -dc -aO -cr -cB -bl -aW -bl -dj -dq -dC -bU -dS -eN +pt +dX +pt +dX +Yg +tQ +oW +PO +OI +PO +rv +vU +mL +wM +tI +UZ eF eF "} @@ -1285,16 +1365,16 @@ cn cs cC cG -aO -cY -bD -dr -dD -eJ -dS -eb -ef -ef +Yg +gP +pt +Js +Ie +JW +tI +rK +Jl +Jl "} (15,1,1) = {" eF @@ -1305,27 +1385,27 @@ eF aQ cI aG -ce -bh -bs -bs -bs -bu -cb +AX +Ul +Hq +Hq +Hq +pM +id co ca ca cH -cX -cZ -cZ -ds -eM -bD -dT -ec -ec -eA +ZD +Ml +Ml +JI +Yt +pt +jQ +ta +ta +Dh "} (16,1,1) = {" eF @@ -1343,20 +1423,20 @@ bF bF bF cc -bh -bh -bh +Ul +Ul +Ul eL -cY -dl -aO -aX -aX -aX -dU -ed -em -eB +gP +Gn +Yg +PN +PN +PN +mr +kV +Rk +BP "} (17,1,1) = {" eF @@ -1366,28 +1446,28 @@ eF eF aQ ax -aE +Bv cm -bj -bj -bj -Zt -bj +bJ +bJ +bJ +Hw +bJ aS bk bk bk cJ -aW -aO -aO -du -du -cN -dV -ec -eI -eC +OI +Yg +Yg +YQ +YQ +Od +dQ +ta +Mc +fw "} (18,1,1) = {" eF @@ -1405,20 +1485,20 @@ bk bk bk cd -bh -cu -bh +Ul +qo +Ul eL -cZ -de -dk -dt -dE -dt -eF -ee -en -ec +Ml +Ro +lv +CU +VB +CU +eF +xU +xs +ta "} (19,1,1) = {" eF @@ -1429,27 +1509,27 @@ eF aQ an aG -aU -bq -bv -bv -bv -bh -ce +pn +Fw +ig +ig +ig +Ul +AX cp cf cf cK -bl -bl -eg +PO +PO +nN eF eF eF eF -eO -ec -eC +Hk +ta +fw "} (20,1,1) = {" eF @@ -1457,7 +1537,7 @@ eF eF eF eF -av +Bb an aH aV @@ -1471,15 +1551,15 @@ cq cv cD cL -aW -aO -eK +OI +Yg +mt eF eF eF eF -ef -ec +Jl +ta eF "} (21,1,1) = {" @@ -1488,23 +1568,23 @@ eF eF eF eF -bz +XK an -IB -aW -bl -bl -aW -aO -bD -aO -aO -aO -bD -bl -bO -aW -aW +Dg +OI +PO +PO +OI +Yg +pt +Yg +Yg +Yg +pt +PO +fB +OI +OI eF eF eF @@ -1519,23 +1599,23 @@ eF eF eF eF -cU +YV ab aB -aX -bl -cW -aO -bO -dc -cg -aO -aO -eJ -bl -aW -aO -bU +PN +PO +xW +Yg +fB +dX +kL +Yg +Yg +JW +PO +OI +Yg +wM eF eF eF @@ -1550,22 +1630,22 @@ eF eF eF eF -xT +Hj ab aB -aY -aO -aO -bH -bP -bU -ch -ch -ch -bU -cM -cM -df +Pg +Yg +Yg +fm +HS +wM +Oh +Oh +Oh +wM +iM +iM +rg aB eF eF @@ -1581,11 +1661,11 @@ eF eF eF eF -xT +Hj ab aI aZ -bm +zM aZ aZ aI @@ -1615,15 +1695,15 @@ eF ab ab aI -ba -bb -bx -bI -bQ -bI -ci -bb -cw +yy +uj +Tz +VQ +rk +VQ +Lw +uj +nR aI cO cO @@ -1646,15 +1726,15 @@ eF eF eF aI -bb -bb -bb -bI -bI -bI -bb -bI -bb +uj +uj +uj +VQ +VQ +VQ +uj +VQ +uj aI eF eF @@ -1677,15 +1757,15 @@ eF eF eF aI -bb -bb -bb -bb -bR -bb -oB -bb -cx +uj +uj +uj +uj +og +uj +hs +uj +Gz aI eF eF @@ -1708,15 +1788,15 @@ eF eF eF aI -bc -bb -by -bb -bS -bb -cy -bb -cy +ph +uj +Id +uj +YL +uj +Ph +uj +Ph aI eF eF diff --git a/maps/map_files/BigRed/standalone/crashlanding-offices.dmm b/maps/map_files/BigRed/standalone/crashlanding-offices.dmm index 783caff03343..6fd3ae9aad83 100644 --- a/maps/map_files/BigRed/standalone/crashlanding-offices.dmm +++ b/maps/map_files/BigRed/standalone/crashlanding-offices.dmm @@ -1,57 +1,10 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ab" = ( -/turf/open/floor/asteroidwarning/northeast, -/area/bigredv2/outside/e) -"ac" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/c) -"ad" = ( -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/c) -"ae" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"ag" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/e) -"ah" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) "ai" = ( /turf/open/mars, /area/bigredv2/outside/e) -"aj" = ( -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/e) -"ak" = ( -/turf/open/mars/mars_dirt_11, -/area/bigredv2/outside/e) -"al" = ( -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/e) -"am" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/e) -"an" = ( -/turf/open/mars/mars_dirt_9, -/area/bigredv2/outside/c) -"ao" = ( -/turf/open/floor/asteroidwarning/northwest, -/area/bigredv2/outside/c) "ap" = ( /turf/closed/wall/solaris, /area/bigredv2/outside/office_complex) -"aq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Office Complex" - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/office_complex) -"ar" = ( -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/office_complex) "as" = ( /obj/structure/window/framed/solaris, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -60,52 +13,11 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/office_complex) -"at" = ( -/turf/open/mars/mars_dirt_10, -/area/bigredv2/outside/e) -"au" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/c) -"av" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/office_complex) -"aw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/office_complex) "ax" = ( /obj/structure/window_frame/solaris, /obj/item/shard, /turf/open/floor/plating, /area/bigredv2/outside/office_complex) -"ay" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/office_complex) -"az" = ( -/obj/structure/bed/chair/comfy/black{ - 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/plating/platingdmg3, -/area/bigredv2/outside/office_complex) -"aA" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/e) -"aB" = ( -/obj/effect/landmark/lv624/xeno_tunnel, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) "aC" = ( /turf/closed/shuttle/ert{ icon_state = "wy20" @@ -121,34 +33,10 @@ icon_state = "wy25" }, /area/bigredv2/outside/office_complex) -"aF" = ( -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/office_complex) -"aG" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"aH" = ( -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"aI" = ( -/obj/structure/machinery/robotic_fabricator, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"aJ" = ( -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"aK" = ( -/obj/structure/machinery/mech_bay_recharge_port, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) "aL" = ( /obj/effect/decal/mecha_wreckage/ripley/firefighter, /turf/open/floor/mech_bay_recharge_floor, /area/bigredv2/outside/office_complex) -"aM" = ( -/obj/structure/machinery/mecha_part_fabricator, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) "aN" = ( /turf/closed/shuttle/ert{ icon_state = "wy21" @@ -159,34 +47,16 @@ icon_state = "wy22" }, /area/bigredv2/outside/office_complex) -"aP" = ( -/obj/structure/computerframe, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) "aQ" = ( /turf/closed/shuttle/ert{ icon_state = "wy23" }, /area/bigredv2/outside/office_complex) -"aR" = ( -/turf/open/floor/warnwhite, -/area/bigredv2/outside/office_complex) -"aS" = ( -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) "aT" = ( /turf/closed/shuttle/ert{ icon_state = "wy18" }, /area/bigredv2/outside/office_complex) -"aU" = ( -/obj/structure/surface/rack, -/obj/item/xeno_restraints, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"aV" = ( -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) "aW" = ( /obj/structure/bed/chair/dropship/pilot{ dir = 1 @@ -207,31 +77,15 @@ }, /turf/open/floor/plating, /area/bigredv2/outside/office_complex) -"aZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) "ba" = ( /obj/structure/window_frame/solaris, /obj/item/shard, /obj/item/stack/rods, /turf/open/floor/plating, /area/bigredv2/outside/office_complex) -"bb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/office_complex) "bc" = ( /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"bd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) "be" = ( /turf/open/floor, /area/bigredv2/outside/office_complex) @@ -239,22 +93,6 @@ /obj/structure/bed/chair/office/light, /turf/open/floor, /area/bigredv2/outside/office_complex) -"bg" = ( -/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) -"bh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/trash/hotdog, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/folder/black, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) "bj" = ( /turf/closed/shuttle/ert{ icon_state = "wy16" @@ -272,23 +110,11 @@ "bo" = ( /turf/open/shuttle/dropship/can_surgery/light_grey_top_right, /area/bigredv2/outside/office_complex) -"bp" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) "bq" = ( /turf/closed/shuttle/ert{ icon_state = "wy17" }, /area/bigredv2/outside/office_complex) -"br" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/office_complex) "bs" = ( /obj/structure/machinery/light{ dir = 4 @@ -297,30 +123,6 @@ /obj/item/paper, /turf/open/floor, /area/bigredv2/outside/office_complex) -"bt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/office_complex) -"bu" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/office_complex) -"bw" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bx" = ( -/obj/item/shard, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"by" = ( -/obj/structure/girder, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) "bz" = ( /turf/closed/shuttle/ert{ icon_state = "wy14" @@ -331,24 +133,6 @@ icon_state = "wy15" }, /area/bigredv2/outside/office_complex) -"bB" = ( -/obj/item/clothing/head/welding, -/turf/open/floor/warnwhite, -/area/bigredv2/outside/office_complex) -"bC" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bD" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/office_complex) "bF" = ( /turf/closed/shuttle/ert{ icon_state = "wy12" @@ -366,10 +150,6 @@ }, /turf/open/floor, /area/bigredv2/outside/office_complex) -"bI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wall_thermite, -/area/bigredv2/outside/office_complex) "bJ" = ( /obj/structure/machinery/door/airlock/almayer/generic, /turf/open/floor/plating, @@ -379,285 +159,63 @@ /obj/item/paper_bin, /turf/open/floor, /area/bigredv2/outside/office_complex) -"bL" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bM" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) "bN" = ( /obj/structure/window_frame/solaris, /obj/item/stack/rods, /turf/open/floor/plating, /area/bigredv2/outside/office_complex) -"bO" = ( -/obj/item/device/analyzer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) "bQ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor, /area/bigredv2/outside/office_complex) -"bR" = ( -/obj/item/shard, -/turf/open/floor/asteroidwarning/west, -/area/bigredv2/outside/c) -"bS" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/office_complex) -"bT" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) "bU" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor, /area/bigredv2/outside/office_complex) -"bV" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"bW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/tech_supply, -/turf/open/floor/white, +"cx" = ( +/obj/effect/spawner/gibspawner/human, +/obj/item/limb/arm/l_arm, +/obj/item/limb/leg/l_leg, +/obj/item/limb/hand/r_hand, +/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, /area/bigredv2/outside/office_complex) -"bX" = ( -/obj/structure/girder, -/turf/open/floor/wall_thermite, +"cD" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy_leftengine" + }, /area/bigredv2/outside/office_complex) -"bY" = ( -/turf/open/floor/redcorner/east, +"cE" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy8" + }, /area/bigredv2/outside/office_complex) -"bZ" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/drinks/flask, -/obj/structure/machinery/camera/autoname{ - dir = 4 +"cF" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy9" }, -/turf/open/floor/dark, /area/bigredv2/outside/office_complex) -"ca" = ( -/obj/structure/surface/table, -/turf/open/floor/dark, +"cG" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy_rightengine" + }, /area/bigredv2/outside/office_complex) -"cb" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +"cL" = ( +/turf/closed/shuttle/ert{ + icon_state = "leftengine_3"; + opacity = 0 }, -/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) -"cc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/turf/open/floor/white, +"cM" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy4" + }, /area/bigredv2/outside/office_complex) -"cd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/mass_spectrometer/adv, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"ce" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Office Complex Storage" - }, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"cf" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/office_complex) -"cg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"ch" = ( -/turf/open/floor/redcorner, -/area/bigredv2/outside/office_complex) -"ci" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"cj" = ( -/obj/item/trash/raisins, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"ck" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"cl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"cm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"cn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/office_complex) -"co" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Office Complex Janitor Room" - }, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"cp" = ( -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"cq" = ( -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"cr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"cs" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"cu" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"cv" = ( -/turf/open/shuttle/dropship/can_surgery/light_grey_top, -/area/bigredv2/outside/office_complex) -"cw" = ( -/obj/item/weapon/gun/rifle/nsg23/no_lock/stripped{ - desc = "A rare sight, this rifle is seen most commonly in the hands of Weyland-Yutani PMCs. Compared to the M41A MK2, it has noticeably improved handling and vastly improved performance at long and medium range, but compares similarly up close. This one seems to have been heavily damaged from impact, you can still see some debris that resembles a scope and underbarrel attachment point on it."; - name = "smashed NSG 23 assault rifle" - }, -/turf/open/shuttle/dropship/can_surgery/dark_grey_bottom, -/area/bigredv2/outside/office_complex) -"cx" = ( -/obj/effect/spawner/gibspawner/human, -/obj/item/limb/arm/l_arm, -/obj/item/limb/leg/l_leg, -/obj/item/limb/hand/r_hand, -/turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, -/area/bigredv2/outside/office_complex) -"cy" = ( -/obj/structure/janitorialcart, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"cz" = ( -/obj/item/frame/table, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"cA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"cB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/taperecorder, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"cC" = ( -/obj/effect/spawner/random/tech_supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"cD" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy_leftengine" - }, -/area/bigredv2/outside/office_complex) -"cE" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy8" - }, -/area/bigredv2/outside/office_complex) -"cF" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy9" - }, -/area/bigredv2/outside/office_complex) -"cG" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy_rightengine" - }, -/area/bigredv2/outside/office_complex) -"cH" = ( -/obj/structure/surface/table, -/obj/item/trash/semki, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"cI" = ( -/obj/structure/surface/table, -/obj/item/clothing/mask/cigarette, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/device/healthanalyzer, -/turf/open/floor/dark, -/area/bigredv2/outside/office_complex) -"cJ" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"cK" = ( -/obj/item/frame/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/office_complex) -"cL" = ( -/turf/closed/shuttle/ert{ - icon_state = "leftengine_3"; - opacity = 0 - }, -/area/bigredv2/outside/office_complex) -"cM" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy4" - }, -/area/bigredv2/outside/office_complex) -"cN" = ( -/turf/closed/shuttle/ert{ - icon_state = "wy5" - }, +"cN" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy5" + }, /area/bigredv2/outside/office_complex) "cO" = ( /turf/closed/shuttle/ert{ @@ -665,24 +223,10 @@ opacity = 0 }, /area/bigredv2/outside/office_complex) -"cP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"cQ" = ( -/obj/item/stack/rods, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) "cR" = ( /obj/structure/window_frame/solaris, /turf/open/floor/plating, /area/bigredv2/outside/office_complex) -"cS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) "cT" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_2"; @@ -695,37 +239,10 @@ opacity = 0 }, /area/bigredv2/outside/office_complex) -"cV" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/east, -/area/bigredv2/outside/office_complex) -"cW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/paper, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"cX" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"cY" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) -"cZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/c) "da" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/solaris, /area/bigredv2/outside/office_complex) -"db" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/office_complex) "dc" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1"; @@ -738,19 +255,6 @@ opacity = 0 }, /area/bigredv2/outside/office_complex) -"de" = ( -/obj/structure/noticeboard{ - dir = 1; - pixel_y = -27 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"df" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/office_complex) "dg" = ( /turf/closed/shuttle/ert{ icon_state = "wy1" @@ -766,19 +270,12 @@ icon_state = "wy3" }, /area/bigredv2/outside/office_complex) -"dj" = ( -/turf/open/floor/wall_thermite, -/area/bigredv2/outside/office_complex) "dk" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper Office Complex Janitor Room" }, /turf/open/floor, /area/bigredv2/outside/office_complex) -"dl" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/office_complex) "dm" = ( /turf/closed/shuttle/ert{ icon_state = "wy1" @@ -795,66 +292,18 @@ icon_state = "wy3" }, /area/bigredv2/outside/se) -"dp" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/se) -"dq" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/se) -"dr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/redcorner/west, -/area/bigredv2/outside/office_complex) "ds" = ( /obj/effect/decal/cleanable/dirt, /turf/open/mars, /area/bigredv2/outside/se) -"dt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/mars/mars_dirt_12, -/area/bigredv2/outside/se) -"du" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars/mars_dirt_8, -/area/bigredv2/outside/se) -"dv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/mars/mars_dirt_3, -/area/bigredv2/outside/se) -"dw" = ( -/turf/open/floor/asteroidwarning/southwest, -/area/bigredv2/outside/se) -"dx" = ( -/obj/item/tool/warning_cone, -/turf/open/floor/asteroidwarning/southeast, -/area/bigredv2/outside/se) "dz" = ( /obj/effect/spawner/gibspawner/human, /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"dA" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) "dB" = ( /obj/effect/decal/cleanable/blood, /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"dC" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/office_complex) -"dD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) "dE" = ( /obj/effect/decal/cleanable/blood{ dir = 1; @@ -869,252 +318,198 @@ }, /turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, /area/bigredv2/outside/office_complex) -"dG" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/shuttle/dropship/can_surgery/light_grey_top, -/area/bigredv2/outside/office_complex) "dH" = ( /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/wygoon, /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, /area/bigredv2/outside/office_complex) -"dI" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/nsg23, -/obj/item/ammo_magazine/rifle/nsg23/extended, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) "dJ" = ( /obj/effect/decal/cleanable/blood{ icon_state = "gib6" }, /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"dK" = ( -/obj/effect/spawner/gibspawner/human, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"dL" = ( -/obj/structure/surface/rack, -/obj/item/device/binoculars, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"dM" = ( -/obj/structure/surface/rack, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +"eY" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/c) +"fp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/mass_spectrometer/adv, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) -"dN" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/ammo_magazine/pistol/rubber, -/obj/item/ammo_magazine/pistol/rubber, -/obj/item/ammo_magazine/pistol/rubber, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +"gu" = ( +/obj/structure/surface/table, +/obj/item/trash/semki, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) -"dO" = ( +"gV" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"dP" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tech_supply, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/dark, /area/bigredv2/outside/office_complex) -"dQ" = ( +"hl" = ( /obj/structure/bed/chair/dropship/passenger{ - dir = 8 + dir = 4 }, -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"dR" = ( -/obj/structure/surface/rack, -/obj/item/map/big_red_map, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"dS" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"dT" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, /turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"dU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/turf/open/floor/platingdmg1, +"hv" = ( +/turf/open/floor/warnwhite, /area/bigredv2/outside/office_complex) -"dV" = ( +"hA" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/turf/open/floor/platingdmg1, +/obj/item/folder/black, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) -"dW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/se) -"dX" = ( +"hU" = ( +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -27 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/e) -"dY" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/wall_thermite, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) -"dZ" = ( -/obj/structure/girder, -/turf/open/floor/plating/platingdmg3, +"ie" = ( +/turf/open/floor/redcorner, /area/bigredv2/outside/office_complex) -"ea" = ( +"ip" = ( /obj/structure/machinery/light{ dir = 1 }, /turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) -"eb" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, +"jl" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/se) +"jo" = ( +/obj/item/tool/warning_cone, +/turf/open/floor/asteroidwarning/southeast, +/area/bigredv2/outside/se) +"jr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"ec" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/se) +"jx" = ( +/obj/effect/decal/cleanable/blood{ + dir = 1; + icon_state = "gib6" }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/office_complex) -"ed" = ( -/obj/item/frame/table, -/turf/open/floor/dark, +/obj/item/limb/leg/l_leg, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"ee" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/platingdmg1, +"jz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/office_complex) -"ef" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +"jE" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/platingdmg1, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/office_complex) -"eg" = ( -/obj/item/stack/rods, -/turf/open/floor/asteroidwarning/west, +"ka" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/e) +"kP" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/c) -"eh" = ( -/obj/item/device/multitool, +"lH" = ( +/obj/structure/surface/table, /turf/open/floor/dark, /area/bigredv2/outside/office_complex) -"ei" = ( -/obj/structure/janitorialcart, +"lN" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/bigredv2/outside/office_complex) -"ej" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"lX" = ( +/obj/item/device/analyzer, /obj/effect/decal/cleanable/dirt, -/obj/item/trash/syndi_cakes, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/dark, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) -"ek" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/platingdmg1, +"mu" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) -"el" = ( -/obj/item/clothing/shoes/galoshes, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, +"mx" = ( +/turf/open/floor/redcorner/east, /area/bigredv2/outside/office_complex) -"em" = ( +"mP" = ( +/turf/open/floor/asteroidwarning/southwest, +/area/bigredv2/outside/se) +"nn" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/tool/lighter/random, +/obj/effect/landmark/crap_item, /turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) -"fv" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"fG" = ( +"ny" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/e) +"nC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars/mars_dirt_8, +/area/bigredv2/outside/se) +"oc" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/obj/item/device/radio/headset/distress/pmc/hvh, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/bigredv2/outside/office_complex) -"hN" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc_medic, /turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"id" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +"of" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"oE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) -"jx" = ( -/obj/effect/decal/cleanable/blood{ - dir = 1; - icon_state = "gib6" - }, -/obj/item/limb/leg/l_leg, -/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, +"pt" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, /area/bigredv2/outside/office_complex) -"nE" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/crap_item, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +"pu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, /area/bigredv2/outside/office_complex) -"oF" = ( +"pW" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, /obj/item/clothing/under/marine/veteran/pmc, /turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"qX" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/pmc, -/obj/item/weapon/gun/rifle/nsg23/no_lock, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +"qf" = ( +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/e) +"qk" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/office_complex) -"rF" = ( +"ql" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/obj/effect/decal/cleanable/blood, -/obj/effect/spawner/gibspawner/human, -/obj/item/clothing/head/helmet/marine/veteran/pmc, -/obj/item/clothing/under/marine/veteran/pmc, -/obj/item/clothing/head/helmet/marine/veteran/pmc, +/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc, /turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"rK" = ( +"qw" = ( /obj/structure/bed/chair/dropship/passenger{ - dir = 8 + dir = 4 }, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/wygoon, +/obj/item/device/radio/headset/distress/pmc/hvh, /turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) +"qY" = ( +/obj/structure/girder, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/office_complex) "si" = ( /obj/item/clothing/head/helmet/marine/veteran/pmc, /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, @@ -1123,6 +518,41 @@ /obj/item/storage/firstaid, /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) +"sX" = ( +/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) +"tz" = ( +/turf/open/floor/asteroidwarning/northwest, +/area/bigredv2/outside/c) +"tF" = ( +/obj/item/frame/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"tG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/office_complex) +"ua" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner, +/area/bigredv2/outside/office_complex) +"ue" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/nsg23, +/obj/item/ammo_magazine/rifle/nsg23/extended, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"ut" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached15, +/area/bigredv2/outside/e) +"uw" = ( +/obj/structure/girder, +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/office_complex) "uC" = ( /obj/effect/spawner/gibspawner/human, /obj/item/weapon/gun/rifle/m41a/corporate/no_lock{ @@ -1135,29 +565,154 @@ /obj/item/weapon/gun/rifle/nsg23/no_lock, /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) +"va" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"ve" = ( +/turf/open/shuttle/dropship/can_surgery/light_grey_top, +/area/bigredv2/outside/office_complex) +"vl" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/e) "vw" = ( /obj/item/limb/arm/l_arm, /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, /area/bigredv2/outside/office_complex) -"yS" = ( +"vH" = ( +/obj/structure/janitorialcart, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"wm" = ( /obj/structure/bed/chair/dropship/passenger{ - dir = 4 + dir = 8 }, +/obj/item/limb/hand/l_hand, /turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"AB" = ( +"wn" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"ws" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/obj/item/limb/leg/r_leg, -/obj/item/weapon/gun/pistol/m4a3/training{ - name = "dented M4A3 service pistol" - }, -/obj/effect/landmark/corpsespawner/wygoon, +/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc, /turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"Bu" = ( +"wO" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"wZ" = ( +/obj/item/device/multitool, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"xp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"xr" = ( +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/c) +"xx" = ( +/obj/structure/surface/rack, +/obj/item/map/big_red_map, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"xU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"yI" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/office_complex) +"zf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"zh" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/pmc, +/obj/item/weapon/gun/rifle/nsg23/no_lock, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"zl" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"zq" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Office Complex Janitor Room" + }, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"zv" = ( +/obj/structure/janitorialcart, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"zH" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"zX" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"Ak" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"Al" = ( +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Au" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"Av" = ( +/obj/effect/landmark/lv624/xeno_tunnel, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"AF" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"AK" = ( +/obj/item/shard, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/e) +"Be" = ( +/turf/open/mars/mars_dirt_10, +/area/bigredv2/outside/e) +"Bj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"Bu" = ( /obj/effect/decal/cleanable/blood, /obj/effect/spawner/gibspawner/human, /obj/item/limb/arm/l_arm, @@ -1165,13 +720,113 @@ /obj/item/limb/hand/r_hand, /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"EE" = ( +"Bz" = ( +/obj/item/clothing/head/welding, +/turf/open/floor/warnwhite, +/area/bigredv2/outside/office_complex) +"BX" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached3, +/area/bigredv2/outside/e) +"Ct" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/mars/mars_dirt_3, +/area/bigredv2/outside/se) +"Cy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"Cz" = ( +/obj/item/clothing/shoes/galoshes, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"CB" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/obj/item/limb/hand/l_hand, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, /turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) +"CD" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"Db" = ( +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"Dn" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/drinks/flask, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"DN" = ( +/obj/structure/machinery/mech_bay_recharge_port, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"DP" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"Eo" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/item/device/radio/headset/distress/pmc/hvh, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Eq" = ( +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"Fc" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Fi" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Fp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"FH" = ( +/obj/item/trash/raisins, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"FV" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/c) +"FZ" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"Gr" = ( +/turf/open/mars/mars_dirt_11, +/area/bigredv2/outside/e) +"Gx" = ( +/obj/item/weapon/gun/rifle/nsg23/no_lock/stripped{ + desc = "A rare sight, this rifle is seen most commonly in the hands of Weyland-Yutani PMCs. Compared to the M41A MK2, it has noticeably improved handling and vastly improved performance at long and medium range, but compares similarly up close. This one seems to have been heavily damaged from impact, you can still see some debris that resembles a scope and underbarrel attachment point on it."; + name = "smashed NSG 23 assault rifle" + }, +/turf/open/shuttle/dropship/can_surgery/dark_grey_bottom, +/area/bigredv2/outside/office_complex) "GG" = ( /obj/item/weapon/gun/rifle/m41a/corporate/no_lock{ desc = "A Weyland-Yutani creation, this M41A MK2 comes equipped in corporate white. Uses 10x24mm caseless ammunition. The IFF electronics appear to be non-functional."; @@ -1179,77 +834,443 @@ }, /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"Ha" = ( +"GI" = ( +/obj/structure/machinery/mecha_part_fabricator, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"GK" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/turf/open/shuttle/dropship/can_surgery/light_grey_top, +/area/bigredv2/outside/office_complex) +"Hq" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/c) +"Hr" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/asteroidfloor/north, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"HE" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/office_complex) +"HG" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"HP" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/e) +"Ic" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached14, +/area/bigredv2/outside/c) +"Ik" = ( +/turf/open/floor/asteroidwarning/east, +/area/bigredv2/outside/e) +"Iq" = ( +/obj/item/shard, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"Is" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/se) -"Lk" = ( -/obj/structure/bed/chair/dropship/passenger{ +"Iz" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached1, +/area/bigredv2/outside/e) +"IZ" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"JH" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"Ko" = ( +/obj/structure/computerframe, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Kp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/office_complex) +"Kq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"KK" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/crap_item, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Lq" = ( +/obj/structure/machinery/light{ dir = 4 }, -/obj/item/device/radio/headset/distress/pmc/hvh, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"Lx" = ( +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"LN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/office_complex) -"NK" = ( +"LQ" = ( /obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/rubber, -/obj/item/ammo_magazine/rifle/rubber, -/obj/item/ammo_magazine/rifle/rubber, /turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) -"PR" = ( +"Mb" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/obj/item/limb/leg/r_leg, +/obj/item/weapon/gun/pistol/m4a3/training{ + name = "dented M4A3 service pistol" + }, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Ml" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"MJ" = ( +/obj/structure/bed/chair/comfy/black{ + 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/plating/platingdmg3, +/area/bigredv2/outside/office_complex) +"Na" = ( /turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/se) -"Qc" = ( +"Nc" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/ammo_magazine/pistol/rubber, +/obj/item/ammo_magazine/pistol/rubber, +/obj/item/ammo_magazine/pistol/rubber, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"NQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Office Complex Storage" + }, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"NZ" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/spawner/gibspawner/human, +/obj/item/clothing/head/helmet/marine/veteran/pmc, +/obj/item/clothing/under/marine/veteran/pmc, +/obj/item/clothing/head/helmet/marine/veteran/pmc, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Oi" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"OH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/paper, +/turf/open/floor/whiteyellowfull/east, +/area/bigredv2/outside/office_complex) +"ON" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"OU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"OX" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Pp" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/west, +/area/bigredv2/outside/office_complex) +"Pv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/lighter/random, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"PH" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, /obj/effect/landmark/survivor_spawner/bigred_crashed_cl, /turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) +"Qh" = ( +/obj/item/stack/rods, +/turf/open/floor/asteroidwarning/west, +/area/bigredv2/outside/c) +"Qr" = ( +/obj/structure/surface/rack, +/obj/item/device/binoculars, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"QD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"Rd" = ( +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/office_complex) +"Sf" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tech_supply, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"Sm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"Sy" = ( +/obj/structure/surface/rack, +/obj/item/xeno_restraints, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"SD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/syndi_cakes, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"SK" = ( +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/c) +"Tb" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/office_complex) +"Tk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/se) +"Ts" = ( +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"TC" = ( +/obj/structure/surface/table, +/obj/item/clothing/mask/cigarette, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/device/healthanalyzer, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"TH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/taperecorder, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"TU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"UB" = ( +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"UR" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/rubber, +/obj/item/ammo_magazine/rifle/rubber, +/obj/item/ammo_magazine/rifle/rubber, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) "Vg" = ( /obj/effect/landmark/objective_landmark/medium, /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, /area/bigredv2/outside/office_complex) -"XH" = ( +"Vi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"Vk" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/office_complex) +"Vy" = ( +/turf/open/mars/mars_dirt_9, +/area/bigredv2/outside/c) +"VG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/office_complex) +"Wb" = ( +/obj/effect/spawner/gibspawner/human, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"Wd" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) +"Wn" = ( +/turf/open/floor/asteroidwarning/northeast, +/area/bigredv2/outside/e) +"Wt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/mars/mars_dirt_12, +/area/bigredv2/outside/se) +"Wv" = ( +/obj/structure/machinery/robotic_fabricator, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"WA" = ( +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/office_complex) +"WB" = ( +/obj/structure/girder, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"WG" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"WU" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"WV" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, /obj/effect/landmark/survivor_spawner/bigred_crashed_pmc_engineer, /turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/bigredv2/outside/office_complex) +"WZ" = ( +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"Xg" = ( +/obj/effect/spawner/random/tech_supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"Xm" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Office Complex" + }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/office_complex) +"XS" = ( +/turf/open/asphalt/cement_sunbleached/cement_sunbleached12, +/area/bigredv2/outside/c) +"Yd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/redcorner/east, +/area/bigredv2/outside/office_complex) +"Yj" = ( +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"Ym" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/office_complex) +"YI" = ( +/obj/item/frame/table, +/turf/open/floor/dark, +/area/bigredv2/outside/office_complex) +"YP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/hotdog, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"Zl" = ( +/obj/item/frame/table, +/turf/open/floor/white, +/area/bigredv2/outside/office_complex) +"ZG" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/office_complex) +"ZR" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner/bigred_crashed_pmc_medic, +/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/area/bigredv2/outside/office_complex) (1,1,1) = {" -ac -ad -ao -aH -aH -aH -aH -bR -aH -aH -aH -aH -aH -aH -aH -bR -aH -eg -aH -cX -cX -cX -cX -cX -cX +Hq +xr +tz +Lx +Lx +Lx +Lx +Iq +Lx +Lx +Lx +Lx +Lx +Lx +Lx +Iq +Lx +Qh +Lx +SK +SK +SK +SK +SK +SK "} (2,1,1) = {" -ac -ad -ah +Hq +xr +FV ap ap ap @@ -1268,167 +1289,167 @@ ax aY ap ap -cX -cX -cX +SK +SK +SK ap "} (3,1,1) = {" -ac -ad -ah -ap -aI -aR -aJ -bg -bg -bC -ap -bL -bL -bV -ap -bZ -ed -cq -ca -cH -ap -cX -cX -cX +Hq +xr +FV +ap +Wv +hv +Ts +sX +sX +Sf +ap +mu +mu +WG +ap +Dn +YI +Yj +lH +gu +ap +SK +SK +SK ap "} (4,1,1) = {" -ac -ad -au +Hq +xr +kP as -aJ -aR -aZ -bh -aJ -cc -cd -bd -cz -cC -ap -aS -cj -ck -ej -cI +Ts +hv +xp +YP +Ts +Bj +fp +Cy +Zl +Xg +ap +UB +FH +OU +SD +TC as -cX -cX -cX +SK +SK +SK ap "} (5,1,1) = {" -ac -ad -ah +Hq +xr +FV as -aK -bB -aZ -bW -aS -bd -ck -bM -cB -cJ -ap -ea -ee -cs -ek -cm +DN +Bz +xp +Ml +UB +Cy +OU +pt +TH +FZ +ap +ip +ZG +IZ +Vi +zf cR -cY -cX -cX +zX +SK +SK ap "} (6,1,1) = {" -ac -ad -ah +Hq +xr +FV as aL -aR -bd -bi -bd -bD -ap -dU -aZ -aS -cQ -eb -cl -eh -aS -ed +hv +Cy +hA +Cy +WU +ap +QD +xp +UB +WZ +CD +gV +wZ +UB +YI as -cX -cX -cX +SK +SK +SK ap "} (7,1,1) = {" -ac -ad -ah -ap -aJ -aR -bO -aS -bw -bE -by -bd -aS -cK -aS -ec -ef -aS -cr -cr -ap -cZ -cX -aB +Hq +xr +FV +ap +Ts +hv +lX +UB +HG +Kp +WB +Cy +UB +tF +UB +DP +Ak +UB +xU +xU +ap +lN +SK +Av ap "} (8,1,1) = {" -ac -ad -ah +Hq +xr +FV ap -aM -aS -aF -aS -bd -bd +GI +UB +WA +UB +Cy +Cy ap -by -by +WB +WB ap -aS -ce +UB +NQ ap ap -by -by +WB +WB ap da ap @@ -1436,38 +1457,38 @@ ap ap "} (9,1,1) = {" -ac -ad -ah -ap -ap -ap -ci -dU -dV -dD -bI -ay -bd -bX -ay -cf -cn -ek -ek -cn -cS -db -df -dl -dr +Hq +xr +FV +ap +ap +ap +AF +QD +LN +oE +tG +jz +Cy +uw +jz +ON +TU +Vi +Vi +TU +Sm +VG +HE +Vk +Pp "} (10,1,1) = {" -ac -an -ah -cX -cX +Hq +Vy +FV +SK +SK ap aC bj @@ -1485,39 +1506,39 @@ cD cL cT dc -ar -bu -ar +Eq +Tb +Eq "} (11,1,1) = {" -aH -aH -cX -cX -cX -by +Ic +tz +SK +SK +SK +WB aN -XH -AB -yS -aV -nE -dN -dP -aV -id -yS -yS +WV +Mb +hl +Al +KK +Nc +OX +Al +ws +hl +hl cE cM cM cM dg -bI -bI +tG +tG "} (12,1,1) = {" -cX +XS ap ap ap @@ -1535,78 +1556,78 @@ bc bc Bu dF -oF -cu -id -yS +pW +zH +ws +hl cE dm -dW +Is "} (13,1,1) = {" -cX +XS ap -av -ar +qk +Eq aN -aU -nE +Sy +KK bm -dA -fv -bp -bp -bp -bp -Qc -bp -fv -dG +wO +ql +oc +oc +oc +oc +PH +oc +ql +GK si GG bc dz bc dn -dt +Wt "} (14,1,1) = {" -ae -aq -aw +va +Xm +yI aC aO -aV -aV +Al +Al Vg -yS -Lk -id -yS -cu -yS -yS -yS -yS +hl +qw +ws +hl +zH +hl +hl +hl +hl dH -nE -nE -nE -dT +KK +KK +KK +Wd cF do ds "} (15,1,1) = {" -cX -ar -bt +eY +Eq +zl aD -aP +Ko aW uL bn -rF +NZ jx dE dE @@ -1615,71 +1636,71 @@ bc bc bc bc -cw +Gx bc bc bc bc dh -dp -du +jr +nC "} (16,1,1) = {" -aA +ny ba -bb +Hr aE aQ -aV -aV +Al +Al vw -EE -dA -bp -bp -bp -bp -dQ -bp -bp +wm +wO +oc +oc +oc +oc +CB +oc +oc bm -dR -dI -dS -NK +xx +ue +Fc +UR cE dm -dv +Ct "} (17,1,1) = {" -aA +ka ap -az -bu +MJ +Tb aN -nE -dL +KK +Qr bm -yS -yS -yS -cu -hN -yS -yS -yS -oF -cv +hl +hl +hl +zH +ZR +hl +hl +hl +pW +ve dz dJ dJ dJ dJ dn -dw +mP "} (18,1,1) = {" -aA +ka ap ap ap @@ -1697,48 +1718,48 @@ bc bc bc cx -dA -fG -fv -bp +wO +Eo +ql +oc cF do -dq +jl "} (19,1,1) = {" -ab -al -aG -aG -aG -dY +Wn +Ik +of +of +of +Ym aN -fv -rK -bp -aV -dM -nE -nE -aV -fv -dA -bp +ql +Fi +oc +Al +LQ +KK +KK +Al +ql +wO +oc cF cN cN cN di -Ha -dq +Tk +jl "} (20,1,1) = {" ai -at -aA -dX -dX -dZ +Be +ka +Au +Au +qY aE bq bA @@ -1755,142 +1776,142 @@ cG cO cU dd -dj -Ha -PR +Rd +Tk +Na "} (21,1,1) = {" -ak -am -aA -aG -dX -dZ -dO -br -dC -dU -aF -ar -bS -bX -bd -ar -bX -ci -bd -dK -bd -aS -dj -Ha -PR +Gr +vl +ka +of +Au +qY +Kq +Lq +Wb +QD +WA +Eq +jE +uw +Cy +Eq +uw +AF +Cy +JH +Cy +UB +Rd +Tk +Na "} (22,1,1) = {" -ag -ag -aG -aG -dX -ap -by -ap -aS -ap -bd -bP -bT -by -dU -bd -ap -cy -aS -bE -dU -aS -by -Ha -PR +BX +HP +ka +of +Au +ap +WB +ap +UB +ap +Cy +nn +Oi +WB +QD +Cy +ap +zv +UB +Kp +QD +UB +WB +Tk +Na "} (23,1,1) = {" -al -al -aG -aG -aG +Iz +ut +ka +of +of ap bQ -aS +UB bQ bH -aF +WA bQ bU ap -bE -cg +Kp +ua ap -ei -aS -cP -bE -bd +vH +UB +Fp +Kp +Cy dk -Ha -dq +Tk +jl "} (24,1,1) = {" -aj -am -aA -aG -aG +qf +vl +ka +of +of bN bf bs -cb -ap -by -aS -aS -ap -cV -ch -co -cA -bd -el -em -cA +wn +ap +WB +UB +UB +ap +Yd +ie +zq +pu +Cy +Cz +Pv +pu be -Ha -dq +Tk +jl "} (25,1,1) = {" ai -at -aA -aG -bx +Be +ka +of +AK ap ap ap ap ap bK -aS +UB be ap -bY -aS -cp -aS -qX -cA -cW -de -ap -PR -dx +mx +UB +Db +UB +zh +pu +OH +hU +ap +Na +jo "} diff --git a/maps/map_files/BigRed/standalone/medbay-v3.dmm b/maps/map_files/BigRed/standalone/medbay-v3.dmm index 8f90727068d6..924485050ce9 100644 --- a/maps/map_files/BigRed/standalone/medbay-v3.dmm +++ b/maps/map_files/BigRed/standalone/medbay-v3.dmm @@ -2,390 +2,389 @@ "aa" = ( /turf/closed/wall/solaris, /area/bigredv2/outside/medical) -"ab" = ( -/obj/structure/girder, -/turf/open/floor/wall_thermite, -/area/bigredv2/outside/medical) "ac" = ( /obj/structure/window_frame/solaris, /turf/open/floor/plating, /area/bigredv2/outside/medical) -"ad" = ( -/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/warnwhite/north, -/area/bigredv2/outside/medical) -"ae" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/warnwhite/north, -/area/bigredv2/outside/medical) "af" = ( /turf/closed/wall/solaris/reinforced, /area/bigredv2/outside/medical) -"ag" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/whitepurplecorner/north, -/area/bigredv2/outside/medical) -"ah" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"ai" = ( -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) "aj" = ( /obj/structure/window_frame/solaris, /obj/item/shard, /turf/open/floor/plating, /area/bigredv2/outside/medical) -"ak" = ( -/turf/open/floor/damaged2/west, -/area/bigredv2/outside/medical) -"al" = ( -/obj/structure/bed, -/turf/open/floor/white, -/area/bigredv2/outside/medical) "am" = ( /turf/open/floor/white, /area/bigredv2/outside/medical) -"an" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/damaged2/west, -/area/bigredv2/outside/medical) -"ao" = ( -/obj/structure/machinery/chem_master, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/damaged4/west, -/area/bigredv2/outside/medical) "ap" = ( /obj/structure/window/framed/solaris, /turf/open/floor/plating, /area/bigredv2/outside/medical) -"aq" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/item/device/healthanalyzer, -/turf/open/floor/whitegreenfull, +"bV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, /area/bigredv2/outside/medical) -"ar" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/whitegreenfull, +"co" = ( +/obj/structure/window_frame/solaris, +/obj/item/stack/sheet/metal, +/turf/open/floor/plating, /area/bigredv2/outside/medical) -"as" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/asteroidfloor/north, +"de" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/asteroidwarning/east, /area/bigredv2/outside/n) -"aw" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/damaged4/west, -/area/bigredv2/outside/medical) -"ax" = ( -/turf/open/floor/damaged4/west, +"di" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating, /area/bigredv2/outside/medical) -"ay" = ( +"eq" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/item/trash/chips, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"fu" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/ammo_casing/bullet, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"fx" = ( +/obj/structure/surface/table, +/obj/item/device/autopsy_scanner, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) -"az" = ( +"fF" = ( /obj/structure/bed, /turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) -"aA" = ( -/obj/structure/surface/table, +"gg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"gj" = ( +/obj/structure/window_frame/solaris, +/obj/item/stack/sheet/metal, /turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) -"aB" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, +"gs" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/wall_thermite, /area/bigredv2/outside/medical) -"aC" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, +"gx" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"aD" = ( -/turf/open/floor/whitegreenfull, +"hm" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"aE" = ( -/obj/structure/surface/table, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 +"hr" = ( +/obj/structure/bed/chair, +/obj/structure/sign/nosmoking_2{ + pixel_x = -28 }, -/obj/item/storage/box/beakers, +/turf/open/floor/darkish, +/area/bigredv2/outside/medical) +"hs" = ( +/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitepurplecorner/north, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"aF" = ( -/obj/structure/machinery/computer/med_data, -/turf/open/floor/whitegreenfull, +"hv" = ( +/obj/item/stack/rods, +/obj/item/shard, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) -"aH" = ( -/obj/effect/spawner/gibspawner/human, +"hE" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"hQ" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/medical) +"hZ" = ( +/turf/open/floor/darkish, +/area/bigredv2/outside/medical) +"id" = ( +/obj/structure/bed/chair, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"aI" = ( -/obj/structure/bed/roller, +"io" = ( +/obj/structure/machinery/vending/snack, /obj/structure/machinery/light{ dir = 1 }, -/obj/item/frame/table, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aJ" = ( -/obj/item/device/defibrillator, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aK" = ( -/obj/structure/surface/table, -/obj/effect/spawner/random/bomb_supply, -/obj/item/stack/sheet/metal, -/turf/open/floor/damaged2/west, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"aL" = ( +"iv" = ( +/obj/structure/machinery/optable, /obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/wygoon, +/obj/item/reagent_container/food/snacks/margheritaslice, /turf/open/floor/white, /area/bigredv2/outside/medical) -"aM" = ( +"iB" = ( +/obj/effect/landmark/objective_landmark/science, /turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) -"aN" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/plating/platingdmg3, +"iJ" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" + }, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) -"aO" = ( +"iX" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/plating/platingdmg3, +/turf/open/floor/whitegreen, /area/bigredv2/outside/medical) -"aP" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"jg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic"; + icon_state = "door_open"; + density = 0 }, -/obj/structure/bed/roller, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"aQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/damaged3/west, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) -"aR" = ( -/obj/structure/bed/chair/office/light{ +"ji" = ( +/obj/item/clothing/glasses/meson, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"aS" = ( -/obj/structure/surface/table/reinforced, +"jr" = ( +/obj/structure/surface/table, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"aT" = ( -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/medical) -"aU" = ( -/turf/open/floor/damaged3/west, -/area/bigredv2/outside/medical) -"aV" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/damaged2/west, -/area/bigredv2/outside/medical) -"aX" = ( -/obj/structure/window_frame/solaris, -/obj/item/stack/sheet/metal, +"jB" = ( +/obj/structure/machinery/chem_master, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) -"aY" = ( -/obj/item/shard, -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/medical) -"aZ" = ( +"jG" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/explosive/grenade/custom/large, +/obj/item/tool/extinguisher, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"ba" = ( -/obj/structure/surface/table, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreenfull, +"jQ" = ( +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) -"bb" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, +"jT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"bc" = ( +"kb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/medical) -"bd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/machinery/door_control{ + id = "Medical"; + name = "Storm Shutters"; + pixel_y = -32 }, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"bf" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/medical) -"bg" = ( +"ku" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/medical) -"bh" = ( -/turf/open/mars_cave/mars_dirt_4, -/area/bigredv2/outside/n) -"bi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/medical) -"bj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/crap_item, +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"kV" = ( +/obj/structure/machinery/chem_dispenser, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"bk" = ( +"li" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/turf/open/floor/damaged2/west, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) -"bl" = ( +"ly" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"bm" = ( -/obj/item/shard, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" + }, +/obj/item/ammo_casing/bullet, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"bn" = ( +"lz" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/platingdmg1, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"bo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 1; - name = "\improper Medical Clinic" +"lA" = ( +/obj/structure/surface/table/reinforced, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "Solaris Ridge"; + phone_id = "Clinic Reception" }, -/turf/open/floor/white, +/turf/open/floor/whitegreen, /area/bigredv2/outside/medical) -"bp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/gloves/latex, -/turf/open/floor/platingdmg1, +"lP" = ( +/obj/structure/sink{ + dir = 8; + icon_state = "sink"; + pixel_x = -12; + pixel_y = 2 + }, +/obj/item/tool/surgery/scalpel/manager, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) -"bq" = ( -/obj/effect/landmark/crap_item, -/obj/structure/pipes/standard/simple/hidden/green, +"lW" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Clinic Storage" + }, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"br" = ( +"lX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/item/stack/sheet/metal, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"lZ" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"mv" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"mF" = ( +/obj/structure/surface/table, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"mM" = ( +/obj/effect/decal/cleanable/dirt, /obj/item/ammo_casing/shell, -/turf/open/floor/plating/platingdmg3, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"bs" = ( +"mU" = ( +/obj/item/stack/sheet/metal, /obj/item/ammo_casing/bullet, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"bt" = ( -/obj/structure/bed/chair{ +"ne" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" + }, +/turf/open/floor/damaged3/west, +/area/bigredv2/outside/medical) +"ny" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreenfull, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) -"bu" = ( -/turf/open/floor/plating/panelscorched, +"og" = ( +/obj/structure/bed/chair, +/turf/open/floor/darkish, /area/bigredv2/outside/medical) -"bv" = ( +"oE" = ( /obj/structure/bed/chair{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/damaged3/west, -/area/bigredv2/outside/medical) -"bw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/asteroidwarning/east, -/area/bigredv2/outside/n) -"bx" = ( -/obj/item/stack/rods, -/turf/open/floor/damaged3/west, -/area/bigredv2/outside/medical) -"by" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"bz" = ( -/turf/open/floor/whitegreen/northeast, -/area/bigredv2/outside/medical) -"bA" = ( -/obj/structure/machinery/chem_dispenser, -/turf/open/floor/platingdmg1, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) -"bB" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/platingdmg1, +"oG" = ( +/turf/open/floor/delivery, /area/bigredv2/outside/medical) -"bC" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"oK" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /obj/item/stack/cable_coil{ amount = 1; icon_state = "coil2" }, -/obj/item/ammo_casing/bullet, +/obj/item/ammo_casing/shell, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"bD" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"bE" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/wygoon, +"oU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"bG" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/panelscorched, +"pr" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) -"bH" = ( +"pC" = ( +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/medical) +"pV" = ( +/obj/structure/bed/chair/office/light, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/plating/platingdmg3, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"bI" = ( +"pZ" = ( /obj/item/shard, /obj/item/frame/table, /turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) -"bJ" = ( -/obj/structure/bed/roller, -/turf/open/floor/platingdmg1, +"qb" = ( +/obj/structure/curtain/medical, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) -"bK" = ( -/obj/item/stack/rods, +"qf" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"bL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +"qF" = ( /obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"qG" = ( +/obj/item/ammo_casing/shell, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"ra" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + name = "\improper Medical Clinic Morgue"; + locked = 1 + }, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"re" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/north, +/turf/open/floor/damaged3/west, +/area/bigredv2/outside/medical) +"rf" = ( +/obj/item/stack/rods, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"bM" = ( +"rh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -395,224 +394,187 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) -"bN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/medical) -"bO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/surface/table, -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/n) -"bP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +"rm" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/c) +"rx" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"bQ" = ( -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"bR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/shard, -/turf/open/floor/plating/platingdmg3, -/area/bigredv2/outside/medical) -"bS" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Clinic Scanner Room" +"rB" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"bT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/platingdmg1, +/turf/open/floor/whitegreen/west, /area/bigredv2/outside/medical) -"bV" = ( +"rC" = ( +/obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, +/obj/item/shard, +/turf/open/floor/whitegreencorner/north, /area/bigredv2/outside/medical) -"bW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +"rD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" + }, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) -"bX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen, +"rG" = ( +/obj/item/device/healthanalyzer, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) -"bY" = ( +"rO" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"bZ" = ( -/obj/structure/window_frame/solaris, +"rU" = ( +/obj/structure/girder, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"ca" = ( +"rV" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"sj" = ( /obj/structure/window_frame/solaris, -/obj/item/shard, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"cb" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/platingdmg3, +"sn" = ( +/turf/open/floor/whitegreen/northeast, /area/bigredv2/outside/medical) -"cc" = ( -/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/platingdmg1, +"sr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) -"cd" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green, +"st" = ( +/obj/effect/landmark/crap_item, /turf/open/floor/white, /area/bigredv2/outside/medical) -"ce" = ( -/turf/open/floor/wall_thermite, +"sA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) -"cf" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Clinic" +"sH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) -"cg" = ( -/obj/structure/surface/table, -/turf/open/floor/platingdmg1, +"sL" = ( +/obj/item/device/defibrillator, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"ch" = ( +"ta" = ( +/obj/structure/bed, /obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/shell, -/turf/open/floor/platingdmg1, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) -"ci" = ( +"tj" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal, +/obj/item/shard, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"cj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/east, +"tu" = ( +/obj/structure/transmitter/colony_net{ + phone_category = "Solaris Ridge"; + phone_color = "green"; + phone_id = "Clinic Labs"; + pixel_y = 24 + }, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) -"ck" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" +"tC" = ( +/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/plating/panelscorched, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"cl" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/platingdmg1, +"tT" = ( +/obj/item/ammo_casing/shell, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) -"cm" = ( +"tX" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/item/ammo_casing/bullet, -/turf/open/floor/platingdmg1, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) -"cn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/asteroidwarning/north, -/area/bigredv2/outside/n) -"co" = ( -/obj/structure/window_frame/solaris, -/obj/item/stack/sheet/metal, +"tZ" = ( +/obj/structure/window/framed/solaris, +/obj/structure/curtain, /turf/open/floor/plating, /area/bigredv2/outside/medical) -"cp" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"cq" = ( +"ug" = ( +/turf/open/mars_cave/mars_dirt_4, +/area/bigredv2/outside/n) +"uo" = ( +/obj/effect/decal/cleanable/dirt, /obj/item/ammo_casing/bullet, /turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) -"cr" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/damaged3/west, +"uz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/surgery/bonesetter, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"cs" = ( -/obj/item/ammo_casing/bullet, +"uE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"uG" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/wygoon, /turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) -"ct" = ( -/obj/effect/landmark/crap_item, +"uM" = ( +/obj/structure/bed, +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"cu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/damaged4/west, -/area/bigredv2/outside/medical) -"cv" = ( -/obj/item/ammo_casing/bullet, +"uX" = ( +/obj/structure/bed/chair, +/obj/item/shard, /turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) -"cw" = ( -/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) -"cx" = ( +"vv" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/medical) -"cy" = ( -/obj/item/stack/sheet/metal, /turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) -"cz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/item/shard, -/turf/open/floor/whitegreen/north, +"vy" = ( +/obj/item/stack/rods, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) -"cA" = ( +"vF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/turf/open/floor/plating/platingdmg3, +/obj/item/stack/sheet/metal, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"cB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/turf/open/floor/damaged3/west, +"vN" = ( +/obj/item/shard, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) -"cC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/damaged2/west, +"vT" = ( +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) -"cD" = ( +"wh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, @@ -623,238 +585,214 @@ }, /turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) -"cE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/turf/open/floor/plating/panelscorched, -/area/bigredv2/outside/medical) -"cF" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/whitegreen/north, -/area/bigredv2/outside/medical) -"cH" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" +"wq" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 }, -/turf/open/floor/damaged5/west, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) -"cI" = ( +"wH" = ( /obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/turf/open/floor/damaged3/west, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"cJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/turf/open/floor/damaged5/west, +"wJ" = ( +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"xm" = ( +/obj/item/ammo_casing/shell, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"cK" = ( +"xq" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" +/obj/structure/surface/table, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"xv" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/item/ammo_casing/bullet, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) -"cL" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/turf/open/floor/plating/panelscorched, +"xD" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) -"cM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"xP" = ( +/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/white, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) -"cN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"xT" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ + name = "\improper Medical Clinic" }, -/turf/open/floor/platingdmg1, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) -"cQ" = ( -/obj/effect/decal/cleanable/dirt, +"yb" = ( /obj/item/shard, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"cR" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/damaged4/west, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"cS" = ( -/obj/structure/surface/table, -/obj/item/storage/pill_bottle/tramadol, +"yM" = ( +/obj/item/reagent_container/pill/happy, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"cT" = ( -/obj/structure/pipes/standard/simple/hidden/green, +"yS" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/damaged2/west, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) -"cU" = ( -/obj/effect/decal/cleanable/blood, +"yY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/open/floor/white, /area/bigredv2/outside/medical) -"cV" = ( -/obj/structure/pipes/standard/manifold/hidden/green, +"zb" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11 + }, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"zn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, +/obj/item/stack/sheet/metal, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"cW" = ( +"zH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/damaged4/west, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) -"cX" = ( +"zO" = ( +/obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, +/turf/open/floor/delivery, +/area/bigredv2/outside/medical) +"zR" = ( +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/medical) +"Ab" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/damaged2/west, +/obj/item/frame/table, +/turf/open/floor/whitepurplecorner/north, /area/bigredv2/outside/medical) -"cY" = ( +"Ad" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/platingdmg1, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) -"cZ" = ( +"Al" = ( +/obj/structure/bed/roller, /obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/damaged5/west, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"db" = ( +"Bd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood, /obj/effect/landmark/corpsespawner/wygoon, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dc" = ( +"Bh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/wygoon, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"dd" = ( -/obj/item/stack/rods, -/obj/item/shard, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" + }, /turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) -"df" = ( -/obj/structure/bed/chair, -/turf/open/floor/darkish, -/area/bigredv2/outside/medical) -"dg" = ( -/turf/open/floor/darkish, -/area/bigredv2/outside/medical) -"dh" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/platingdmg1, +"Bs" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) -"di" = ( +"Bw" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, +/obj/item/shard, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/turf/open/floor/whitegreen/southwest, +/area/bigredv2/outside/medical) +"BF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, /obj/item/ammo_casing/bullet, -/turf/open/floor/plating, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dj" = ( +"BH" = ( /obj/item/shard, +/obj/structure/bed/roller, /turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) -"dk" = ( -/obj/structure/girder, +"BV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/gloves/latex, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dl" = ( -/obj/structure/bed/chair, -/obj/structure/sign/nosmoking_2{ - pixel_x = -28 +"Cm" = ( +/obj/structure/surface/table, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 }, -/turf/open/floor/darkish, -/area/bigredv2/outside/medical) -"dm" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/storage/box/beakers, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/damaged3/west, +/turf/open/floor/whitepurplecorner/north, /area/bigredv2/outside/medical) -"dn" = ( +"Cw" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/stack/cable_coil{ - amount = 1; - icon_state = "coil2" - }, -/obj/item/ammo_casing/shell, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/corpsespawner/wygoon, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"do" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/item/ammo_casing/bullet, -/turf/open/floor/platingdmg1, +"CP" = ( +/obj/structure/machinery/light, +/obj/item/tool/surgery/cautery, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) -"dp" = ( -/obj/structure/sign/safety/autodoc{ - pixel_x = 32 - }, +"CV" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/damaged3/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) -"dq" = ( -/obj/structure/sign/safety/autodoc{ - pixel_x = -32 - }, -/turf/open/floor/plating/platingdmg3, +"CZ" = ( +/obj/structure/bed, +/turf/open/floor/whitegreencorner/north, /area/bigredv2/outside/medical) -"dr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/bullet, -/turf/open/floor/damaged3/west, +"Db" = ( +/turf/open/floor/asteroidfloor/north, /area/bigredv2/outside/medical) -"ds" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/bullet, +"Dj" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"Dk" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" + }, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dt" = ( +"Dy" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 4 @@ -867,594 +805,700 @@ }, /turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) -"du" = ( +"DA" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"DR" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/item/shard, +/turf/open/floor/whitegreen/north, +/area/bigredv2/outside/medical) +"Ei" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/corpsespawner/wygoon, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"Ej" = ( +/obj/item/shard, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"Em" = ( +/obj/item/frame/table, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"Eq" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/reagent_container/food/snacks/margheritaslice, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"Et" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/damaged2/west, +/area/bigredv2/outside/medical) +"Eu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/damaged3/west, +/area/bigredv2/outside/medical) +"EH" = ( +/obj/effect/decal/cleanable/dirt, /obj/item/ammo_casing/shell, /turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) -"dv" = ( -/obj/item/stack/sheet/metal, +"EI" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) -"dw" = ( +"ER" = ( +/obj/effect/landmark/corpsespawner/doctor, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/item/stack/sheet/metal, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"EY" = ( +/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/platingdmg1, /area/bigredv2/outside/medical) -"dx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"Fh" = ( +/obj/structure/surface/table, +/obj/item/storage/box/masks, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/medical) +"Fi" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" }, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"FH" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottom" + }, +/turf/open/floor/whitegreen/southeast, /area/bigredv2/outside/medical) -"dy" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood, +"FJ" = ( +/obj/item/reagent_container/pill/happy, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dz" = ( -/obj/structure/machinery/camera/autoname{ - network = list("interrogation") - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/damaged4/west, +"Gh" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dA" = ( -/obj/structure/bed/roller, -/turf/open/floor/plating/platingdmg3, +"Gn" = ( +/obj/structure/surface/table, +/obj/item/trash/burger, +/obj/effect/decal/cleanable/dirt, +/obj/item/frame/table, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) -"dB" = ( +"GD" = ( /obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 + dir = 4 }, +/obj/item/ammo_casing/bullet, /turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) -"dC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"He" = ( +/obj/item/stack/sheet/metal, +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"Hi" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/damaged5/west, +/area/bigredv2/outside/medical) +"HI" = ( +/obj/item/clothing/mask/breath/medical, /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whitebluefull/northeast, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"dD" = ( +"HJ" = ( /obj/structure/surface/table, -/obj/item/device/autopsy_scanner, -/turf/open/floor/whitebluefull/northeast, +/obj/item/storage/pill_bottle/tramadol, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"HQ" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"Ia" = ( +/obj/structure/machinery/light{ dir = 4 }, +/obj/item/shard, +/turf/open/floor/damaged2/west, +/area/bigredv2/outside/medical) +"IH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/asteroidwarning/north, +/area/bigredv2/outside/n) +"IL" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/shell, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dF" = ( -/obj/effect/decal/cleanable/blood, +"IU" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/damaged2/west, +/area/bigredv2/outside/medical) +"IY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreencorner, +/area/bigredv2/outside/medical) +"IZ" = ( +/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) +"Ja" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/platingdmg1, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" + }, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) -"dG" = ( +"Jd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/stack/sheet/metal, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dH" = ( +"Jg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Clinic Storage" + }, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +"Jl" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/bullet, -/turf/open/floor/damaged3/west, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) -"dL" = ( -/obj/item/stack/sheet/metal, +"Jp" = ( /obj/item/ammo_casing/bullet, -/turf/open/floor/platingdmg1, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) -"dM" = ( -/obj/item/clothing/gloves/latex, +"Jy" = ( /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dN" = ( -/obj/effect/decal/cleanable/vomit, +"JF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dP" = ( -/obj/item/ammo_casing/shell, +"JH" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/surgery/blue, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreenfull, +"JX" = ( +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) -"dR" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/whitegreenfull, +"KI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) -"dS" = ( -/obj/structure/surface/table, -/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita, -/turf/open/floor/whitebluefull/northeast, +"KS" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) -"dT" = ( -/obj/structure/bed/chair, +"KT" = ( +/obj/effect/decal/cleanable/vomit, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dU" = ( +"KV" = ( /obj/structure/bed/chair, -/obj/structure/machinery/light{ - dir = 4 - }, +/obj/item/ammo_casing/shell, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dV" = ( -/obj/structure/machinery/medical_pod/bodyscanner, +"Lf" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" + }, +/turf/open/floor/whitegreen, /area/bigredv2/outside/medical) -"dW" = ( -/obj/structure/machinery/body_scanconsole, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/southeast, +"LB" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Medical Clinic Operating Theatre" + }, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) -"dX" = ( -/obj/item/stack/rods, -/turf/open/floor/plating/panelscorched, +"LF" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/asteroidfloor/north, +/area/bigredv2/outside/n) +"LR" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) -"dY" = ( -/obj/item/shard, -/turf/open/floor/darkish, +"LS" = ( +/obj/item/clothing/gloves/latex, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"dZ" = ( -/obj/structure/bed/chair, +"Mb" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) -"ea" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood, +"Ml" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"eb" = ( -/obj/structure/machinery/medical_pod/sleeper, +"MH" = ( /obj/effect/decal/cleanable/dirt, +/obj/item/shard, /turf/open/floor/white, /area/bigredv2/outside/medical) -"ec" = ( -/obj/structure/closet/secure_closet/medical1, +"MS" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/item/device/healthanalyzer, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"MY" = ( +/turf/open/floor/damaged3/west, +/area/bigredv2/outside/medical) +"MZ" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/crap_item, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"ed" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +"Ng" = ( +/obj/structure/machinery/medical_pod/bodyscanner, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreenfull, -/area/bigredv2/outside/medical) -"ee" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft" }, -/obj/effect/landmark/corpsespawner/doctor, /turf/open/floor/white, /area/bigredv2/outside/medical) -"ef" = ( -/obj/structure/sink{ - dir = 8; - icon_state = "sink"; - pixel_x = -12; - pixel_y = 2 - }, -/obj/item/tool/surgery/scalpel/manager, -/turf/open/floor/whitebluefull/northeast, -/area/bigredv2/outside/medical) -"eg" = ( -/obj/item/device/healthanalyzer, -/obj/structure/pipes/vents/pump, -/turf/open/floor/plating/panelscorched, +"Nt" = ( +/obj/structure/bed/chair, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) -"eh" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/wall_thermite, +"NA" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) -"ei" = ( +"NK" = ( /obj/structure/machinery/sleep_console, /obj/effect/decal/cleanable/dirt, /turf/open/floor/white, /area/bigredv2/outside/medical) -"ej" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/panelscorched, +"Od" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"ek" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"Ok" = ( +/obj/structure/surface/table, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/medical) +"Ov" = ( +/obj/item/stack/rods, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/medical) +"OG" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Clinic Storage" - }, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"el" = ( -/obj/item/clothing/glasses/meson, -/obj/structure/pipes/standard/simple/hidden/green{ +"OK" = ( +/obj/effect/acid_hole{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris, +/area/bigredv2/outside/medical) +"OM" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/medical) +"ON" = ( +/obj/structure/surface/table/reinforced, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"em" = ( -/obj/item/reagent_container/pill/happy, +"Pd" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/damaged4/west, +/area/bigredv2/outside/medical) +"Pp" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 6 }, -/turf/open/floor/platingdmg1, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) -"en" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Clinic Storage" +"Pr" = ( +/obj/structure/sign/safety/autodoc{ + pixel_x = -32 }, -/turf/open/floor/platingdmg1, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) -"eo" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light{ - dir = 1 +"PB" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"ep" = ( -/obj/structure/bed/chair, -/obj/item/ammo_casing/shell, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"eq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreenfull, +/obj/structure/bed/roller, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) -"er" = ( -/obj/structure/bed/chair, -/obj/item/shard, -/turf/open/floor/damaged4/west, +"PC" = ( +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) -"es" = ( +"PT" = ( /turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) -"et" = ( -/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) -"eu" = ( +"PW" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control{ - id = "Medical"; - name = "Storm Shutters"; - pixel_y = -32 - }, +/obj/item/ammo_casing/shell, +/turf/open/floor/plating/platingdmg3, +/area/bigredv2/outside/medical) +"Qk" = ( +/obj/structure/bed, +/obj/effect/landmark/monkey_spawn, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"ev" = ( -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, +"Qn" = ( /obj/item/shard, -/turf/open/floor/white, +/turf/open/floor/darkish, /area/bigredv2/outside/medical) -"ew" = ( -/obj/structure/surface/table, -/turf/open/floor/whitebluefull/northeast, +"Qu" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) -"ex" = ( +"Qy" = ( /obj/structure/surface/table, -/obj/item/storage/box/masks, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/damaged4/west, +/obj/effect/spawner/random/bomb_supply, +/obj/item/stack/sheet/metal, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) -"ey" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/turf/open/floor/whitepurplecorner/north, +"QF" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"ez" = ( -/obj/item/device/healthanalyzer, -/turf/open/floor/whitegreen/east, +"QO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/whitegreen/north, /area/bigredv2/outside/medical) -"eA" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 32 +"Rg" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" }, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/surgery/blue, -/turf/open/floor/platingdmg1, +/turf/open/floor/plating/panelscorched, +/area/bigredv2/outside/medical) +"Rm" = ( +/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) -"eB" = ( +"Ro" = ( +/obj/structure/machinery/medical_pod/bodyscanner, /obj/effect/decal/cleanable/dirt, -/obj/item/tool/extinguisher, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"eC" = ( +"Rw" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/item/trash/kepler, -/turf/open/floor/whitegreenfull, +/turf/open/floor/whitegreen/west, /area/bigredv2/outside/medical) -"eD" = ( -/obj/structure/surface/table/reinforced, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "Solaris Ridge"; - phone_id = "Clinic Reception" - }, -/turf/open/floor/white, +"Rz" = ( +/obj/structure/girder, +/turf/open/floor/wall_thermite, +/area/bigredv2/outside/medical) +"RE" = ( +/obj/structure/bed/roller, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) -"eE" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/open/floor/whitebluefull/northeast, +"RN" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"eF" = ( -/obj/structure/closet/secure_closet/medical1, +"RY" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) -"eG" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 - }, -/turf/open/floor/whitebluefull/northeast, +"Sg" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) -"eH" = ( -/obj/structure/machinery/optable, +"Sk" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/corpsespawner/wygoon, -/obj/item/reagent_container/food/snacks/margheritaslice, +/obj/item/frame/table, /turf/open/floor/white, /area/bigredv2/outside/medical) -"eI" = ( -/obj/structure/curtain/medical, -/turf/open/floor/damaged5/west, +"Sz" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) -"eJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/shell, +"SF" = ( +/obj/item/device/healthanalyzer, +/obj/structure/pipes/vents/pump, /turf/open/floor/plating/panelscorched, /area/bigredv2/outside/medical) -"eK" = ( +"SI" = ( +/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/obj/item/tool/surgery/bonesetter, -/turf/open/floor/white, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"eL" = ( -/obj/structure/machinery/light{ +"SJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/shard, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) -"eM" = ( +"SL" = ( +/obj/structure/surface/table, +/obj/item/reagent_container/food/snacks/sliceable/pizza/margherita, +/turf/open/floor/whitebluefull/northeast, +/area/bigredv2/outside/medical) +"SZ" = ( +/obj/structure/surface/table/reinforced, /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/crap_item, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"eN" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/reagent_container/food/snacks/margheritaslice, -/turf/open/floor/white, -/area/bigredv2/outside/medical) -"eO" = ( -/obj/effect/decal/cleanable/blood/gibs/body, -/turf/open/floor/damaged2/west, -/area/bigredv2/outside/medical) -"eP" = ( +"Tc" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/bullet, -/turf/open/floor/damaged5/west, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"eQ" = ( -/obj/structure/surface/table, -/obj/item/trash/burger, -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/turf/open/floor/whitegreen/northwest, +"Tt" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/delivery, /area/bigredv2/outside/medical) -"eR" = ( -/obj/structure/bed/chair{ +"TJ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/platingdmg1, +/area/bigredv2/outside/medical) +"TO" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/white, /area/bigredv2/outside/medical) -"eS" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/whitegreenfull, +"UK" = ( +/obj/structure/surface/table, +/turf/open/floor/whitebluefull/northeast, /area/bigredv2/outside/medical) -"eT" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"eU" = ( -/turf/open/floor/asteroidwarning, +"UP" = ( +/obj/structure/surface/table/reinforced, +/obj/item/trash/buritto, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"eV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/colony{ - name = "\improper Medical Clinic" +"Vg" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/effect/landmark/corpsespawner/doctor, /turf/open/floor/white, /area/bigredv2/outside/medical) -"eW" = ( -/obj/effect/landmark/corpsespawner/doctor, +"Vj" = ( +/obj/structure/machinery/body_scanconsole, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, +/turf/open/floor/whitegreen/southeast, /area/bigredv2/outside/medical) -"eX" = ( +"Vn" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/floor/damaged5/west, -/area/bigredv2/outside/medical) -"eY" = ( -/obj/structure/bed, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whitegreen/east, +/obj/item/ammo_casing/bullet, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) -"eZ" = ( +"VR" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/damaged5/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen, +/area/bigredv2/outside/medical) +"VS" = ( +/obj/structure/machinery/camera/autoname{ + network = list("interrogation") + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) -"fa" = ( +"VX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Medical Clinic Operating Theatre" +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" }, -/turf/open/floor/damaged2/west, +/turf/open/floor/damaged5/west, /area/bigredv2/outside/medical) -"fb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/panelscorched, +"WG" = ( +/obj/structure/machinery/medical_pod/sleeper, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/white, /area/bigredv2/outside/medical) -"fc" = ( +"WH" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/shell, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/wygoon, /turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) -"fd" = ( -/obj/item/reagent_container/pill/happy, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"fe" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11 - }, -/turf/open/floor/platingdmg1, +"WQ" = ( +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) -"ff" = ( -/obj/item/clothing/mask/breath/medical, +"WV" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/white, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) -"fg" = ( -/obj/item/stack/sheet/metal, -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/panelscorched, +"WY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/shard, +/turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) -"fh" = ( -/obj/structure/surface/table/reinforced, -/obj/item/trash/buritto, -/turf/open/floor/whitegreenfull, +"Xc" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/item/trash/chips, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreencorner/west, /area/bigredv2/outside/medical) -"fj" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/damaged4/west, +"Xl" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/whitepurplecorner/north, /area/bigredv2/outside/medical) -"fk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_casing/shell, +"Xr" = ( +/obj/item/ammo_casing/bullet, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"fl" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"Xs" = ( +/obj/structure/sign/safety/autodoc{ + pixel_x = 32 }, -/turf/open/floor/platingdmg1, -/area/bigredv2/outside/medical) -"fm" = ( /obj/item/stack/sheet/metal, -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/c) -"fn" = ( -/obj/structure/bed, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/platingdmg1, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) -"fo" = ( -/obj/structure/machinery/light, -/obj/item/tool/surgery/cautery, -/turf/open/floor/whitebluefull/northeast, +"Xt" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/open/floor/damaged4/west, /area/bigredv2/outside/medical) -"fp" = ( -/obj/structure/machinery/medical_pod/bodyscanner, -/obj/effect/decal/cleanable/dirt, +"XF" = ( +/obj/effect/spawner/gibspawner/human, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"fq" = ( -/obj/structure/bed, -/obj/effect/landmark/monkey_spawn, +"XQ" = ( +/obj/structure/window_frame/solaris, +/obj/item/shard, /turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"fr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/frame/table, -/turf/open/floor/white, +"Yl" = ( +/turf/open/floor/asteroidwarning, +/area/bigredv2/outside/n) +"Yv" = ( +/obj/structure/machinery/computer/med_data, +/turf/open/floor/whitegreenfull, /area/bigredv2/outside/medical) -"fs" = ( -/obj/item/frame/table, -/turf/open/floor/platingdmg1, +"YE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/damaged2/west, /area/bigredv2/outside/medical) -"gS" = ( +"YF" = ( /obj/structure/machinery/light, /turf/open/floor/asteroidwarning/north, /area/bigredv2/outside/n) -"hn" = ( -/turf/open/floor/asteroidfloor/north, -/area/bigredv2/outside/medical) -"om" = ( -/turf/open/floor/asteroidwarning, -/area/bigredv2/outside/n) -"CW" = ( -/turf/open/floor/delivery, +"YQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/whitegreen/northwest, /area/bigredv2/outside/medical) -"DL" = ( -/obj/effect/landmark/objective_landmark/science, +"YY" = ( /turf/open/floor/plating/platingdmg3, /area/bigredv2/outside/medical) -"GP" = ( +"Zh" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/white, +/area/bigredv2/outside/medical) +"Zo" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/whitegreenfull, +/area/bigredv2/outside/medical) +"Zp" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/damaged3/west, +/obj/item/explosive/grenade/custom/large, +/turf/open/floor/platingdmg1, /area/bigredv2/outside/medical) -"MK" = ( -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/damaged5/west, +"ZC" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/whitegreen/east, /area/bigredv2/outside/medical) -"Xh" = ( -/obj/structure/transmitter/colony_net{ - phone_category = "Solaris Ridge"; - phone_color = "green"; - phone_id = "Clinic Labs"; - pixel_y = 24 +"ZH" = ( +/obj/structure/bed/roller, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/damaged2/west, +/obj/item/frame/table, +/turf/open/floor/whitegreen/east, +/area/bigredv2/outside/medical) +"ZQ" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/cable_coil{ + amount = 1; + icon_state = "coil2" + }, +/obj/item/ammo_casing/bullet, +/turf/open/floor/damaged3/west, /area/bigredv2/outside/medical) (1,1,1) = {" @@ -1462,18 +1506,19 @@ aa aa aa aa -ab -bx -aU +Rz +vy +MY aa aa +OK aa +zO +TJ aa -ah -dH +Ml +Rz aa -bB -ab aa aa aa @@ -1482,484 +1527,483 @@ aa aa aa aa -aa -eT +rm "} (2,1,1) = {" aa -ag -aK -aE -ey -ai -ai -ai -aa -eQ -cS -aU -cN -bJ -dy -aa -df -dl +Xl +Qy +Cm +Ab +Jy +Jy +Jy +aa +Gn +HJ +MY +Dk +Jy +Al +aa +og +hr ap -dD -dS -ef -es -eE +fx +SL +lP +PT +pr aa -eT +rm "} (3,1,1) = {" aa -Xh -aM -aU -ai -DL -bR -bn -ai -aU -cx -bG -dn -bu -dz -aa -df -df +tu +jQ +MY +Jy +vT +WY +Tc +Jy +MY +KI +Sg +oK +JX +VS +aa +og +og ap -ew -eK -aL -eN -es +UK +uz +TO +Eq +PT aa -eT +rm "} (4,1,1) = {" aa -bk -aO -aZ -bj -by -bH -by +sA +sr +Zp +JF +tj +WH +tj co -cz -cT -bT -do -du -aT -aM -dg -dY +DR +IU +rO +BF +qG +YY +jQ +hZ +Qn ac -ex -aL -eH -et -fo +Fh +TO +iv +tC +CP aa -eT +rm "} (5,1,1) = {" -ab -ao -aQ -bb -bl -bl -bT -bT -cp -bL -cW -bu -aT -bs -dA -bK -dT -dZ +Rz +jB +re +hs +SI +SI +rO +rO +SZ +li +yS +JX +YY +Xr +RE +rf +id +Nt aj -aA -ax -eW -ff -es +Ok +pC +ER +HI +PT aa -eT +rm "} (6,1,1) = {" -ab -aw -aR -aH -bm -bA -bB -cg -aa -bM -aM -dh -dj -dv -bJ -ab -dU -dZ +Rz +Bs +OG +XF +yb +kV +Ml +jr +aa +rh +jQ +DA +BH +HQ +Jy +Rz +rx +Nt aj -ax -eL -eZ -fj -eG +pC +Ia +hE +hQ +wq aa -eT +rm "} (7,1,1) = {" -ai +Jy aa -aS +ON aj -ai -bB -bK +Jy +Ml +rf aa aa -cA -bX +rD +iX aa aa -bB -cl -ab +Ml +wH +Rz aa aa -ax -bm +pC +yb aa -fa +LB aa aa aa -eT +rm "} (8,1,1) = {" -ai -ax -aT -aN -ai -bm +Jy +pC +YY +uG +Jy +yb bV -br -ai -cB -by -ca -bB -aT -aT -bs -bZ -ai -ai -bG -ai -dE -bn -fp -aa -eT +tT +Jy +Ja +tj +XQ +Ml +YY +YY +Xr +sj +Jy +Jy +Sg +Jy +Jd +Tc +Ro +aa +rm "} (9,1,1) = {" ac -ah -ai -bc -bn -ai -bZ -ch -cq -bW -bY -bT -bT -cw -dB -bn -bT -bT -ej -bT -eM -fb -fk -ci -aa -eT +CV +Jy +zH +Tc +Jy +sj +mM +NA +ny +FH +rO +rO +IZ +Jl +Tc +rO +rO +KS +rO +MZ +GD +IL +zn +aa +rm "} (10,1,1) = {" aj -az -aU -bc -bp -cl -ca -ci -cr -dx -cQ -aL -aL -bn -dc -dV -bZ -ea -dH -eA -ds -fc -fl -bu -ai -fm +fF +MY +zH +BV +wH +XQ +zn +Sz +YQ +Bw +TO +TO +Tc +Cw +Ng +sj +Od +TJ +JH +oU +PW +qf +JX +Jy +ku "} (11,1,1) = {" aj -al -aV -bd -bq -bC -bo -ck -bT -cV -bX +CZ +Mb +QF +gx +ly +xP +Rg +rO +LR +Lf aj -dp -bu -dx -dW +Xs +JX +yY +Vj aa aj -ek +Jg aa aa -ab -bB -dX -bu -eT +Rz +Ml +Dj +JX +rm "} (12,1,1) = {" -ad -aL -aM -dE -br -bG +Rm +IY +jQ +Jd +tT +Sg ac -bs -cs -cC -bX +Xr +Jp +SJ +iX aa aa -ax -dE +pC +Jd aa aa -fs -dE -ai -ai -ai -aH -ai -bK -eT +Em +Jd +Jy +Jy +Jy +XF +Jy +rf +rm "} (13,1,1) = {" -ae -ay -bT -bf -bs -bE -ai -cl -ai -cD -ci +Tt +Xc +rO +PC +Xr +rV +Jy +wH +Jy +wh +zn di -ai -aY -dx -eb -aa -ec -el -eB -ai -cs -bn -ai -aa -eT +Jy +vN +yY +WG +aa +hm +ji +jG +Jy +Jp +Tc +Jy +aa +rm "} (14,1,1) = {" af -aI -aB -aP -bu -ai -ai -aT -ct -cE -bc -dj -bm -bs -dC -ei -aa -ai -dE -bu -aT -fd -bc -fs -aa -eT +ZH +Qu +PB +JX +Jy +Jy +YY +Gh +Bh +zH +Ej +yb +Xr +sH +NK +aa +Jy +Jd +JX +YY +yM +zH +Em +aa +rm "} (15,1,1) = {" af ac -aX +gj aj -aT -bK -cb -aT -bu -dG -bm -bB -aH -ax -dE -aM -ab -eg -em -cl -eO -aT -ds -cg -aa -eT +YY +rf +Ov +YY +JX +vF +yb +Ml +XF +pC +Jd +jQ +Rz +SF +FJ +wH +Et +YY +oU +jr +aa +rm "} (16,1,1) = {" af -aq -bI -bg -bu -ai -bZ -bm -aM -dE -aT -dd -ax -bm -dF -fr -aQ -bu -ai -aQ -eP -bc -cs -ai -aa -eT +MS +pZ +lZ +JX +Jy +sj +yb +jQ +Jd +YY +hv +pC +yb +RN +Sk +re +JX +Jy +re +uo +zH +Jp +Jy +aa +rm "} (17,1,1) = {" af -aJ -aC -ak -bv -bN -cc -bu -cu -cH -ai -dk -aT -cs -dx -ax -aQ -aM -aU -eF -ai -fe -ai -ai -bK -eT +sL +pV +WQ +xv +EI +EY +JX +xD +iJ +Jy +rU +YY +Jp +yY +pC +re +jQ +MY +Xt +Jy +zb +Jy +Jy +rf +rm "} (18,1,1) = {" af -ar -aF -ba -bt -ai -ca -bu -cv -cI -aT -aa -aa -bK -dG -aM -ai +Zo +Yv +mF +oE +Jy +XQ +JX +Pd +ne +YY +aa +aa +rf +vF +jQ +Jy ac -en +lW aa aa aa -bs -bB -dv -eU +Xr +Ml +HQ +OM "} (19,1,1) = {" af @@ -1967,104 +2011,104 @@ aa aa aa aa -ab -aa -aT -ai -cJ -aM -bs -dq -bG -ai -dL -bu -ai -ak -ai -az -ai -ai -dP -ab -hn +Rz +aa +YY +Jy +VX +jQ +Xr +Pr +Sg +Jy +mU +JX +Jy +WQ +Jy +fF +Jy +Jy +xm +Rz +Db "} (20,1,1) = {" af -as -bw -bw -bw -bO -ce -ai -bg -cK -cX -ai -bs -dw -dH -bn -aT -MK -bD -aL -aM -fg -fg -dP -aa -hn +LF +de +de +de +xq +zR +Jy +lZ +ZQ +Ad +Jy +Xr +lX +TJ +Tc +YY +iB +st +TO +jQ +He +He +xm +aa +Db "} (21,1,1) = {" af -om -bh -bh -bh -cn -cf -cm -bi -cL -cY -cs -bG -db -dI -aL -an -cj -ez -eI -az -eY -fn -fq -aa -hn +Yl +ug +ug +ug +IH +xT +fu +Hi +Fi +uE +Jp +Sg +Bd +Vn +TO +YE +vv +rG +qb +fF +ta +uM +Qk +aa +Db "} (22,1,1) = {" af -om -bh -bh -bh -bQ -CW -aT -bu -cN -aT -aQ -dr -an -cM -dM -bn +Yl +ug +ug +ug +wJ +oG +YY +JX +Dk +YY +re +Eu +YE +gg +LS +Tc aa -bu +JX aa aa aa @@ -2075,112 +2119,112 @@ aa "} (23,1,1) = {" af -om -bh -bh -bh -bQ +Yl +ug +ug +ug +wJ ac -bK -an -bP -cZ -dm -bY -bY -bf -aT -eu -ab -eo -br -ai -aM -eC -eR -eS +rf +YE +jT +Ei +tX +eq +eq +PC +YY +kb +Rz +io +tT +Jy +jQ +Rw +rB +rB aa "} (24,1,1) = {" af -om -bh -bh -bh -bQ +Yl +ug +ug +ug +wJ ac -ax -cx -cQ -aM -bj -ds -aL -dH -dN -ax -eh -ep -eJ -eX -eq -cd -eq -bY -eV +pC +KI +MH +jQ +JF +oU +TO +TJ +KT +pC +gs +KV +EH +Pp +lz +qF +lz +lz +jg "} (25,1,1) = {" af -om -bh -bh -bh -bQ +Yl +ug +ug +ug +wJ ac -bz -cy -cR -dd -cj -dt -cx -cU -dP -dX -bZ -er -GP -ed -aL -aD -aL -dQ +sn +ZC +RY +hv +vv +Dy +KI +mv +xm +Dj +sj +uX +WV +yY +TO am +vv +vv +oG "} (26,1,1) = {" af -om -bh -bh -bh -gS +Yl +ug +ug +ug +YF aa -ap -ap -bS -ac +aa +tZ +ra aj aa -cF -dx -ai -bX -ca -ev -dR -ee -fh -eD +aa +QO +VR +Jy +iX +XQ +rC +Zh +Vg +UP +lA ap ap aa diff --git a/maps/map_files/FOP_v3_Sciannex/sprinkles/20.medicalhold.dmm b/maps/map_files/FOP_v3_Sciannex/sprinkles/unused/20.medicalhold.dmm similarity index 100% rename from maps/map_files/FOP_v3_Sciannex/sprinkles/20.medicalhold.dmm rename to maps/map_files/FOP_v3_Sciannex/sprinkles/unused/20.medicalhold.dmm diff --git a/maps/map_files/Ice_Colony_v3/sprinkles/20.labs-larder.dmm b/maps/map_files/Ice_Colony_v3/sprinkles/unused/20.labs-larder.dmm similarity index 100% rename from maps/map_files/Ice_Colony_v3/sprinkles/20.labs-larder.dmm rename to maps/map_files/Ice_Colony_v3/sprinkles/unused/20.labs-larder.dmm diff --git a/maps/map_files/Ice_Colony_v3/sprinkles/33.labs-entrance.dmm b/maps/map_files/Ice_Colony_v3/sprinkles/unused/33.labs-entrance.dmm similarity index 100% rename from maps/map_files/Ice_Colony_v3/sprinkles/33.labs-entrance.dmm rename to maps/map_files/Ice_Colony_v3/sprinkles/unused/33.labs-entrance.dmm diff --git a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm index 12cf5cbeb613..8b0c0d54f07d 100644 --- a/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm +++ b/maps/map_files/LV522_Chances_Claim/LV522_Chances_Claim.dmm @@ -17,23 +17,33 @@ /turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) "aaX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/outdoors/n_rockies) +/obj/item/reagent_container/spray/cleaner/drone{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "abe" = ( -/obj/structure/closet/crate, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, /obj/effect/decal/cleanable/dirt, -/obj/item/tank/emergency_oxygen/double, -/obj/item/tank/emergency_oxygen/double, +/obj/structure/barricade/handrail{ + dir = 1 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) +/area/lv522/indoors/lone_buildings/engineering) "abo" = ( /turf/closed/wall/strata_outpost, /area/lv522/oob) "abt" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "aby" = ( /obj/item/stack/sheet/metal, /obj/structure/platform_decoration{ @@ -41,24 +51,28 @@ }, /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_east_street) +"abJ" = ( +/obj/effect/landmark/lv624/fog_blocker/short, +/turf/closed/wall/strata_outpost, +/area/lv522/landing_zone_1/tunnel/far) "abS" = ( -/obj/effect/acid_hole, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) +/obj/structure/largecrate/random, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "abV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/barricade/handrail{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "abX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair/comfy, -/turf/open/floor/strata/white_cyan1/east, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo/glass) "ack" = ( /obj/structure/sink{ @@ -66,31 +80,22 @@ pixel_x = -11 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, +/turf/open/floor/strata/white_cyan2, /area/lv522/indoors/a_block/executive) "acn" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "acp" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/landing_zone_2/ceiling) "acq" = ( -/obj/structure/largecrate/random{ - layer = 2.9 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"acD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) +/obj/effect/acid_hole, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) "acE" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, @@ -115,15 +120,11 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "adl" = ( -/obj/item/storage/box/MRE{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/storage/box/MRE{ - pixel_x = -1; - pixel_y = -6 +/obj/structure/ladder{ + icon_state = "ladder10"; + id = "hatch" }, -/turf/closed/wall/strata_ice/dirty, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv522/oob) "adG" = ( /obj/structure/surface/table/reinforced/almayer_B, @@ -131,13 +132,6 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/lone_buildings/chunk) "adI" = ( -/obj/structure/ladder{ - icon_state = "ladder10"; - id = "hatch" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/oob) -"adN" = ( /obj/structure/platform, /obj/structure/platform{ dir = 8 @@ -147,13 +141,17 @@ }, /turf/open/gm/river, /area/lv522/oob) +"adN" = ( +/obj/structure/platform, +/turf/open/gm/river, +/area/lv522/oob) "aea" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_fuel"; + pixel_y = 5 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/outdoors/n_rockies) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "aee" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/strata_outpost, @@ -174,16 +172,18 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "afn" = ( -/obj/item/reagent_container/spray/cleaner/drone{ - pixel_x = -3; - pixel_y = 6 - }, +/obj/structure/pipes/vents/pump, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "afp" = ( -/obj/structure/platform, -/turf/open/gm/river, -/area/lv522/oob) +/obj/structure/surface/rack, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = 6; + pixel_y = 11 + }, +/obj/item/clothing/head/hardhat/white, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "afr" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -199,11 +199,13 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) "afA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = 1; + pixel_y = 6 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "afI" = ( /obj/item/reagent_container/food/drinks/cans/beer{ pixel_x = -21; @@ -217,13 +219,16 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "afL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_x = -1; - pixel_y = 2 +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_y = 5 }, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) +/obj/item/tool/pen/blue/clicky, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "afX" = ( /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement/cement12, @@ -239,18 +244,21 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/bridge) -"ahs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) "ahH" = ( -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/east) +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters{ + pixel_y = 6 + }, +/obj/item/weapon/wirerod{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "ahJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/obj/structure/largecrate/random/case, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "ahP" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_street) @@ -294,9 +302,14 @@ /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) "aiO" = ( -/obj/structure/window_frame/corsat, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "E_B_Door"; + name = "\improper Emergency Blast Door"; + unacidable = 1 + }, +/turf/closed/wall/strata_outpost, +/area/lv522/oob) "aiP" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating, @@ -305,52 +318,41 @@ /turf/closed/wall/strata_outpost, /area/lv522/outdoors/colony_streets/central_streets) "ajw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/barricade/wooden{ + dir = 8 }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/north_command_centre) +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/oob) "ajM" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "E_B_Door"; - name = "\improper Emergency Blast Door"; - unacidable = 1 - }, -/turf/closed/wall/strata_outpost, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv522/oob) -"ajY" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) "akh" = ( /obj/structure/foamed_metal, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms/glass) "akk" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) +/turf/open/floor/prison/floor_plate, +/area/lv522/oob) "akl" = ( /obj/structure/barricade/wooden{ - dir = 8 + dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/oob) -"akn" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"akp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) "akM" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/oob) +/obj/item/tank/oxygen{ + pixel_x = 4; + pixel_y = 19 + }, +/obj/item/tool/mop{ + desc = "Unlock the power of Mop-Fu!"; + force = 35; + pixel_x = -12; + pixel_y = 24 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "akP" = ( /obj/structure/girder, /turf/open/asphalt/cement/cement3, @@ -360,33 +362,22 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) "alx" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/reactor_garage) "alI" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/lv522/oob) "alJ" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/oob) -"ama" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "amc" = ( /obj/structure/cargo_container/kelland/left, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) "ame" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/east_reactor) "amC" = ( /obj/structure/bed/roller, @@ -419,17 +410,24 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "ana" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/east) -"anb" = ( -/turf/open/floor/prison/cell_stripe, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/surface/table/almayer, +/obj/item/device/analyzer{ + pixel_x = -9; + pixel_y = 3 + }, +/obj/item/clipboard{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) "ann" = ( -/obj/structure/barricade/wooden{ - dir = 4 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 6 }, -/turf/open/floor/plating/plating_catwalk/prison, +/turf/open/floor/prison/floor_plate, /area/lv522/oob) "ans" = ( /obj/structure/surface/table/almayer, @@ -450,7 +448,7 @@ "anw" = ( /obj/structure/girder/displaced, /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "anG" = ( /obj/effect/decal/cleanable/dirt, @@ -487,10 +485,6 @@ /obj/structure/barricade/deployable, /turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"aox" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) "aoH" = ( /obj/structure/machinery/light, /obj/structure/machinery/disposal, @@ -501,9 +495,6 @@ /obj/structure/machinery/space_heater/radiator/red, /turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) -"apd" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/sewer) "ape" = ( /obj/structure/bed/chair{ dir = 4 @@ -525,16 +516,22 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) "apS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 6 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 16; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/oob) "aqo" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "aqH" = ( /obj/structure/prop/vehicles/crawler{ icon_state = "crawler_crate_alt2"; @@ -543,17 +540,17 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) "aqT" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "arh" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 6 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/oob) +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "arq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/trash/burger, @@ -564,25 +561,23 @@ /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/bridges/op_centre) "arN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/rack, -/obj/item/clothing/head/welding, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "arP" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + welded = 1 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/corsat/marked, +/area/lv522/oob) "arV" = ( /obj/structure/surface/table/almayer, /obj/item/storage/belt/utility, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"asn" = ( -/turf/closed/wall/strata_ice/dirty, -/area/lv522/outdoors/w_rockies) "asz" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -597,22 +592,12 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) "asH" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/west_reactor) "asI" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 6 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 16; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/oob) +/obj/item/clothing/head/hardhat, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "asZ" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, @@ -628,11 +613,9 @@ /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "atz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/area/lv522/atmos/east_reactor) "atL" = ( /obj/structure/closet/crate, /obj/structure/machinery/light/double{ @@ -643,24 +626,10 @@ /obj/item/tool/pickaxe/silver, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) -"atO" = ( -/obj/structure/prop/vehicles/crawler{ - dir = 8; - layer = 3.1; - pixel_x = 5; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) "atV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) +/obj/structure/largecrate/random, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "aue" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 8; @@ -674,10 +643,15 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel/far) "aut" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/north_command_centre) +/obj/item/trash/barcardine, +/obj/structure/largecrate/random/mini{ + pixel_x = -7; + pixel_y = 16 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/oob) "auG" = ( -/turf/open/auto_turf/shale/layer2, +/turf/open/floor/prison, /area/lv522/outdoors/nw_rockies) "avb" = ( /obj/item/stack/sheet/metal, @@ -696,12 +670,6 @@ /obj/item/stack/rods, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) -"awI" = ( -/obj/item/explosive/plastic/breaching_charge{ - unacidable = 1 - }, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) "awK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -728,27 +696,27 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) "axN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/trash/hotdog, +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = 8; + pixel_y = 19 }, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"axS" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = -2; + pixel_y = 19 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) +/obj/item/reagent_container/food/drinks/cans/souto{ + pixel_x = -11; + pixel_y = 12 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/oob) "ayn" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/hallway) -"ayX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "aza" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -763,7 +731,7 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security/glass) "azz" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "azE" = ( @@ -771,19 +739,22 @@ /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) "azF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/corpo/glass) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "azK" = ( /obj/item/prop/colony/used_flare, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) "aAb" = ( -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor) +/obj/item/trash/crushed_cup{ + pixel_y = 12 + }, +/obj/item/prop/colony/usedbandage{ + dir = 1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/oob) "aAI" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, @@ -812,15 +783,26 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "aCJ" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/filt) -"aCQ" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"aCR" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/obj/structure/largecrate/random/barrel{ + layer = 2.7 + }, +/obj/structure/largecrate/random/barrel{ + layer = 2.9; + pixel_x = 6; + pixel_y = -16 + }, +/obj/structure/largecrate/random/barrel{ + layer = 2.9; + pixel_x = -17; + pixel_y = -9 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/invuln/fire{ + pixel_x = -3; + pixel_y = 6 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "aCS" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/hazardvest, @@ -843,10 +825,11 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "aDj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) +/obj/item/prop/colony/usedbandage{ + dir = 10 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/oob) "aDs" = ( /obj/item/explosive/mine/active{ dir = 8 @@ -859,16 +842,18 @@ }, /turf/open/floor/plating, /area/shuttle/drop2/lv522) -"aDS" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) "aDZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - welded = 1 +/obj/item/ammo_box/magazine/misc/mre, +/obj/item/prop/colony/usedbandage{ + dir = 9; + pixel_x = 5; + pixel_y = 15 }, -/turf/open/floor/corsat/marked, +/obj/item/trash/tray{ + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/oob) "aEF" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -879,25 +864,9 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) "aEL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"aEM" = ( -/obj/structure/machinery/atm{ - name = "Weyland-Yutani Automatic Teller Machine"; - pixel_y = 30 - }, -/obj/structure/bed/chair{ - dir = 4; - pixel_x = 2; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +/obj/structure/cargo_container/kelland/left, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) "aER" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -913,12 +882,6 @@ }, /turf/open/floor/corsat/marked, /area/lv522/landing_zone_1/ceiling) -"aFA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) "aFN" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) @@ -932,12 +895,10 @@ /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) "aGg" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"aGy" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) +"aGy" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ dir = 8; @@ -954,9 +915,19 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) "aGI" = ( -/obj/structure/largecrate/random/case/double, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, +/obj/item/reagent_container/glass/bucket, +/obj/effect/decal/cleanable/blood/oil, +/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/corsat, /area/lv522/atmos/east_reactor) "aGQ" = ( /obj/effect/decal/cleanable/dirt, @@ -1016,11 +987,9 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "aIM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/reactor_garage) +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "aIY" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -1029,36 +998,20 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/west, /area/lv522/indoors/a_block/hallway) -"aJg" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/colony_streets/north_east_street) "aJr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) +/obj/item/tool/pen/clicky, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "aJS" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/far, /turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "aJT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "aKf" = ( /obj/structure/pipes/vents/pump, @@ -1075,27 +1028,26 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2) "aKK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "aKO" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, /turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) -"aKQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/cargo_intake) "aLf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/structure/machinery/m56d_hmg{ + dir = 8 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) "aLy" = ( /obj/structure/machinery/light{ dir = 4 @@ -1106,9 +1058,22 @@ /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "aLJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/obj/structure/largecrate/random/mini{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_y = 8 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/oob) +"aLY" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/gm/river, +/area/lv522/indoors/c_block/mining) "aMI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed{ @@ -1120,14 +1085,11 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "aNn" = ( -/obj/structure/transmitter/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Corporate"; - pixel_y = 26 +/obj/structure/bed/bedroll{ + dir = 10 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/oob) "aNr" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -1135,16 +1097,11 @@ /obj/effect/spider/spiderling/nogrow, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"aNw" = ( -/obj/item/prop/colony/used_flare, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) "aNI" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/item/trash/barcardine, +/obj/item/tool/weldingtool, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/oob) "aNP" = ( /turf/open/floor/strata/white_cyan3/southeast, /area/lv522/indoors/a_block/medical) @@ -1195,7 +1152,6 @@ /area/lv522/indoors/a_block/medical) "aQf" = ( /obj/structure/surface/table/almayer, -/obj/item/map/lv522_map, /turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_street) "aQs" = ( @@ -1209,14 +1165,6 @@ }, /turf/open/floor/corsat/marked, /area/lv522/landing_zone_1/tunnel/far) -"aQU" = ( -/obj/structure/machinery/computer/cameras{ - dir = 4; - network = null; - pixel_x = -16 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) "aRd" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -1233,12 +1181,9 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel/far) "aRH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/obj/item/stack/cable_coil, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "aRM" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -1287,17 +1232,12 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/landing_zone_2/ceiling) "aTA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "aTK" = ( -/obj/structure/prop/dam/truck/cargo{ - layer = 3.1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) +/turf/closed/wall/mineral/bone_resin, +/area/lv522/atmos/north_command_centre) "aTP" = ( /obj/structure/cargo_container/watatsumi/right, /turf/open/auto_turf/shale/layer1, @@ -1345,33 +1285,25 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"aVg" = ( -/obj/structure/platform/strata, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) -"aVj" = ( -/obj/structure/bed/chair{ +"aVo" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 }, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) -"aVo" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "aVs" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) +/obj/item/tool/wrench, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "aVt" = ( -/obj/item/pamphlet/skill/powerloader, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "aVA" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/barricade/wooden, @@ -1379,22 +1311,16 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) "aVD" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/corpo/glass) "aVF" = ( -/obj/structure/surface/table/almayer, -/obj/structure/dropship_equipment/fuel/cooling_system{ - layer = 3.5 - }, -/obj/item/clothing/glasses/welding{ - layer = 3.6; - pixel_x = 2; - pixel_y = 7 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) +/obj/structure/prop/ice_colony/ground_wire, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "aVX" = ( /obj/structure/ore_box, /turf/open/floor/plating, @@ -1420,11 +1346,11 @@ /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/central_streets) "aWu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "aWw" = ( /obj/structure/sink{ pixel_y = 15 @@ -1433,30 +1359,37 @@ /turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "aWz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor/north) +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "aWB" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurple2, /area/lv522/indoors/a_block/dorms) "aWJ" = ( -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/north) +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "aWT" = ( /obj/structure/surface/rack, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) -"aWX" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) "aXa" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/north) +/obj/structure/surface/rack, +/obj/item/clothing/mask/rebreather, +/obj/item/clothing/mask/rebreather{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "aXx" = ( /obj/item/weapon/twohanded/folded_metal_chair, /obj/structure/pipes/standard/simple/hidden/green, @@ -1473,12 +1406,6 @@ }, /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"aYd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) "aYg" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/surface/rack, @@ -1530,7 +1457,7 @@ pixel_x = 8; pixel_y = 5 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "aYO" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -1554,39 +1481,36 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) "aZD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/item/tank/emergency_oxygen{ + pixel_x = -6 + }, +/obj/item/tank/emergency_oxygen{ + pixel_y = 1 }, /turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "aZT" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin/wy{ - pixel_y = 8 - }, -/obj/item/tool/pen/clicky, -/obj/item/tool/pen/red/clicky{ - pixel_y = 6 +/obj/structure/machinery/disposal, +/obj/item/storage/firstaid/adv/empty{ + pixel_x = 3; + pixel_y = 13 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"aZU" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/effect/landmark/lv624/fog_blocker/short, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) "bag" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"ban" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"baG" = ( -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor/south) +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) "baN" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal/large_stack, @@ -1598,8 +1522,9 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "bbi" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/plating, +/obj/structure/closet/secure_closet/atmos_personal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "bbk" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -1612,13 +1537,13 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "bby" = ( -/obj/item/trash/barcardine, -/obj/structure/largecrate/random/mini{ - pixel_x = -7; - pixel_y = 16 +/obj/item/clothing/head/hardhat/dblue{ + layer = 6.1; + pixel_y = 15 }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/oob) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "bbz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -1630,31 +1555,21 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) "bbL" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "bce" = ( -/obj/item/trash/hotdog, -/obj/item/reagent_container/food/drinks/cans/souto{ - pixel_x = 8; - pixel_y = 19 - }, -/obj/item/reagent_container/food/drinks/cans/souto{ - pixel_x = -2; - pixel_y = 19 - }, -/obj/item/reagent_container/food/drinks/cans/souto{ - pixel_x = -11; - pixel_y = 12 +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/oob) +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "bcf" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/command_centre) "bcl" = ( /obj/structure/stairs/perspective{ dir = 6; @@ -1663,14 +1578,28 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) "bco" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/west_reactor) +/obj/item/stack/cable_coil/cut, +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating, +/area/lv522/atmos/east_reactor) "bcP" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/west_reactor) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "bcU" = ( -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/n_rockies) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) "bdi" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_marked/southwest, @@ -1684,9 +1613,9 @@ /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "bdv" = ( -/obj/structure/largecrate/random/case, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, +/obj/item/clothing/head/hardhat, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "bdH" = ( /obj/structure/bed/chair{ @@ -1702,9 +1631,6 @@ }, /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_street) -"bdX" = ( -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/nw_rockies) "bdY" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -1714,11 +1640,9 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "beb" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/north) +/obj/structure/prop/invuln/overhead/flammable_pipe/fly, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "beh" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -1755,12 +1679,20 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/corpo) "bet" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) +/obj/structure/machinery/door/poddoor/almayer{ + id = "E_B_Door"; + name = "\improper Emergency Blast Door"; + unacidable = 1 + }, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/oob) "bex" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/structure/largecrate/random, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "beB" = ( /turf/closed/wall/strata_outpost, @@ -1772,15 +1704,24 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/security) "bfn" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/north) +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/west) "bgc" = ( -/turf/open/floor/plating, -/area/lv522/atmos/cargo_intake) +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) "bgg" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/north) +/obj/item/tool/warning_cone{ + pixel_x = -10; + pixel_y = 11 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/west) "bgJ" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ id = "Sec-Kitchen-Lockdown"; @@ -1802,20 +1743,24 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) -"bgV" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/n_rockies) "bha" = ( -/obj/item/stack/rods, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "bhd" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/north) -"bhh" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/south) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) +"bhh" = ( +/obj/item/clothing/mask/rebreather{ + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "bhD" = ( /obj/structure/platform_decoration{ dir = 1 @@ -1824,9 +1769,11 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "bhL" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/north) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor) "bia" = ( /obj/structure/largecrate/supply/supplies/tables_racks, /turf/open/floor/plating/plating_catwalk/prison, @@ -1857,21 +1804,17 @@ /obj/item/trash/uscm_mre, /turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_street) -"bjd" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/atmos/sewer) -"bjC" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/oob/w_y_vault) "bjF" = ( /obj/effect/decal/cleanable/blood/xeno, /obj/effect/decal/cleanable/liquid_fuel, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/damage) "bjT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/n_rockies) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor) "bjX" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -1896,6 +1839,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan3/northwest, /area/lv522/indoors/a_block/medical/glass) +"bkg" = ( +/obj/structure/platform_decoration/strata{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/oob) "bkh" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan3/southwest, @@ -1921,12 +1870,13 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"bkE" = ( -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/lv522/outdoors/nw_rockies) "bkQ" = ( +/obj/item/stack/rods/plasteel, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, /turf/open/floor/corsat/squares, -/area/lv522/oob) +/area/lv522/atmos/east_reactor) "bkY" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/spade{ @@ -1968,15 +1918,17 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "bny" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/transmitter/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Reactor Garage"; - pixel_y = 26 +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "bnz" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -2002,19 +1954,17 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"bou" = ( -/obj/item/stack/tile/plasteel{ - name = "ceiling tile"; - pixel_x = -2; - pixel_y = 1 - }, -/obj/item/prop/colony/used_flare, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) "bow" = ( /obj/structure/machinery/light, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) +"boy" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/nw_rockies) "boQ" = ( /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 1 @@ -2023,9 +1973,12 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "bpD" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) +/obj/item/stack/cable_coil/cut, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/atmos/east_reactor) "bpN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -2057,19 +2010,26 @@ icon_state = "p_stair_full" }, /turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) +/area/lv522/outdoors/nw_rockies) "bsx" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) +/obj/item/stack/tile/plasteel{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "bsz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor) "bsG" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/bridge) @@ -2093,13 +2053,14 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/garden_bridge) "bvI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "bvK" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ dir = 1; @@ -2163,9 +2124,15 @@ /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "bwU" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/plate, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat, /area/lv522/atmos/east_reactor) +"bwW" = ( +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/nw_rockies) "bxn" = ( /obj/structure/bed/chair{ dir = 1 @@ -2187,20 +2154,25 @@ /turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "bxU" = ( -/obj/item/clothing/head/hardhat, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "bye" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor) +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "byu" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) +"byy" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "mining_shutter_2" + }, +/turf/open/floor/corsat/squares, +/area/lv522/indoors/c_block/mining) "byJ" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, @@ -2217,29 +2189,27 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "bzv" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/reactor_garage) -"bzC" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/atmos/cargo_intake) +/obj/structure/largecrate, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/west) "bzD" = ( -/obj/item/trash/crushed_cup{ - pixel_y = 12 - }, -/obj/item/prop/colony/usedbandage{ - dir = 1 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/oob) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/west) "bzL" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 }, -/turf/open/floor/plating, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) +"bzW" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/nw_rockies) "bAc" = ( /obj/structure/filingcabinet/seeds{ density = 0; @@ -2262,10 +2232,11 @@ /turf/open/floor/plating, /area/lv522/indoors/a_block/security) "bAo" = ( -/obj/item/prop/colony/usedbandage{ - dir = 10 - }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor/west) +"bAB" = ( +/obj/effect/landmark/lv624/fog_blocker/short, +/turf/closed/wall/strata_outpost, /area/lv522/oob) "bBe" = ( /obj/structure/machinery/light{ @@ -2290,21 +2261,11 @@ /area/lv522/indoors/a_block/fitness/glass) "bBB" = ( /obj/structure/cargo_container/grant/left, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) "bBF" = ( -/obj/item/ammo_box/magazine/misc/mre, -/obj/item/prop/colony/usedbandage{ - dir = 9; - pixel_x = 5; - pixel_y = 15 - }, -/obj/item/trash/tray{ - pixel_x = -16; - pixel_y = 13 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/oob) +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/west) "bBI" = ( /obj/item/stack/tile/plasteel{ name = "ceiling tile"; @@ -2313,9 +2274,6 @@ }, /turf/open/gm/river, /area/lv522/indoors/a_block/kitchen/damage) -"bBJ" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/reactor_garage) "bBW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -2326,12 +2284,9 @@ /turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_east_street) "bCd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/structure/tunnel, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor) "bCh" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/greenfull/east, @@ -2350,13 +2305,9 @@ /turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/south_street) "bCX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "bDk" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -2368,22 +2319,16 @@ /turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "bDr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor) "bDw" = ( -/obj/vehicle/powerloader{ - dir = 4; - layer = 3.5 - }, -/obj/structure/machinery/light{ +/obj/item/stack/tile/plasteel, +/obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, /turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/north) +/area/lv522/atmos/east_reactor) "bDI" = ( /obj/structure/machinery/light{ dir = 8 @@ -2397,11 +2342,12 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) "bDS" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/north) +/obj/item/stack/cable_coil/cut, +/turf/open/floor/plating, +/area/lv522/atmos/east_reactor) "bEk" = ( /obj/structure/bed/chair/comfy, -/turf/open/floor/strata/white_cyan1/east, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo/glass) "bFn" = ( /obj/item/tool/wet_sign{ @@ -2456,14 +2402,11 @@ /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) "bHa" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access = list(7,23,27) - }, -/obj/structure/machinery/light{ +/obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "bHg" = ( /turf/open/floor/strata/white_cyan3, /area/lv522/indoors/a_block/medical) @@ -2473,16 +2416,8 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) "bHA" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/nw_rockies) "bHF" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -2497,9 +2432,10 @@ /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "bIe" = ( -/obj/item/stack/sheet/metal, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/command_centre) "bIh" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin{ @@ -2510,8 +2446,9 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/mining) "bIr" = ( -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/north) +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor) "bID" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -2535,20 +2472,14 @@ }, /turf/open/floor/wood, /area/lv522/indoors/b_block/bar) -"bIJ" = ( -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/lv522/atmos/cargo_intake) "bIQ" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/corsat/plate, +/obj/item/device/analyzer, +/turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "bIY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/west_reactor) -"bJa" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/corpo/glass) +/obj/structure/cryofeed/right, +/turf/open/floor/bluegrid, +/area/lv522/atmos/east_reactor) "bJp" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -2568,17 +2499,18 @@ /turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "bJy" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/far, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"bJE" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_fuel"; - pixel_y = 5 +/obj/item/storage/toolbox/electrical{ + pixel_y = -6 + }, +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = -11; + pixel_y = 9 }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) +/area/lv522/atmos/reactor_garage) +"bJE" = ( +/turf/open/floor/corsat/brown, +/area/lv522/atmos/west_reactor) "bJG" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/reinforced/prison, @@ -2589,14 +2521,14 @@ /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "bJN" = ( -/obj/item/stack/folding_barricade, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/west_reactor) "bJY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - req_access_txt = "100" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/marked, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/way_in_command_centre) "bJZ" = ( /obj/structure/barricade/wooden{ @@ -2605,14 +2537,8 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) "bKb" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = 6; - pixel_y = 11 - }, -/obj/item/clothing/head/hardhat/white, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/west_reactor) "bKj" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/plasteel/small_stack, @@ -2621,21 +2547,16 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "bKk" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/cargo_intake) -"bKn" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_garage_1" - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"bKq" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 6 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"bKn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "bKO" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -2644,24 +2565,13 @@ /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/central_streets) "bLh" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop/on{ - pixel_x = 1; - pixel_y = 6 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) +/obj/structure/cargo_container/hd/mid/alt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) "bLk" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters{ - pixel_y = 6 - }, -/obj/item/weapon/wirerod{ - pixel_x = -3; - pixel_y = 3 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) +/obj/structure/cargo_container/hd/right/alt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) "bLA" = ( /obj/structure/platform_decoration{ dir = 4 @@ -2686,9 +2596,11 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "bMa" = ( -/obj/structure/largecrate/random/case, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) +/area/lv522/atmos/north_command_centre) "bMB" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -2729,30 +2641,19 @@ /turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "bNy" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Corporate Office Airlock"; - req_access_txt = "100" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "bNA" = ( /obj/structure/machinery/light, /turf/open/floor/prison/darkpurple2, /area/lv522/indoors/a_block/dorms) "bNE" = ( -/obj/item/tank/oxygen{ - pixel_x = 4; - pixel_y = 19 - }, -/obj/item/tool/mop{ - desc = "Unlock the power of Mop-Fu!"; - force = 35; - pixel_x = -12; - pixel_y = 24 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/north_command_centre) "bNJ" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -2767,22 +2668,16 @@ /turf/open/floor/plating/platingdmg3, /area/lv522/indoors/a_block/dorms) "bNT" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/north_command_centre) "bOv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "bOE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/filt) +/obj/structure/closet/crate/radiation, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) "bOM" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/vents/pump, @@ -2790,8 +2685,8 @@ /area/lv522/indoors/b_block/bar) "bOX" = ( /obj/effect/decal/cleanable/dirt, -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) "bPH" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -2827,7 +2722,7 @@ pixel_x = 8; pixel_y = 8 }, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) "bQl" = ( /obj/structure/window/framed/strata/reinforced, @@ -2836,23 +2731,17 @@ "bQq" = ( /obj/structure/cargo_container/grant/rightmid, /turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "bQA" = ( /obj/structure/largecrate/random, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel/far) "bQC" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/west) "bQG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/west) "bQN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -2869,8 +2758,9 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) "bRN" = ( -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/north_command_centre) +/obj/item/device/flashlight, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "bRP" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -2910,15 +2800,15 @@ /turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/op_centre) "bSM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/west_reactor) +/obj/structure/machinery/light, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "bSU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/command_centre) "bTo" = ( /obj/structure/stairs/perspective{ dir = 9; @@ -2945,7 +2835,7 @@ pixel_x = -6; pixel_y = 10 }, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "bTT" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -2972,20 +2862,12 @@ /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/north_east_street) "bUJ" = ( -/obj/structure/largecrate/random/mini{ - pixel_x = -2; - pixel_y = -3 - }, -/obj/item/prop/colony/usedbandage{ - dir = 5; - pixel_y = 8 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/oob) -"bUN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "bUO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/chair{ @@ -3017,21 +2899,19 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "bVF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) +/obj/item/tool/pen/red/clicky, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "bVG" = ( -/obj/structure/bed/bedroll{ - dir = 10 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/oob) +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "bVX" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) +/obj/item/clothing/gloves/yellow, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "bWd" = ( /obj/structure/flora/jungle/planttop1, /obj/structure/flora/bush/ausbushes/ppflowers, @@ -3043,14 +2923,11 @@ /turf/open/floor/prison/blue/west, /area/lv522/indoors/a_block/admin) "bWq" = ( -/obj/item/trash/barcardine, -/obj/item/tool/weldingtool, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/oob) -"bWt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "bWA" = ( /obj/structure/prop/ice_colony/flamingo{ dir = 4; @@ -3062,22 +2939,12 @@ }, /turf/open/organic/grass, /area/lv522/indoors/a_block/garden) -"bWQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/reactor_garage) "bWX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) -"bXl" = ( -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "bXo" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin{ @@ -3093,12 +2960,17 @@ /area/lv522/indoors/a_block/dorms) "bXq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + icon_state = "flammable_pipe_3"; + pixel_x = -18 + }, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/oob) "bXA" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/west) "bXO" = ( /obj/structure/bed/stool, /obj/effect/decal/cleanable/dirt, @@ -3118,9 +2990,9 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "bYd" = ( -/obj/structure/bed/chair/comfy, +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) +/area/lv522/atmos/east_reactor/west) "bYx" = ( /obj/structure/cargo_container/wy/right, /turf/open/floor/prison/floor_marked/southwest, @@ -3133,6 +3005,15 @@ "bYC" = ( /turf/open/shuttle/dropship/can_surgery/light_grey_top_right, /area/lv522/landing_zone_forecon/UD6_Tornado) +"bYM" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel/far) "bYS" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 4; @@ -3159,37 +3040,15 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) "bYZ" = ( -/obj/structure/bookcase{ - density = 0; - icon_state = "book-5"; - pixel_y = 16 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) -"bZd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "bZe" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/north) -"bZB" = ( -/obj/structure/girder/displaced, -/turf/open/floor/corsat, -/area/lv522/atmos/outdoor) -"bZF" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/north_command_centre) "bZK" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/indoors/lone_buildings/outdoor_bot) @@ -3210,19 +3069,8 @@ /turf/open/floor/prison/blue/west, /area/lv522/indoors/a_block/admin) "cac" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - icon_state = "flammable_pipe_3"; - pixel_x = 12; - pixel_y = 16 - }, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 4; - icon_state = "flammable_pipe_3"; - pixel_x = 12; - pixel_y = -4 - }, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/north_command_centre) "caf" = ( /obj/structure/surface/table/almayer, /obj/item/tool/minihoe{ @@ -3235,25 +3083,16 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "cay" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8; - pixel_y = 16 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/north_command_centre) "caE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) "caN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) +/obj/structure/powerloader_wreckage, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) "caP" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgibleg" @@ -3269,22 +3108,24 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/damage) "caV" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) +/obj/structure/ladder{ + height = 1; + icon_state = "ladder10"; + id = "hatch" + }, +/turf/open/floor/plating, +/area/lv522/oob) "cbp" = ( /obj/structure/machinery/squeezer, /turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "cbB" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 10; - pixel_y = 16 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) "cbR" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -3297,29 +3138,16 @@ /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) "cbY" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - icon_state = "flammable_pipe_3"; - pixel_y = 16 - }, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8; - icon_state = "flammable_pipe_3" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "cce" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/analyzer{ - pixel_x = -9; - pixel_y = 3 - }, -/obj/item/clipboard{ - pixel_x = 5; - pixel_y = 3 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/brown/north, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "cct" = ( /obj/structure/bed/chair/wood/normal, @@ -3327,36 +3155,36 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) "ccu" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/corsat/brown/northeast, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "ccN" = ( -/obj/item/reagent_container/glass/bucket, -/obj/effect/decal/cleanable/blood/oil, -/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 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "cdj" = ( -/obj/structure/largecrate/random, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"cdP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/machinery/light, /turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) +/area/lv522/atmos/east_reactor) +"cdP" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "E_B_Door"; + name = "\improper Emergency Blast Door"; + unacidable = 1 + }, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/oob) "cem" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -3377,29 +3205,25 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) "cfd" = ( -/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/darkyellowfull2/east, +/obj/structure/machinery/power/reactor/colony, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) "cfg" = ( -/obj/structure/prop/vehicles/crawler{ - dir = 8; - layer = 3.1 +/obj/structure/tunnel{ + pixel_x = 2; + pixel_y = -6 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/west_reactor) "cfv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/north_command_centre) +/obj/effect/landmark/xeno_spawn, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) "cfz" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper B-Block - Hydroponics Airlock" @@ -3410,6 +3234,10 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bridge) +"cfO" = ( +/obj/effect/landmark/lv624/fog_blocker/short, +/turf/open/asphalt/cement/cement9, +/area/lv522/outdoors/colony_streets/south_west_street) "cfT" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -3419,22 +3247,12 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) -"cgn" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) "cgB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) -"chm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/west_reactor) "cho" = ( /obj/item/weapon/gun/rifle/mar40/carbine, /turf/open/floor/plating/platebot, @@ -3446,44 +3264,26 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"chT" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/south) "cia" = ( /turf/open/floor/strata/white_cyan1, /area/lv522/indoors/lone_buildings/chunk) "cil" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) "cim" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "ciw" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor) "ciA" = ( /obj/structure/cargo_container/kelland/right, /turf/open/asphalt/cement/cement15, @@ -3496,14 +3296,16 @@ /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) "ciL" = ( -/obj/item/tool/pen/clicky, -/turf/open/floor/corsat/marked, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "ciS" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 9 }, -/turf/open/floor/corsat, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "cjb" = ( /obj/vehicle/train/cargo/engine{ @@ -3525,12 +3327,9 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/bridges/corpo) "cjE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "ckK" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1; @@ -3538,7 +3337,7 @@ }, /obj/structure/prop/invuln/ice_prefab, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "ckT" = ( /obj/item/weapon/gun/revolver/cmb, /obj/structure/pipes/standard/simple/hidden/green{ @@ -3554,8 +3353,8 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "clf" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat, +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "clR" = ( /obj/structure/stairs/perspective{ @@ -3580,11 +3379,11 @@ /turf/open/floor/strata/multi_tiles, /area/lv522/indoors/c_block/mining) "cmB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "cmC" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -3615,16 +3414,13 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "cnA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "cnN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/central_streets) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/north_command_centre) "col" = ( /obj/structure/machinery/suit_storage_unit{ pixel_x = -2 @@ -3643,14 +3439,9 @@ /turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/south_east_street) "cpn" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "E_B_Door"; - name = "\improper Emergency Blast Door"; - unacidable = 1 - }, -/obj/structure/blocker/invisible_wall, +/obj/effect/landmark/monkey_spawn, /turf/open/floor/corsat/marked, -/area/lv522/oob) +/area/lv522/atmos/east_reactor) "cpx" = ( /obj/structure/platform_decoration{ dir = 4 @@ -3672,7 +3463,7 @@ dir = 6; icon_state = "p_stair_full" }, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "cpJ" = ( /obj/structure/barricade/deployable{ @@ -3700,10 +3491,10 @@ /area/lv522/indoors/b_block/bridge) "cpZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "cqb" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -3716,7 +3507,7 @@ dir = 1 }, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "cqh" = ( /obj/structure/surface/table/almayer, /obj/item/newspaper, @@ -3727,9 +3518,11 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "cqr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/north) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/west_reactor) "cqs" = ( /obj/structure/machinery/light{ dir = 1 @@ -3744,21 +3537,30 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) "cqP" = ( -/obj/structure/bed/chair/comfy{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/west_reactor) +"cqW" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) "crm" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/flight_recorder{ - pixel_x = 9 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) "crH" = ( -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_street) +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "crM" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/powercell, @@ -3780,10 +3582,11 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "crX" = ( -/obj/structure/prop/ice_colony/ground_wire, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "csv" = ( /obj/structure/platform{ dir = 1 @@ -3792,10 +3595,11 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "csy" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor/south) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) "csC" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper C-Block - Garage Airlock" @@ -3804,25 +3608,15 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/garage) "csK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/north_command_centre) -"csS" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/area/lv522/atmos/east_reactor) "csU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "cte" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -3844,27 +3638,14 @@ /area/lv522/oob) "cuk" = ( /obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_east_street) -"cuu" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "cuF" = ( -/obj/item/tool/warning_cone{ - pixel_x = -10; - pixel_y = 11 - }, /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "cuY" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/prison/darkyellowfull2/east, @@ -3878,35 +3659,36 @@ "cvi" = ( /turf/open/floor/plating, /area/lv522/indoors/a_block/security) +"cvA" = ( +/obj/structure/platform_decoration/strata, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/oob) "cvP" = ( -/obj/item/prop/colony/canister{ - pixel_y = 7 +/obj/structure/shuttle/engine/heater{ + dir = 4; + pixel_x = 4 }, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 4; + icon_state = "flammable_pipe_3"; + pixel_x = 2 + }, +/turf/closed/wall/mineral/bone_resin, +/area/lv522/oob) "cwe" = ( /obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "cwq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"cwr" = ( -/obj/structure/machinery/deployable/barrier, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) "cwE" = ( -/obj/structure/largecrate/random/secure, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/north_command_centre) "cwL" = ( /turf/closed/wall/shiva/prefabricated, /area/lv522/landing_zone_2) @@ -3915,11 +3697,10 @@ dir = 10 }, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "cwO" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/north_command_centre) "cxn" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 8; @@ -3942,9 +3723,8 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "cxu" = ( -/obj/item/stack/cable_coil, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/north_command_centre) "cxv" = ( /turf/open/asphalt/cement/cement14, /area/lv522/outdoors/colony_streets/south_west_street) @@ -3957,9 +3737,8 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "cxE" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor) "cxK" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, @@ -3971,9 +3750,9 @@ /turf/open/floor/prison/blue/northwest, /area/lv522/indoors/a_block/admin) "cyl" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) "cys" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -3983,18 +3762,12 @@ "cyt" = ( /turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) -"cyu" = ( +"cyv" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/machinery/light, /turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"cyv" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) +/area/lv522/atmos/north_command_centre) "cyH" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 4 @@ -4002,10 +3775,8 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "cyO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) +/turf/closed/wall/mineral/bone_resin, +/area/lv522/atmos/east_reactor/west) "cyV" = ( /obj/structure/machinery/light{ dir = 1 @@ -4029,8 +3800,12 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "czC" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/atmos/east_reactor/east) +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "czE" = ( /obj/item/stack/sheet/metal, /turf/open/floor/plating, @@ -4046,8 +3821,12 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) "czO" = ( -/obj/structure/blocker/invisible_wall, -/obj/item/pamphlet/skill/powerloader, +/obj/item/pamphlet/skill/powerloader{ + layer = 2.9; + pixel_y = -8; + pixel_x = 9 + }, +/obj/structure/largecrate/random/case/double, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "czT" = ( @@ -4058,7 +3837,7 @@ dir = 10; icon_state = "p_stair_full" }, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "czW" = ( /obj/structure/barricade/wooden{ @@ -4069,9 +3848,9 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) "cAp" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor) +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) "cAx" = ( /obj/structure/filingcabinet{ density = 0; @@ -4087,26 +3866,24 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "cAy" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) "cAW" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/item/device/radio{ + pixel_x = 9; + pixel_y = -10 + }, +/turf/open/floor/prison/floor_marked, +/area/lv522/indoors/lone_buildings/engineering) "cBi" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/north_command_centre) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/west_reactor) "cBs" = ( /obj/item/tool/extinguisher, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) -"cBU" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_covered_bed" - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) "cBV" = ( /obj/effect/decal/cleanable/cobweb2, /turf/open/floor/prison/darkredfull2, @@ -4118,33 +3895,35 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/kitchen) "cCC" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/plate, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, /area/lv522/atmos/north_command_centre) "cCH" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) "cCK" = ( /obj/structure/machinery/disposal, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"cCL" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) "cCN" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) "cCQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/north_command_centre) -"cDh" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/north) +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) +"cDh" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/west_reactor) "cDi" = ( /obj/structure/platform_decoration{ dir = 4 @@ -4156,8 +3935,11 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) "cDo" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/north) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/west_reactor) "cDp" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/asphalt/cement/cement9, @@ -4187,25 +3969,26 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "cEw" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/north) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/west_reactor) "cEx" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool{ - pixel_x = -7; - pixel_y = 3 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/west_reactor) "cEM" = ( -/obj/item/tool/warning_cone{ - pixel_x = -10; - pixel_y = 3 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) "cEN" = ( /obj/structure/bed/bedroll{ dir = 10 @@ -4217,26 +4000,28 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) "cFv" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/north_command_centre) "cFP" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/north) +/area/lv522/atmos/north_command_centre) "cFR" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) "cFW" = ( /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "cGd" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/east) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor/west) "cGw" = ( /obj/structure/machinery/light{ dir = 8 @@ -4253,12 +4038,11 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "cGY" = ( -/obj/item/tool/wrench, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/west) "cHb" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -4271,25 +4055,15 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) "cHj" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"cHu" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - welded = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) "cHw" = ( /obj/structure/largecrate/random, /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) -"cHy" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/atmos/east_reactor/south) "cHC" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -4303,8 +4077,10 @@ /turf/open/floor/plating/platingdmg3/west, /area/lv522/indoors/a_block/dorms) "cHL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/west, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/bluegrid, /area/lv522/atmos/east_reactor) "cIe" = ( /obj/structure/surface/rack, @@ -4327,8 +4103,9 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "cIm" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/east_reactor/east) +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "cIo" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -4337,15 +4114,17 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/cargo) "cIr" = ( -/obj/structure/bed/chair{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/east_reactor) "cIs" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "cIA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/trash/plate{ @@ -4388,52 +4167,46 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) +"cIS" = ( +/obj/item/weapon/gun/rifle/sniper/M42A{ + current_mag = null + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "cIV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/east) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) "cIW" = ( -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/east) +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "cIX" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/obj/item/device/radio/marine{ - pixel_x = 10; - pixel_y = 22 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/oob) +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "cJh" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/oob) +/obj/structure/cargo_container/arious/right, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "cJm" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 }, /turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "cJo" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/closet/crate, /turf/open/floor/corsat/plate, /area/lv522/atmos/north_command_centre) "cJy" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "cJA" = ( -/obj/item/device/flashlight/lamp/tripod{ - layer = 6; - pixel_y = 11 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) +/obj/structure/largecrate, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "cJF" = ( /obj/structure/platform_decoration{ dir = 8 @@ -4471,58 +4244,49 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) "cKp" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/plating, -/area/lv522/atmos/east_reactor/north) -"cKw" = ( -/obj/structure/girder, -/turf/open/floor/corsat, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/west) +"cKw" = ( +/obj/item/fuel_cell{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor) "cKy" = ( /obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/west) +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor) "cKC" = ( -/obj/structure/girder/displaced, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/west) +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) "cKF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) "cKG" = ( -/turf/closed/wall/strata_ice/dirty, -/area/lv522/outdoors/nw_rockies) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) "cKQ" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/item/fuel_cell{ + pixel_x = -8; + pixel_y = -2 }, -/turf/open/floor/corsat, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/east_reactor) "cKS" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/rebreather, -/obj/item/clothing/mask/rebreather{ - pixel_x = 5; - pixel_y = -4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) "cLb" = ( -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/east_reactor/east) +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/cheeseburger, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "cLi" = ( /obj/structure/barricade/deployable{ dir = 8 @@ -4552,29 +4316,18 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) -"cLH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "cLQ" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/op_centre) "cMc" = ( -/obj/item/clothing/head/hardhat, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "cMq" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/diamond{ - amount = 2 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "cMt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -4595,27 +4348,25 @@ "cMQ" = ( /turf/open/floor/strata/white_cyan4/east, /area/lv522/indoors/a_block/medical/glass) -"cMW" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/reactor_garage) "cNB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/east) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "cNO" = ( -/obj/structure/machinery/colony_floodlight_switch{ - pixel_y = 30 - }, -/turf/open/floor/plating, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/obj/effect/spawner/random/powercell, +/turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) "cNQ" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/filt) +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "cNU" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -4624,25 +4375,25 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway/damage) "cNV" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/atmos/north_command_centre) +/obj/structure/prop/server_equipment/yutani_server, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "cOA" = ( +/obj/structure/closet/crate, +/obj/item/storage/xeno_tag_case, +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/indoors/lone_buildings/storage_blocks) -"cOJ" = ( +"cOZ" = ( +/obj/structure/prop/server_equipment/yutani_server/off, /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"cOZ" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) +/area/lv522/atmos/command_centre) "cPg" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/bronze{ @@ -4653,37 +4404,31 @@ /obj/item/toy/plush/farwa, /turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"cPi" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) "cPx" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/corsat, -/area/lv522/atmos/filt) +/obj/structure/prop/server_equipment/yutani_server/broken, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "cPy" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/filt) -"cPN" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - pixel_y = 6 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/oob) -"cPO" = ( +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) +"cPN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/oob) +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/command_centre) +"cPO" = ( +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/command_centre) "cPU" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/browncorner/east, -/area/lv522/oob) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) "cPY" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/head/hardhat, @@ -4694,21 +4439,9 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "cQc" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - desc = "You think you can make out the iconography of a Xenomorph."; - icon_state = "3" - }, -/obj/structure/machinery/computer/cameras/wooden_tv{ - pixel_y = 29 - }, -/obj/item/prop{ - desc = "Something about a research lab."; - icon = 'icons/obj/items/paper.dmi'; - icon_state = "folder_black"; - name = "USCM classified intelligence folder" - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/oob) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "cQm" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/backpack/marine/satchel{ @@ -4723,16 +4456,22 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) "cQB" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/transmitter/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Reactor Central Office"; + pixel_y = 26 }, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "cQS" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 24 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "cQW" = ( /obj/structure/machinery/light{ dir = 1 @@ -4753,34 +4492,41 @@ /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/central_streets) "cRD" = ( +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "bee" + }, +/turf/open/floor/corsat/plate, +/area/lv522/oob/w_y_vault) +"cRG" = ( /obj/structure/blocker/forcefield/vehicles, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/south) -"cRG" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/browncorner/east, -/area/lv522/oob) "cRL" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - pixel_y = 6 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/oob) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "cRN" = ( -/obj/structure/largecrate, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/north_east_street) -"cRT" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/east) -"cSb" = ( -/obj/structure/largecrate, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) +/area/lv522/atmos/east_reactor/south) +"cRT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/prop/server_equipment/laptop/on{ + layer = 3.1; + pixel_y = 10 + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) +"cSb" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "cSf" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper C-Block - Cargo Airlock" @@ -4789,9 +4535,9 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/cargo) "cSh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) "cSO" = ( /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) @@ -4802,24 +4548,31 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "cTf" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/obj/item/prop/alien/hugger, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/command_centre) "cTz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "cTU" = ( -/obj/structure/curtain/red, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/command_centre) "cTX" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/command_centre) "cTZ" = ( /obj/structure/bed/chair{ dir = 1 @@ -4831,55 +4584,36 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/casino) "cUg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/command_centre) "cUh" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/command_centre) "cUl" = ( -/obj/item/stack/cable_coil/cut, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/command_centre) "cUx" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "cUA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "cUG" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/c_block/garage) @@ -4892,33 +4626,25 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/t_comm) "cVc" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) "cVe" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "cVm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/east_reactor) +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/west_reactor) "cVy" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "cVR" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -4926,8 +4652,8 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "cWf" = ( -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/command_centre) "cWg" = ( /obj/item/clothing/shoes/jackboots{ pixel_x = -6; @@ -4951,13 +4677,9 @@ }, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) -"cWH" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) "cWL" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/east) +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/command_centre) "cWS" = ( /obj/structure/platform{ dir = 4 @@ -4985,18 +4707,15 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "cWZ" = ( -/obj/structure/blocker/forcefield/vehicles, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/command_centre) "cXf" = ( /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "cXi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/command_centre) "cXm" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, @@ -5015,13 +4734,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"cYe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) "cYf" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, /obj/item/reagent_container/food/condiment/enzyme, @@ -5029,10 +4741,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) -"cYn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) "cYE" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ @@ -5042,9 +4750,11 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "cYF" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/command_centre) "cYG" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ @@ -5054,9 +4764,11 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/op_centre) "cYQ" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/east) +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/command_centre) "cZb" = ( /obj/structure/filingcabinet{ density = 0; @@ -5073,60 +4785,49 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "cZu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -9; - pixel_y = 20 +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 7; - pixel_y = 20 +/obj/item/stack/tile/plasteel, +/obj/item/tool/wirecutters{ + pixel_x = -12; + pixel_y = -13 }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/east) -"cZH" = ( -/obj/structure/blocker/invisible_wall, /turf/open/floor/plating, -/area/lv522/atmos/sewer) +/area/lv522/atmos/command_centre) +"cZH" = ( +/obj/item/clothing/suit/storage/marine/light, +/turf/closed/wall/mineral/bone_resin, +/area/lv522/oob) "cZM" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/obj/item/clothing/head/hardhat{ + pixel_x = 17 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/command_centre) "cZN" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "cZQ" = ( /obj/structure/machinery/photocopier, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "dah" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -9; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 7; - pixel_y = 20 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/east) +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/command_centre) "dak" = ( /obj/structure/machinery/light, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/op_centre) "daq" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - desc = "You think you can make out the iconography of a Xenomorph."; - icon_state = "2" - }, -/obj/item/storage/belt/gun/m44/custom, -/turf/open/floor/corsat/brown/west, -/area/lv522/oob) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/cargo_intake) "das" = ( /obj/structure/machinery/landinglight/ds1/delayone, /turf/open/floor/plating, @@ -5137,7 +4838,7 @@ pixel_y = 16 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "daB" = ( /obj/structure/machinery/light{ @@ -5148,31 +4849,55 @@ /area/lv522/indoors/c_block/casino) "daG" = ( /obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_west_street) "daL" = ( -/obj/item/clothing/under/marine/reconnaissance, -/turf/open/floor/corsat/squares, -/area/lv522/oob) +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/command_centre) "dbc" = ( -/turf/closed/wall/solaris/reinforced/hull/lv522, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/command_centre) "dbi" = ( -/obj/item/clothing/suit/storage/marine/medium/leader, -/obj/item/clothing/head/helmet/marine/leader{ +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/command_centre) +"dbs" = ( +/obj/item/stack/sheet/wood{ + pixel_x = -5; + pixel_y = -10 + }, +/obj/item/stack/sheet/wood{ + layer = 2.7; + pixel_y = 8 + }, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + layer = 3.1; + pixel_x = -11; + pixel_y = -6 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 4; + pixel_y = 17 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + layer = 3.1; + pixel_x = 15; + pixel_y = 17 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + layer = 3.1; pixel_x = 9; - pixel_y = 14 + pixel_y = 1 }, -/turf/open/floor/corsat/plate, -/area/lv522/oob) -"dbs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "dbt" = ( -/obj/item/reagent_container/food/snacks/meat/human, -/turf/open/floor/corsat/squares, -/area/lv522/oob) +/obj/item/prop/alien/hugger, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/command_centre) "dbF" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/surface/table/almayer{ @@ -5211,9 +4936,9 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) "dbX" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/corsat/squares, -/area/lv522/oob) +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/command_centre) "dcc" = ( /obj/structure/cargo_container/kelland/left, /obj/structure/pipes/standard/simple/hidden/green{ @@ -5222,32 +4947,65 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) "dci" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/oob) +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/command_centre) "dck" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/ceramic_plate{ - pixel_y = 6 +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/item/trash/ceramic_plate{ - pixel_y = 8 +/obj/structure/prop/almayer/computers/sensor_computer1, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Marked_1"; + name = "remote door-control"; + pixel_x = -7; + pixel_y = 16 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Marked_2"; + name = "remote door-control"; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/oob/w_y_vault) "dco" = ( /obj/structure/cargo_container/grant/right, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "dcy" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/prop/almayer/computers/sensor_computer2, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Marked_3"; + name = "remote door-control"; + pixel_x = -6; + pixel_y = 16 + }, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Marked_6"; + name = "remote door-control"; + pixel_x = 7; + pixel_y = 16 + }, +/obj/structure/window/reinforced{ dir = 8 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Marked_7"; + name = "remote door-control"; + pixel_x = 7; + pixel_y = -2 + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/oob/w_y_vault) "dcD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/west) +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/oob/w_y_vault) "dcF" = ( /obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/corsat/marked, @@ -5265,28 +5023,21 @@ }, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"dcM" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/alien/resin/sticky, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "dcR" = ( /obj/structure/cargo_container/grant/right, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "ddo" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal{ - amount = 50; - pixel_x = 4; - pixel_y = 4 +/obj/structure/window/reinforced{ + dir = 8 }, -/obj/item/stack/sheet/metal{ - amount = 30 +/obj/structure/prop/almayer/computers/sensor_computer1, +/obj/item/device/radio/marine{ + pixel_x = 10; + pixel_y = 22 }, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/brown/northwest, +/area/lv522/oob/w_y_vault) "ddr" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/bottle/davenport{ @@ -5295,9 +5046,6 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"ddy" = ( -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/cargo_intake) "ddC" = ( /obj/structure/filingcabinet{ density = 0; @@ -5310,7 +5058,7 @@ pixel_y = 19 }, /obj/item/trash/uscm_mre, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "ddK" = ( /obj/structure/filingcabinet/chestdrawer{ @@ -5342,9 +5090,9 @@ /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) "ddN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/west) +/obj/item/tool/crowbar, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/command_centre) "ddP" = ( /obj/structure/surface/table/almayer{ dir = 8; @@ -5354,24 +5102,18 @@ /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "ddS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/west) -"dek" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 }, -/obj/structure/cargo_container/ferret/right, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/command_centre) +"dek" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/command_centre) "del" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/west) +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/command_centre) "den" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -5393,9 +5135,9 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) "dfn" = ( -/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/landmark/monkey_spawn, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) +/area/lv522/atmos/command_centre) "dfE" = ( /obj/structure/filingcabinet{ density = 0; @@ -5423,12 +5165,6 @@ /obj/effect/spawner/gibspawner/human, /turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) -"dfK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) "dfV" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper A-Block Dorms And Office Airlock"; @@ -5437,10 +5173,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) -"dgb" = ( -/obj/structure/cryofeed, -/turf/open/floor/bluegrid, -/area/lv522/atmos/east_reactor) "dgd" = ( /turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/north_east_street) @@ -5452,26 +5184,23 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "dgq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/east_reactor/east) +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "dgI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/west_reactor) +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "dgJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/cargo_intake) +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/command_centre) "dgO" = ( -/obj/structure/tunnel, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor) +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/command_centre) "dgR" = ( /obj/structure/machinery/conveyor{ dir = 8; @@ -5494,45 +5223,45 @@ "dhH" = ( /turf/open/asphalt/cement/cement12, /area/lv522/landing_zone_2) -"dhJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) "dhP" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, /turf/open/floor/plating, /area/lv522/landing_zone_1) -"dhQ" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo/glass) "dhW" = ( -/obj/item/stack/tile/plasteel, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + pixel_y = 6 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/brown/northwest, +/area/lv522/oob/w_y_vault) "dhX" = ( -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plating, -/area/lv522/atmos/east_reactor) +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/browncorner/east, +/area/lv522/oob/w_y_vault) "dio" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "3" }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"dip" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 +/obj/structure/machinery/computer/cameras/wooden_tv{ + pixel_y = 29 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) +/obj/item/prop{ + desc = "Something about a research lab."; + icon = 'icons/obj/items/paper.dmi'; + icon_state = "folder_black"; + name = "USCM classified intelligence folder" + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/oob/w_y_vault) +"dip" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/browncorner/east, +/area/lv522/oob/w_y_vault) "dit" = ( /obj/structure/machinery/floodlight, /obj/structure/machinery/light{ @@ -5554,15 +5283,15 @@ /turf/open/floor/strata/white_cyan3, /area/lv522/indoors/a_block/medical) "djm" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) "djq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/filt) +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + pixel_y = 6 + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/oob/w_y_vault) "djD" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp/on{ @@ -5610,9 +5339,15 @@ /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) "dkC" = ( -/obj/structure/cryofeed/right, -/turf/open/floor/bluegrid, -/area/lv522/atmos/east_reactor) +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "dkJ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ @@ -5624,24 +5359,31 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/landing_zone_2/ceiling) "dkL" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/east) +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "dkP" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - pixel_y = 6 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 }, -/turf/open/floor/corsat/brown/west, -/area/lv522/oob) +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "dkX" = ( /obj/structure/platform_decoration, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) "dli" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/command_centre) "dlC" = ( /obj/structure/prop/invuln/fire{ pixel_x = 8; @@ -5683,28 +5425,16 @@ /turf/open/floor/corsat/plate, /area/lv522/indoors/c_block/mining) "dmE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - icon_state = "pottedplant_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_y = 12 +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" }, -/turf/open/floor/corsat/plate, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "dmG" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/command_centre) "dne" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -5717,18 +5447,11 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "dng" = ( -/obj/effect/decal/hefa_cult_decals/d96{ - desc = "You think you can make out the iconography of a Xenomorph?" - }, -/obj/effect/decal/hefa_cult_decals/d32{ - desc = "You think you can make out the iconography of a Xenomorph."; - icon_state = "bee" - }, -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Captain Hashim ibn Al-Waqqas" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat/plate, -/area/lv522/oob) +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) "dni" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb2, @@ -5744,19 +5467,20 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "dnB" = ( -/obj/item/clothing/head/helmet/marine/pilot, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, /turf/open/floor/corsat/squares, -/area/lv522/oob) +/area/lv522/atmos/cargo_intake) "dnD" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "dnG" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - pixel_y = 6 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/oob) +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/meson, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "dnM" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, @@ -5767,9 +5491,6 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel/far) -"dnQ" = ( -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/west_reactor) "dnX" = ( /obj/structure/surface/table/almayer, /obj/item/tool/kitchen/rollingpin, @@ -5786,13 +5507,13 @@ /turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "doj" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "2" }, -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) +/obj/item/storage/belt/gun/m44/custom, +/turf/open/floor/corsat/brown/west, +/area/lv522/oob/w_y_vault) "doq" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, /obj/structure/pipes/standard/simple/hidden/green, @@ -5815,26 +5536,31 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) "doC" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/west_reactor) +/obj/item/clothing/under/marine/reconnaissance, +/turf/open/floor/corsat/squares, +/area/lv522/oob/w_y_vault) "doF" = ( -/obj/structure/barricade/deployable{ - dir = 1 +/obj/structure/machinery/conveyor{ + dir = 10; + id = "cargo_container" }, -/turf/open/floor/prison, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "doP" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/west_reactor) +/obj/item/clothing/suit/storage/marine/medium/leader, +/obj/item/clothing/head/helmet/marine/leader{ + pixel_x = 9; + pixel_y = 14 + }, +/turf/open/floor/corsat/plate, +/area/lv522/oob/w_y_vault) "dpg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/west_reactor) +/obj/item/reagent_container/food/snacks/meat/human, +/turf/open/floor/corsat/squares, +/area/lv522/oob/w_y_vault) "dpj" = ( -/obj/structure/cargo_container/hd/mid/alt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) +/turf/open/floor/corsat/brown/east, +/area/lv522/oob/w_y_vault) "dpk" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1; @@ -5843,26 +5569,18 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) "dpz" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/area/lv522/atmos/command_centre) "dpS" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "dqr" = ( -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/prison, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/west, /area/lv522/atmos/cargo_intake) "dqB" = ( /turf/open/asphalt/cement/cement2, @@ -5905,9 +5623,12 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "drS" = ( -/obj/structure/cargo_container/hd/right/alt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/corsat/brown/west, +/area/lv522/oob/w_y_vault) "drV" = ( /obj/structure/machinery/light{ dir = 8 @@ -5929,10 +5650,6 @@ }, /turf/open/floor/strata/floor3/east, /area/lv522/landing_zone_2/ceiling) -"dsc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) "dsl" = ( /obj/structure/stairs/perspective{ dir = 10; @@ -5941,13 +5658,8 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) "dsq" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/iron{ - amount = 5 - }, -/obj/item/stack/sheet/mineral/platinum, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/oob/w_y_vault) "dsu" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, @@ -5996,9 +5708,18 @@ /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "dtr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) +/obj/effect/decal/hefa_cult_decals/d96{ + desc = "You think you can make out the iconography of a Xenomorph?" + }, +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "bee" + }, +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Captain Hashim ibn Al-Waqqas" + }, +/turf/open/floor/corsat/plate, +/area/lv522/oob/w_y_vault) "dtE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname, @@ -6009,12 +5730,13 @@ /area/lv522/indoors/c_block/casino) "dtR" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) +/obj/item/prop/alien/hugger, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "dtU" = ( /obj/effect/spawner/gibspawner/human, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "dua" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/colony/used_flare, @@ -6026,11 +5748,11 @@ /turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) "duN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + pixel_y = 6 }, /turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/west) +/area/lv522/oob/w_y_vault) "dvn" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper B-Block - Hydroponics Airlock" @@ -6067,13 +5789,22 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) "dwG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/west_reactor) +/obj/structure/machinery/conveyor{ + dir = 5; + id = "cargo_container" + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "dwI" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "dwO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, @@ -6093,36 +5824,32 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/t_comm) "dwP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/north_command_centre) +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "dwX" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) -"dxc" = ( -/obj/structure/prop/invuln/overhead_pipe{ - name = "overhead pipe"; - pixel_x = -20; - pixel_y = 13 - }, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/atmos/east_reactor/south) "dxl" = ( /obj/effect/decal/cleanable/flour, /turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "dxJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "dxU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, +/turf/open/floor/corsat/browncorner/east, /area/lv522/atmos/west_reactor) "dxY" = ( /obj/structure/machinery/computer/telecomms/server{ @@ -6134,13 +5861,22 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "dya" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) -"dyl" = ( -/obj/structure/largecrate, +/obj/structure/cargo_container/horizontal/blue/top, +/obj/structure/machinery/light{ + dir = 1 + }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) +/area/lv522/atmos/cargo_intake) +"dyl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) "dyH" = ( /obj/structure/barricade/wooden, /turf/open/floor/shiva/radiator_tile2, @@ -6167,36 +5903,34 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "dzv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/largecrate/random/barrel/white, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) "dzB" = ( /obj/structure/curtain/red, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/casino) -"dAf" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_y = 5 +"dAm" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/tool/pen/blue/clicky, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"dAm" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/north_command_centre) +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) "dAG" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/south) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/cargo_intake) "dAQ" = ( /obj/structure/platform_decoration{ dir = 1 @@ -6242,12 +5976,9 @@ /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/north_east_street) "dBe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/machinery/light{ - dir = 1 - }, +/obj/structure/machinery/vending/snack/packaged, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) +/area/lv522/atmos/cargo_intake) "dBi" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, @@ -6260,9 +5991,9 @@ /turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) "dBC" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/corsat/plate, +/area/lv522/oob/w_y_vault) "dBD" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -6271,15 +6002,19 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) "dCx" = ( -/obj/structure/closet/crate/radiation, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) +/obj/item/prop/helmetgarb/lucky_feather{ + pixel_x = 11; + pixel_y = 10 + }, +/obj/item/device/implanter/subdermal_armor, +/turf/open/floor/corsat/plate, +/area/lv522/oob/w_y_vault) "dCJ" = ( /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/east_central_street) "dCT" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness/glass) "dCY" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -6300,26 +6035,35 @@ /turf/closed/wall/shiva/prefabricated, /area/lv522/landing_zone_2/ceiling) "dDC" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/west) +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph."; + icon_state = "4" + }, +/obj/item/clothing/under/marine/officer/pilot/flight, +/obj/item/clothing/suit/storage/jacket/marine/pilot{ + layer = 3.1; + pixel_y = 2 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/oob/w_y_vault) "dDF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/filt) -"dDS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/conveyor{ + dir = 5; + id = "cargo_container" }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"dEc" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"dDS" = ( +/obj/structure/largecrate, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/cargo_intake) "dEk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) "dEm" = ( /obj/structure/closet, /turf/open/floor/prison, @@ -6349,20 +6093,13 @@ pixel_y = 13 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "dEL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) -"dEM" = ( -/obj/structure/barricade/deployable{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) "dEP" = ( /obj/structure/closet/crate/trashcart, @@ -6412,24 +6149,23 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "dFR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/area/lv522/atmos/cargo_intake) "dFT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, /turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/area/lv522/atmos/cargo_intake) "dFY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1 +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/obj/structure/machinery/light, /turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/area/lv522/atmos/cargo_intake) "dGp" = ( /obj/structure/cargo_container/horizontal/blue/middle{ layer = 3.1 @@ -6448,28 +6184,42 @@ /area/lv522/outdoors/colony_streets/south_street) "dGK" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/east, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) "dGV" = ( -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/west) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/cargo_intake) "dHc" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/west) +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "dHg" = ( /obj/item/prop/colony/used_flare, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "dHj" = ( -/obj/item/device/flashlight, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/obj/structure/machinery/space_heater, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 5; + pixel_y = 9 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "dHk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/bed/chair/comfy{ dir = 4 }, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) "dHy" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -6492,11 +6242,9 @@ /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_east_street) "dHR" = ( -/obj/structure/cargo_container/horizontal/blue/top{ - pixel_x = 16 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/obj/item/storage/box/guncase/m3717, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/oob/w_y_vault) "dIi" = ( /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/floor/prison, @@ -6545,12 +6293,11 @@ /turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/garden_bridge) "dIX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Ensign Robert 'Roach' Yangley" }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/browncorner, +/area/lv522/oob/w_y_vault) "dJp" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -6558,13 +6305,21 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "dJs" = ( -/obj/item/tool/pen/red/clicky, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + pixel_y = 6 + }, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/oob/w_y_vault) "dJt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/structure/machinery/conveyor{ + dir = 5; + id = "cargo_container" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "dJB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/reinforced/prison, @@ -6572,14 +6327,19 @@ /turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "dJJ" = ( -/obj/structure/cargo_container/horizontal/blue/middle{ - pixel_x = 16 +/obj/structure/machinery/conveyor{ + dir = 5; + id = "cargo_container" }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/cargo_intake) "dJN" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/east) +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) "dKd" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -6589,55 +6349,62 @@ /area/lv522/indoors/c_block/garage) "dKC" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness/glass) "dKF" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/east) +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" + }, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/cargo_intake) "dKM" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/east) -"dKO" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/east_reactor/east) -"dLf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) +"dKO" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "dLq" = ( -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Staff Sergeant Thomas 'Dog' Smith" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/corsat/squares, -/area/lv522/oob) +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) "dLs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) "dLz" = ( -/obj/effect/decal/cleanable/blood/gibs, -/turf/open/floor/corsat/plate, -/area/lv522/oob) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) "dLC" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) "dLZ" = ( -/obj/item/storage/box/guncase/m3717, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/oob) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) "dMb" = ( -/obj/item/prop/helmetgarb/lucky_feather{ - pixel_x = 11; - pixel_y = 10 - }, -/obj/item/device/implanter/subdermal_armor, -/turf/open/floor/corsat/plate, -/area/lv522/oob) +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/cargo_intake) "dMl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -6654,28 +6421,18 @@ }, /obj/effect/decal/cleanable/dirt, /mob/living/simple_animal/mouse, -/turf/open/floor/strata/white_cyan2/west, +/turf/open/floor/strata/white_cyan2, /area/lv522/indoors/a_block/executive) -"dMu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/west_reactor) "dMy" = ( /obj/structure/cargo_container/kelland/left, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "dMN" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - desc = "You think you can make out the iconography of a Xenomorph."; - icon_state = "4" - }, -/obj/item/clothing/under/marine/officer/pilot/flight, -/obj/item/clothing/suit/storage/jacket/marine/pilot{ - layer = 3.1; - pixel_y = 2 +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/corsat/brown/east, -/area/lv522/oob) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) "dMY" = ( /obj/structure/machinery/landinglight/ds1/delaytwo{ dir = 1 @@ -6683,17 +6440,12 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1) "dNd" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "dNe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/shiva/radiator_tile2, /area/lv522/atmos/way_in_command_centre) "dNm" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -6702,26 +6454,14 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) "dNn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "dNx" = ( /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) -"dNK" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Workshop Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) "dNP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -6729,18 +6469,19 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/security/glass) "dOa" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/corsat/browncorner/west, +/area/lv522/oob/w_y_vault) "dOt" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 +/obj/effect/decal/hefa_cult_decals/d32{ + desc = "You think you can make out the iconography of a Xenomorph." }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/oob/w_y_vault) "dOw" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/north_command_centre) +/obj/structure/largecrate, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "dOz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -6757,23 +6498,24 @@ /turf/open/floor/prison/floor_marked/southwest, /area/shuttle/drop2/lv522) "dOK" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "dOY" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access = null; - req_one_access_txt = "7;23;27" +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) -"dPl" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) "dPq" = ( -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor/north) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) "dPv" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/prison/greenfull/northwest, @@ -6809,9 +6551,9 @@ /turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) "dQg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "dQh" = ( /obj/structure/machinery/light{ dir = 1 @@ -6821,18 +6563,23 @@ /area/lv522/indoors/a_block/medical) "dQm" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "dQr" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "dQs" = ( -/obj/structure/barricade/deployable{ - dir = 8 +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/prison, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "dQM" = ( /obj/structure/machinery/vending/dinnerware, @@ -6855,61 +6602,54 @@ /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) "dRn" = ( -/obj/structure/machinery/door/airlock/almayer/secure/colony{ - icon_state = "door_locked"; - locked = 1; - name = "Storage"; - req_access_txt = "100" +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop/closed, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/marked, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "dRy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "dRK" = ( /obj/structure/stairs/perspective{ dir = 9; icon_state = "p_stair_full" }, /turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) +/area/lv522/outdoors/nw_rockies) "dRL" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/dorm_north) -"dRS" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) "dSt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/east) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "dSy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/east) +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "dSW" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - pixel_y = 6 - }, -/obj/effect/decal/hefa_cult_decals/d96{ - desc = "You think you can make out the iconography of a Xenomorph?" - }, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/oob) +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "dTs" = ( -/obj/effect/landmark/objective_landmark/close, -/obj/structure/bed/roller, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/oob/w_y_vault) "dTv" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/brown, +/area/lv522/oob/w_y_vault) "dTJ" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 @@ -6917,16 +6657,13 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) "dTW" = ( -/obj/item/reagent_container/food/snacks/meat/human, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/oob) +/obj/item/clothing/under/marine/reconnaissance, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/oob/w_y_vault) "dUj" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - desc = "You think you can make out the iconography of a Xenomorph."; - icon_state = "bee" - }, -/turf/open/floor/corsat/plate, -/area/lv522/oob) +/obj/structure/prop/ice_colony/ground_wire, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "dUq" = ( /obj/structure/surface/table/almayer, /obj/item/co2_cartridge{ @@ -6936,26 +6673,27 @@ /turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "dUD" = ( -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Ensign Robert 'Roach' Yangley" - }, -/turf/open/floor/corsat/browncorner, -/area/lv522/oob) +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "dUE" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = 6; pixel_y = 6 }, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/oob) +/obj/item/tool/mop{ + pixel_y = 6 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "dUS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - icon_state = "flammable_pipe_3"; - pixel_x = -18 +/obj/item/clothing/head/hardhat/white, +/obj/item/prop/alien/hugger{ + pixel_x = 11; + pixel_y = -9 }, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/oob) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "dUW" = ( /obj/structure/surface/table/almayer, /turf/open/floor/plating, @@ -6988,10 +6726,6 @@ }, /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) -"dWc" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) "dWn" = ( /obj/effect/spawner/random/toolbox, /turf/open/floor/plating/plating_catwalk/prison, @@ -7006,9 +6740,15 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) "dWE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/west_reactor) +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "dWG" = ( /obj/structure/window/reinforced{ dir = 1; @@ -7018,48 +6758,33 @@ /turf/open/floor/bcircuit, /area/lv522/indoors/c_block/mining) "dWT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/structure/machinery/light{ + dir = 8 + }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) +/area/lv522/atmos/east_reactor/south) "dWY" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "32" }, /area/lv522/landing_zone_forecon/UD6_Tornado) "dXa" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/nw_rockies) -"dXd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, +/obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"dXo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/obj/structure/machinery/light{ - dir = 1 - }, +/area/lv522/atmos/east_reactor/south) +"dXd" = ( +/obj/structure/machinery/vending/cola, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "dXq" = ( -/obj/effect/landmark/monkey_spawn, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) +/obj/structure/machinery/vending/snack/packaged, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "dXt" = ( /obj/item/stack/folding_barricade, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"dXB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "dXI" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/reagent_container/food/drinks/flask/detflask{ @@ -7072,14 +6797,15 @@ /turf/open/floor/wood, /area/lv522/indoors/a_block/security) "dXN" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/east) -"dXX" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 29 +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/oob) +"dXX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "dYb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -7092,29 +6818,15 @@ /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) "dYK" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, -/turf/open/floor/prison, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) -"dYX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor) "dZd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/browncorner/west, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor) "dZr" = ( /obj/structure/ore_box, @@ -7125,9 +6837,12 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "dZs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/west) +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "dZw" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/generic{ @@ -7148,18 +6863,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"dZG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/south) -"dZM" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) "dZP" = ( /obj/structure/curtain/red, /obj/effect/decal/cleanable/dirt, @@ -7190,16 +6893,17 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "eam" = ( -/obj/structure/blocker/forcefield/vehicles, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/command_centre) -"ear" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) -"eaE" = ( -/turf/open/floor/prison, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating, /area/lv522/atmos/cargo_intake) +"ear" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/closed/wall/mineral/bone_resin, +/area/lv522/oob) "eaG" = ( /obj/structure/ore_box, /turf/open/floor/prison/darkbrownfull2, @@ -7207,7 +6911,7 @@ "ebe" = ( /obj/item/storage/pouch/autoinjector/full, /turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "ebn" = ( /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) @@ -7216,21 +6920,11 @@ /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_east_street) "ebP" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - icon_state = "2" - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/oob) +/obj/item/clipboard, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "ebR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/transmitter/colony_net{ - dir = 1; - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Colony Engineering"; - pixel_y = -6 - }, +/obj/structure/closet/secure_closet/engineering_welding, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "ecm" = ( @@ -7249,21 +6943,16 @@ /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) "ecK" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "ecP" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "25" }, /area/lv522/landing_zone_forecon/UD6_Tornado) -"ecU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/south) "edi" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 8; @@ -7275,8 +6964,9 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel/far) "edk" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/oob) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) "edw" = ( /obj/structure/bed/roller, /obj/effect/decal/cleanable/dirt, @@ -7287,9 +6977,12 @@ /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "edP" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/corsat/browncorner, -/area/lv522/oob) +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "edQ" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -7323,23 +7016,22 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "eeY" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) "efk" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "efy" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "E_B_Door"; - name = "\improper Emergency Blast Door"; - unacidable = 1 +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "efK" = ( /obj/item/stack/tile/plasteel{ name = "ceiling tile"; @@ -7355,19 +7047,11 @@ }, /turf/open/gm/river, /area/lv522/indoors/a_block/kitchen/damage) -"efR" = ( -/obj/effect/decal/hefa_cult_decals/d32{ - desc = "You think you can make out the iconography of a Xenomorph." - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/oob) "efS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/bed/chair{ + dir = 1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/marked, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/east_reactor) "efT" = ( /obj/structure/closet/coffin/woodencrate, @@ -7419,17 +7103,17 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "egd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"egj" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "egt" = ( -/obj/structure/powerloader_wreckage, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4" + }, +/turf/open/floor/plating, +/area/lv522/atmos/cargo_intake) "egv" = ( /obj/item/cell/crap{ pixel_x = -8; @@ -7445,9 +7129,6 @@ /obj/structure/surface/table/almayer, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) -"egD" = ( -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor) "egE" = ( /obj/structure/machinery/washing_machine{ density = 0; @@ -7461,9 +7142,11 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "egK" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/south) +/obj/structure/cable/heavyduty{ + icon_state = "1-2-8" + }, +/turf/open/floor/plating, +/area/lv522/atmos/cargo_intake) "egP" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1 @@ -7476,10 +7159,8 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen) "egV" = ( -/obj/structure/barricade/deployable{ - dir = 4 - }, -/turf/open/floor/prison, +/obj/structure/largecrate/random, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "egW" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -7490,7 +7171,8 @@ /turf/open/floor/plating, /area/lv522/indoors/a_block/kitchen/damage) "egY" = ( -/turf/open/floor/corsat/browncorner/east, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor) "ehr" = ( /obj/structure/reagent_dispensers/fueltank, @@ -7502,22 +7184,26 @@ /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/hallway) "ehM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 }, -/obj/effect/alien/resin/sticky, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "ehO" = ( -/obj/effect/alien/resin/sticky, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) +/obj/item/prop/alien/hugger, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "eil" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/oob) +/obj/structure/machinery/microwave, +/obj/structure/machinery/microwave{ + pixel_y = 13 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 21 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "eiC" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -7554,9 +7240,12 @@ /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) "ejo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/north_command_centre) +/obj/item/storage/box/donkpockets{ + pixel_x = -14; + pixel_y = -2 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "eju" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -7583,24 +7272,25 @@ /turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) "ejN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) +/area/lv522/atmos/cargo_intake) "ekf" = ( /obj/structure/curtain/medical, /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "ekt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "ekK" = ( -/obj/item/clothing/under/marine/reconnaissance, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/oob) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) "ekO" = ( /obj/structure/bed/chair/wood/normal{ dir = 8 @@ -7631,10 +7321,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"elx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) "elS" = ( /obj/item/stack/rods, /turf/open/floor/prison/blue/north, @@ -7651,29 +7337,18 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) "emm" = ( -/obj/structure/prop/invuln/ice_prefab, -/obj/structure/prop/invuln/ice_prefab{ - icon_state = "fab_2"; - pixel_x = 3 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"emr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/monkey_spawn, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"emt" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) +"emr" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) "emz" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -7702,18 +7377,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"enk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"enr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) "enB" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -7723,9 +7386,11 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "enG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/north_command_centre) +/obj/structure/prop/invuln/ice_prefab/standalone/trim{ + icon_state = "white_trim" + }, +/turf/closed/wall/solaris/reinforced/hull/lv522, +/area/lv522/oob) "enP" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -7737,25 +7402,19 @@ /obj/structure/closet/bodybag, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) -"enS" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) "enT" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/conveyor, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) +"eof" = ( +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 }, -/obj/vehicle/powerloader/ft{ +/obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/north) -"eof" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15 - }, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/oob) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "eoi" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -7767,76 +7426,39 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "eov" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "Marked_1"; - indestructible = 1; - layer = 3.3; - name = "\improper Secure Blast Door"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer{ - id = "Marked_2"; - indestructible = 1; - layer = 3.3; - name = "\improper Secure Blast Door"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer{ - id = "Marked_3"; - indestructible = 1; - layer = 3.3; - name = "\improper Secure Blast Door"; - unacidable = 1 - }, -/obj/structure/machinery/door/poddoor/almayer{ - id = "Marked_6"; - indestructible = 1; - layer = 3.3; - name = "\improper Secure Blast Door"; - unacidable = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/oob) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/east_reactor/south) "eow" = ( -/obj/structure/tunnel{ - pixel_x = 2; - pixel_y = -6 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/west_reactor) -"eoA" = ( /obj/item/prop/colony/used_flare, -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/machinery/light{ - dir = 1 +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"eoA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "eoH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/north_command_centre) +/obj/item/stack/sheet/metal{ + layer = 2.5; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "eoZ" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) "epb" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/cargo_intake) "epe" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/sand_white/layer0, @@ -7849,24 +7471,25 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "ept" = ( -/obj/structure/machinery/light{ +/obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/cargo_intake) "epI" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/north_command_centre) +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "epN" = ( /obj/structure/closet/emcloset, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "epS" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "epX" = ( /obj/item/storage/firstaid/toxin/empty, /obj/effect/decal/cleanable/dirt, @@ -7885,49 +7508,39 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway/damage) "equ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "eqD" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_ew_full_cap" + }, +/obj/structure/platform/stair_cut/alt, /turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"eqE" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/nw_rockies) +/area/lv522/atmos/cargo_intake) "eqM" = ( /turf/open/floor/plating/platingdmg1, /area/lv522/indoors/a_block/security) "eqU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/north_command_centre) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "eqV" = ( /obj/structure/largecrate/random/barrel, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel/far) -"erw" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) "erA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_west_street) -"erS" = ( -/obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) "erZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/west) +/obj/structure/foamed_metal, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "esa" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -7939,13 +7552,6 @@ "eso" = ( /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"esw" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/matches{ - pixel_y = 8 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) "esB" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -7956,6 +7562,19 @@ /obj/structure/surface/rack, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) +"esO" = ( +/obj/item/ammo_magazine/sniper{ + current_rounds = 0; + pixel_x = -6; + pixel_y = -7 + }, +/obj/item/ammo_magazine/sniper{ + current_rounds = 0; + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "etn" = ( /obj/structure/prop/invuln/minecart_tracks{ dir = 10 @@ -7970,8 +7589,9 @@ /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/door_control/brbutton/alt{ - id = "Secure_Master_Armoury_2"; - name = "remote door-control" + id = "Marked_7"; + name = "remote door-control"; + pixel_x = -2 }, /turf/open/floor/strata/multi_tiles, /area/lv522/indoors/c_block/mining) @@ -7980,6 +7600,9 @@ /area/lv522/indoors/a_block/kitchen/damage) "etN" = ( /obj/structure/machinery/photocopier, +/obj/structure/platform_decoration{ + dir = 8 + }, /turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "euj" = ( @@ -8060,18 +7683,9 @@ /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "evx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"evN" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo/glass) +/obj/item/clothing/suit/storage/marine/M3G, +/turf/closed/wall/mineral/bone_resin, +/area/lv522/oob) "evS" = ( /obj/structure/platform, /obj/structure/platform{ @@ -8085,38 +7699,29 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) "ewe" = ( -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/oob) +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "ewf" = ( /obj/structure/platform, /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_east_street) "ewm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/stack/tile/wood{ + layer = 2.5 }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor) +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "ewn" = ( /obj/structure/platform, /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_west_street) "ewp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"ewt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "ewE" = ( /obj/structure/platform{ dir = 4 @@ -8148,11 +7753,9 @@ /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) "exB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) +/obj/effect/spawner/gibspawner/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "exQ" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -8161,12 +7764,11 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "exZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/oob) "eyc" = ( /obj/structure/platform{ dir = 1 @@ -8180,15 +7782,11 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) "eym" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 13 - }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = -3 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) +/area/lv522/atmos/cargo_intake) "eyn" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/asphalt/cement/cement4, @@ -8198,11 +7796,12 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1) "eyM" = ( -/obj/item/stack/tile/wood{ - layer = 2.5 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "eyY" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -8235,40 +7834,42 @@ /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) "ezp" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/east) -"ezB" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"ezC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/darkpurplefull2, -/area/lv522/indoors/a_block/dorms) -"ezH" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/cargo_intake) +"ezu" = ( +/obj/effect/landmark/lv624/fog_blocker/short, +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/c_block/mining) +"ezC" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/lv522/indoors/a_block/dorms) +"ezH" = ( /obj/structure/cargo_container/watatsumi/rightmid, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_west_street) "ezU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/north_command_centre) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/cargo_intake) "ezW" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "eAg" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/cargo_intake) "eAm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -8277,9 +7878,12 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "eAz" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "eAC" = ( /obj/structure/surface/table/almayer, /obj/structure/bed/chair{ @@ -8294,12 +7898,14 @@ density = 0; pixel_y = 16 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness/glass) "eAF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/east) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "eAX" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/fertilizer, @@ -8310,14 +7916,14 @@ /turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "eBi" = ( -/obj/item/stack/cable_coil/cut, -/obj/item/stack/cable_coil/cut, -/turf/open/floor/plating, -/area/lv522/atmos/east_reactor) +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/cargo_intake) "eBm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/bluegrid, +/area/lv522/atmos/east_reactor) "eBu" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -8333,28 +7939,17 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "eBH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/prop/ice_colony/ground_wire{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"eCe" = ( -/obj/effect/alien/resin/sticky, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) -"eCO" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/corsat, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) +"eCO" = ( +/obj/structure/cargo_container/hd/left/alt, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) "eDc" = ( /obj/structure/bed/chair, /obj/structure/machinery/space_heater/radiator/red{ @@ -8378,9 +7973,8 @@ /turf/open/gm/river, /area/lv522/outdoors/colony_streets/south_street) "eDt" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/landmark/objective_landmark/medium, -/turf/open/floor/prison, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, /area/lv522/atmos/cargo_intake) "eDz" = ( /obj/structure/surface/table/almayer{ @@ -8389,16 +7983,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"eDD" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) "eDI" = ( /obj/structure/machinery/light, /turf/open/floor/prison/darkyellowfull2/east, @@ -8411,21 +7995,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) -"eDS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/n_rockies) "eEv" = ( /turf/open/floor/prison/kitchen, /area/lv522/indoors/b_block/bar) "eEx" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) "eEH" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -8443,10 +8022,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"eFt" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) "eFK" = ( /obj/structure/bed/roller, /obj/item/prop/alien/hugger, @@ -8454,38 +8029,38 @@ /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical/glass) "eFP" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/closed/wall/strata_outpost, -/area/lv522/atmos/east_reactor) -"eFT" = ( -/obj/item/stack/tile/plasteel{ - name = "ceiling tile"; - pixel_x = -2; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) "eGs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) +/obj/item/stack/sheet/metal, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) "eGL" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 8 + }, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/cargo_intake) "eGQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/east) -"eHn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"eHp" = ( -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/area/lv522/atmos/cargo_intake) +"eHn" = ( +/obj/item/stack/folding_barricade, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "eHu" = ( /obj/structure/closet/secure_closet/miner, /turf/open/floor/prison/darkbrownfull2, @@ -8505,9 +8080,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) -"eHE" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) "eHF" = ( /obj/structure/cargo_container/kelland/right, /turf/open/floor/plating, @@ -8517,46 +8089,54 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/bridge) "eHR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "eHS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/structure/prop/invuln/overhead_pipe{ + name = "overhead pipe"; + pixel_x = -20; + pixel_y = 24 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) +/turf/closed/wall/mineral/bone_resin, +/area/lv522/oob) "eHX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/close, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/item/clothing/suit/storage/marine/medium/rto, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) "eIk" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms/glass) "eIn" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/mineral/silver{ - amount = 20 +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/item/prop/alien/hugger{ + pixel_y = 14 }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "eIF" = ( /obj/structure/bed/alien, /obj/item/pipe{ pixel_x = -6 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "eIT" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -2; + pixel_y = 1 + }, +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "eJc" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/close, @@ -8590,29 +8170,20 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "eJq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/item/stack/sheet/metal, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "eJw" = ( -/obj/item/clothing/mask/rebreather{ - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "eJR" = ( /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) "eJZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "eKc" = ( /obj/structure/closet/secure_closet/miner, /obj/effect/decal/cleanable/dirt, @@ -8625,9 +8196,9 @@ /turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/north_east_street) "eKj" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/cargo_intake) "eKm" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/organic/grass, @@ -8639,10 +8210,9 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bar) "eKK" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) +/obj/item/reagent_container/food/snacks/meat/human, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/oob/w_y_vault) "eKL" = ( /obj/structure/bed/chair{ dir = 1 @@ -8661,11 +8231,7 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/medical) "eLx" = ( -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "eLG" = ( @@ -8676,32 +8242,20 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "eLK" = ( -/obj/structure/showcase{ - desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Display synthetic" - }, -/obj/structure/window/reinforced, -/obj/structure/sign/safety/synth_storage{ - pixel_x = 23; - pixel_y = 29 - }, -/turf/open/floor/bluegrid, -/area/lv522/indoors/a_block/corpo/glass) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/cargo_intake) "eLN" = ( /obj/structure/machinery/light, -/turf/open/floor/whiteyellowfull/east, +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo/glass) "eLU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/reactor_garage) -"eLV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/oob) +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "eLZ" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ name = "\improper Cargo Bay Quartermaster" @@ -8722,30 +8276,18 @@ /turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "eMl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor) -"eMm" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 9 +/obj/structure/barricade/deployable{ + dir = 8 }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) "eMz" = ( -/obj/item/stack/rods/plasteel, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "eMD" = ( /obj/structure/machinery/light{ dir = 1; @@ -8777,11 +8319,9 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/hydro) "eNT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor) +/obj/item/clothing/suit/storage/marine/medium, +/turf/closed/wall/mineral/bone_resin, +/area/lv522/oob) "eNW" = ( /obj/structure/barricade/deployable{ dir = 4 @@ -8796,14 +8336,18 @@ /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) "eOe" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/fence{ + layer = 2.9 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) "eOj" = ( /obj/structure/machinery/light{ dir = 8 @@ -8819,15 +8363,18 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "eOn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) -"eOA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/north_command_centre) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) +"eOA" = ( +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/lv522/outdoors/colony_streets/north_east_street) "eOE" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -8838,9 +8385,6 @@ /obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, /turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "eOU" = ( @@ -8875,17 +8419,11 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) "ePK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/north_command_centre) +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/atmos/cargo_intake) "eQf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/west_reactor) +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/cargo_intake) "eQu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -8919,21 +8457,18 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "eRg" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Sergeant Douglas 'Bedwetter' Smith" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) "eRI" = ( /obj/structure/barricade/deployable{ dir = 8 }, /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/north_east_street) -"eRN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) "eSf" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -8949,6 +8484,9 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, +/obj/structure/platform{ + dir = 8 + }, /turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "eSO" = ( @@ -8973,48 +8511,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) -"eTn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"eTQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) "eTZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/west_reactor) -"eUf" = ( -/obj/item/ammo_magazine/m2c{ - current_rounds = 0; - layer = 4.2; - pixel_x = 1; - pixel_y = 11 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) "eUh" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) "eUs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) "eUt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -9057,33 +8564,31 @@ /turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "eVg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "eVi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/north) -"eVW" = ( -/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/corsat/squares, -/area/lv522/atmos/east_reactor) +/area/lv522/atmos/east_reactor/south) +"eVW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) "eWn" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/largecrate/supply/supplies/water, +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) "eWy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) +/area/lv522/atmos/filt) "eWF" = ( /obj/effect/decal/cleanable/dirt, /obj/item/storage/firstaid/adv{ @@ -9098,11 +8603,11 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "eWK" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/east) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) "eWR" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, @@ -9128,42 +8633,30 @@ /turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "eXe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/west) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) "eXG" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) "eXO" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 5 - }, -/obj/structure/barricade/wooden{ - dir = 8; - layer = 4.1; - pixel_x = 9; - pixel_y = 6 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) "eXU" = ( -/obj/structure/machinery/power/terminal, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/lone_buildings/engineering) "eXV" = ( -/obj/structure/cargo_container/horizontal/blue/bottom{ - pixel_x = 16 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/obj/item/stack/tile/plasteel{ + name = "ceiling tile"; + pixel_x = -2; + pixel_y = 1 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "eYh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -9171,52 +8664,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan3/west, /area/lv522/indoors/a_block/medical/glass) -"eYA" = ( -/obj/item/clothing/head/headband/tan{ - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) "eYM" = ( /turf/closed/wall/strata_outpost/reinforced, /area/lv522/landing_zone_1/tunnel) -"eYT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) -"eZb" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/reactor_garage) "eZe" = ( /turf/open/asphalt/cement/cement14, /area/lv522/outdoors/colony_streets/south_east_street) "eZq" = ( -/obj/structure/transmitter/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Reactor Sewer"; - pixel_y = 26 - }, /obj/effect/decal/cleanable/dirt, -/obj/structure/prop/static_tank/water, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"eZv" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) -"eZF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/atmos/cargo_intake) "eZK" = ( /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) @@ -9244,12 +8701,9 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "eZY" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) "fac" = ( /obj/structure/platform, /obj/effect/decal/warning_stripes{ @@ -9266,9 +8720,11 @@ /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_street) "faK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) "faQ" = ( /obj/structure/bed/chair/comfy{ dir = 8; @@ -9277,9 +8733,11 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "faZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) "fba" = ( /obj/structure/flora/bush/ausbushes/grassybush{ layer = 2.9 @@ -9293,9 +8751,11 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) "fbC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) "fbE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/invuln/lattice_prop{ @@ -9311,9 +8771,26 @@ }, /turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/south_east_street) +"fbV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/fence{ + layer = 2.9 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) "fcd" = ( /obj/vehicle/train/cargo/trolley, -/turf/open/floor/prison/floor_plate, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/floor_marked, /area/lv522/indoors/lone_buildings/storage_blocks) "fcv" = ( /obj/structure/surface/table/almayer, @@ -9323,9 +8800,9 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "fcV" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) "fcW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -9361,28 +8838,14 @@ /obj/item/trash/plate, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"fdC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"fdE" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"fdR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) "fdS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/item/stack/rods, -/turf/open/auto_turf/sand_white/layer0, +/obj/structure/machinery/door_display/research_cell{ + dir = 4; + id = "Reactor_e_entry_4"; + pixel_x = -16; + req_access = null + }, +/turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_east_street) "fdT" = ( /obj/structure/closet/crate, @@ -9408,15 +8871,19 @@ /turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/north_east_street) "feS" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"feZ" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) +"feZ" = ( +/turf/open/floor/prison/floor_marked, +/area/lv522/atmos/cargo_intake) "ffb" = ( /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/bridge) @@ -9438,15 +8905,9 @@ /turf/open/floor/strata/floor3/east, /area/lv522/outdoors/colony_streets/south_street) "ffr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) -"ffG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/girder, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/structure/cargo_container/wy/left, +/turf/open/floor/prison/floor_marked, +/area/lv522/atmos/cargo_intake) "ffL" = ( /obj/item/clothing/mask/facehugger{ desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; @@ -9468,14 +8929,6 @@ }, /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical/glass) -"fgf" = ( -/obj/item/ammo_magazine/m2c{ - current_rounds = 0; - layer = 4.2; - pixel_x = 17 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) "fgk" = ( /obj/structure/platform_decoration{ dir = 1 @@ -9527,14 +8980,13 @@ /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) "fhY" = ( -/obj/structure/surface/rack, -/obj/item/tool/pickaxe, -/turf/open/floor/prison/floor_marked/southwest, +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/prison/floor_marked, /area/lv522/atmos/cargo_intake) "fib" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/obj/structure/cargo_container/wy/right, +/turf/open/floor/prison/floor_marked, +/area/lv522/atmos/cargo_intake) "fiu" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/barricade/wooden{ @@ -9543,9 +8995,9 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) "fiA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/prison/floor_marked, +/area/lv522/atmos/cargo_intake) "fiB" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 9 @@ -9554,7 +9006,7 @@ icon_state = "solarpanel1" }, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "fiG" = ( /obj/effect/decal/cleanable/blood/gibs, /obj/effect/decal/cleanable/dirt, @@ -9599,11 +9051,9 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "fkb" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) +/obj/item/prop/alien/hugger, +/turf/open/floor/prison/floor_marked, +/area/lv522/atmos/cargo_intake) "fki" = ( /obj/structure/bed/chair{ dir = 1 @@ -9622,14 +9072,8 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) "fkB" = ( -/obj/structure/barricade/deployable, -/obj/effect/decal/cleanable/blood, -/turf/open/auto_turf/sand_white/layer0, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/nw_rockies) -"fkD" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/north_west_street) "fkP" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -9637,10 +9081,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) -"fkW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) "fld" = ( /mob/living/simple_animal/mouse, /turf/open/floor/prison, @@ -9654,14 +9094,6 @@ }, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"flC" = ( -/obj/structure/machinery/light/small, -/obj/structure/machinery/camera/autoname{ - dir = 1; - network = list("interrogation") - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) "flI" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/ashtray/bronze{ @@ -9673,21 +9105,22 @@ /obj/item/weapon/gun/revolver/m44/custom/pkd_special/k2049, /turf/open/floor/wood, /area/lv522/indoors/a_block/security) +"flN" = ( +/obj/structure/prop/invuln/rope{ + pixel_x = 11; + pixel_y = 5 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "fms" = ( /obj/structure/bed/chair/comfy, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "fmv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) -"fmB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/cargo_intake) "fmH" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, @@ -9736,21 +9169,15 @@ pixel_x = 9; pixel_y = 17 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "fol" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/filt) -"fop" = ( -/turf/open/floor/corsat, -/area/lv522/atmos/west_reactor) +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/cargo_intake) "foO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/east) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/cargo_intake) "foR" = ( /obj/structure/platform_decoration{ dir = 8 @@ -9781,14 +9208,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) -"fpm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) "fpn" = ( -/obj/item/device/analyzer, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/obj/structure/largecrate, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/outdoors/nw_rockies) "fpr" = ( /obj/structure/largecrate/random, /turf/open/floor/prison/blue_plate/north, @@ -9807,11 +9230,11 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_street) "fpH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/structure/machinery/door_control/brbutton{ + id = "Reactor_garage_2" }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/north_command_centre) +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/atmos/reactor_garage) "fpW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -9825,48 +9248,36 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms/glass) -"fqU" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "frH" = ( -/obj/item/clothing/head/hardhat/dblue{ - layer = 6.1; - pixel_y = 15 +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "frL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) +/obj/structure/prop/vehicles, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "frZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "fsf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) +/obj/structure/surface/rack, +/obj/item/clothing/head/welding, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "fsj" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 13 + }, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = -3 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) +/area/lv522/atmos/reactor_garage) "fss" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 8 @@ -9887,25 +9298,31 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) "fsC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) +/obj/structure/prop/vehicles{ + icon_state = "truck_damaged" + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "fsQ" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) +/obj/structure/prop/vehicles/crawler{ + layer = 2.9 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "fsV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) +/obj/effect/decal/cleanable/dirt, +/obj/structure/transmitter/colony_net{ + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Reactor Garage"; + pixel_y = 26 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "ftd" = ( /obj/structure/bed/chair{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) "ftl" = ( @@ -9920,17 +9337,21 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) "fts" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin{ - pixel_x = 5; - pixel_y = 5 +/obj/structure/machinery/door_display/research_cell{ + dir = 8; + id = "Reactor_entry_2"; + pixel_x = 16; + req_access = null }, -/obj/item/tool/pen/blue/clicky, +/obj/item/prop/alien/hugger, /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, -/turf/open/floor/wood/ship, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "ftA" = ( /obj/structure/surface/table/almayer, @@ -9958,11 +9379,9 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) "fuf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) +/obj/item/stack/sheet/metal, +/turf/open/floor/corsat, +/area/lv522/atmos/reactor_garage) "ful" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -9983,15 +9402,14 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) "fuQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) "fvk" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness/glass) "fvn" = ( /obj/structure/platform{ @@ -10003,15 +9421,12 @@ /turf/open/gm/river, /area/lv522/landing_zone_1/tunnel/far) "fvo" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) -"fvx" = ( -/obj/structure/prop/vehicles/crawler{ - icon_state = "crawler_crate_alt" - }, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "fvN" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -10020,10 +9435,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"fvQ" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) "fvV" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -10043,19 +9454,17 @@ /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, /area/lv522/landing_zone_forecon/UD6_Typhoon) "fwj" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) "fwo" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/west_reactor) +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) "fwy" = ( /obj/structure/bed/chair{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "fwT" = ( /obj/item/tool/lighter/random{ @@ -10089,23 +9498,23 @@ /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "fwX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) -"fxh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" }, -/turf/open/floor/plating/plating_catwalk/prison, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "fxl" = ( /obj/vehicle/train/cargo/engine, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "fxq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) "fyl" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, @@ -10173,9 +9582,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"fzu" = ( -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/reactor_garage) "fzC" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "28" @@ -10185,19 +9591,12 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorm_north) "fzK" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_e_entry_4" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"fzL" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/west_reactor) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) "fzV" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -10212,23 +9611,18 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) -"fAt" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) "fAx" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -9; - pixel_y = 20 +/obj/structure/barricade/deployable{ + dir = 1 }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 6; - pixel_y = 20 +/obj/structure/barricade/deployable{ + dir = 8 + }, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null }, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) "fAA" = ( /obj/structure/largecrate/random/barrel{ layer = 2.9 @@ -10236,9 +9630,13 @@ /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/central_streets) "fAG" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) "fAH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -10246,7 +9644,7 @@ /obj/item/prop/colony/usedbandage{ dir = 9 }, -/turf/open/floor/prison/blue/northwest, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "fAY" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -10256,8 +9654,12 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/fitness) "fBg" = ( -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "fBp" = ( /turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/east_central_street) @@ -10266,13 +9668,9 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1) "fBP" = ( -/obj/structure/filingcabinet/chestdrawer{ - density = 0; - pixel_x = -11; - pixel_y = 20 - }, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) +/obj/structure/machinery/iv_drip, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) "fBR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -10280,11 +9678,8 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) "fBU" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, +/obj/item/storage/belt/medical/lifesaver, +/turf/open/floor/prison, /area/lv522/atmos/cargo_intake) "fBY" = ( /obj/item/prop/colony/used_flare, @@ -10303,23 +9698,19 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/kitchen/glass) "fCE" = ( -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) -"fCN" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/paper_bin{ - pixel_x = 3; - pixel_y = 6 +/obj/structure/barricade/deployable{ + dir = 1 }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"fCN" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) "fCP" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) "fCU" = ( /obj/effect/decal/cleanable/blood{ desc = "Watch your step."; @@ -10336,20 +9727,9 @@ }, /area/lv522/landing_zone_forecon/UD6_Typhoon) "fDi" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_x = -12; - pixel_y = 4 - }, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4; - pixel_x = 14; - pixel_y = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) "fDj" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin{ @@ -10362,9 +9742,18 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "fDn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/east_reactor) +/obj/structure/barricade/deployable{ + dir = 1 + }, +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_marked, +/area/lv522/atmos/cargo_intake) +"fDr" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) "fDv" = ( /obj/structure/cargo_container/kelland/left, /turf/open/asphalt/cement/cement2, @@ -10378,11 +9767,6 @@ /obj/item/seeds/potatoseed, /turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) -"fDC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/static_tank/water, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) "fDF" = ( /obj/structure/surface/rack, /obj/item/card/id/silver/clearance_badge/cl{ @@ -10394,19 +9778,13 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "fDH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor) -"fDS" = ( -/obj/structure/machinery/conveyor{ - dir = 5; - id = "cargo_container" +/obj/structure/barricade/deployable{ + dir = 1 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 8 +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null }, -/turf/open/floor/corsat/plate, +/turf/open/floor/prison, /area/lv522/atmos/cargo_intake) "fEe" = ( /obj/structure/platform, @@ -10433,42 +9811,38 @@ /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_east_street) "fFp" = ( -/obj/item/clothing/gloves/yellow, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"fFw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) -"fFA" = ( -/obj/structure/barricade/deployable{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/prison, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/cargo_intake) +"fFw" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison, +/area/lv522/outdoors/nw_rockies) +"fFA" = ( +/turf/open/floor/prison/floor_marked, +/area/lv522/outdoors/nw_rockies) "fFE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor) +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/floor_marked, +/area/lv522/outdoors/nw_rockies) +"fFF" = ( +/obj/structure/platform_decoration, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) "fFS" = ( -/obj/effect/landmark/monkey_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/outdoors/nw_rockies) "fGh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/west_reactor) +/obj/structure/largecrate/random, +/turf/open/floor/prison, +/area/lv522/outdoors/nw_rockies) "fGv" = ( /obj/structure/window_frame/strata, /obj/item/stack/rods, @@ -10484,30 +9858,21 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) "fGH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/west_reactor) -"fGJ" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/west_reactor) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) "fGN" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) +/obj/structure/largecrate, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/nw_rockies) "fGU" = ( -/obj/structure/closet/crate, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) -"fHf" = ( -/obj/structure/platform, -/obj/structure/reagent_dispensers/watertank{ - layer = 2.9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/largecrate/random/secure, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/nw_rockies) "fHy" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -10520,16 +9885,8 @@ dir = 5 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, +/turf/open/floor/strata/white_cyan2, /area/lv522/indoors/a_block/executive) -"fHH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "fIa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -10537,9 +9894,9 @@ /turf/open/floor/prison, /area/lv522/indoors/b_block/bridge) "fIe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) +/obj/structure/cargo_container/kelland/left, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/nw_rockies) "fIr" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, @@ -10561,21 +9918,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) -"fIQ" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/west_reactor) "fJe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/north_command_centre) -"fJg" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/corpo/glass) +/obj/structure/cargo_container/kelland/right, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/nw_rockies) "fJq" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -10594,13 +9940,15 @@ /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_east_street) "fKt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_garage_3" + }, /turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) +/area/lv522/atmos/reactor_garage) "fKu" = ( -/obj/structure/largecrate, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/reactor_garage) "fLa" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "47" @@ -10616,38 +9964,13 @@ /turf/open/floor/prison/blue/west, /area/lv522/indoors/a_block/admin) "fLi" = ( -/obj/item/tool/warning_cone{ - pixel_x = -10; - pixel_y = 11 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) -"fLz" = ( -/obj/structure/machinery{ - density = 1; - dir = 4; - icon = 'icons/obj/vehicles/apc.dmi'; - icon_state = "apc_base_com"; - indestructible = 1; - name = "\improper M577 armored personnel carrier"; - pixel_y = -21; - unacidable = 1; - unslashable = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/reactor_garage) "fLA" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/reactor_garage) "fLF" = ( /obj/structure/machinery/door/poddoor/almayer/closed{ dir = 4; @@ -10656,13 +9979,6 @@ }, /turf/open/floor/corsat/marked, /area/lv522/landing_zone_1) -"fLK" = ( -/obj/structure/cryofeed, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8 - }, -/turf/open/floor/bluegrid, -/area/lv522/atmos/east_reactor) "fLM" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/head/hardhat/orange{ @@ -10672,13 +9988,12 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "fLP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/item/prop/colony/canister{ + layer = 3.1; + pixel_y = 16 + }, /turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) -"fLS" = ( -/obj/structure/prop/dam/crane, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) +/area/lv522/atmos/reactor_garage) "fLZ" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; @@ -10687,27 +10002,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bar) -"fMd" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8; - pixel_x = -20 - }, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"fMx" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - icon_state = "flammable_pipe_3"; - pixel_x = -20 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) "fMN" = ( /obj/structure/surface/table/almayer, /obj/item/storage/pill_bottle/tramadol/skillless{ @@ -10751,22 +10045,16 @@ }, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) -"fMT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) "fNk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/cargo_intake) +"fNm" = ( +/obj/structure/prop/vehicles{ + icon_state = "van_damaged" }, -/obj/structure/bed/chair, -/turf/open/floor/corsat/brown/southwest, +/turf/open/floor/corsat/brown/north, /area/lv522/atmos/reactor_garage) -"fNm" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/carpet, -/area/lv522/atmos/east_reactor/east) "fNp" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/prison/greenfull/east, @@ -10794,11 +10082,12 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "fOM" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/carpet, -/area/lv522/atmos/east_reactor/east) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) "fOX" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, @@ -10812,6 +10101,17 @@ /obj/effect/decal/cleanable/blood/drip, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) +"fPv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "fPB" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, @@ -10828,12 +10128,10 @@ /turf/open/floor/plating, /area/lv522/landing_zone_2) "fPV" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor/south) "fQb" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ @@ -10841,14 +10139,6 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"fQi" = ( -/obj/item/prop/colony/canister{ - dir = 8; - layer = 3.1; - pixel_y = 16 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/reactor_garage) "fQD" = ( /obj/structure/bed/chair{ dir = 4 @@ -10860,11 +10150,9 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "fRd" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) +/obj/item/clothing/suit/storage/marine/medium/smooth, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "fRf" = ( /obj/structure/closet/bodybag, /turf/open/floor/prison/blue_plate/north, @@ -10877,6 +10165,15 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/admin) +"fRq" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) "fRP" = ( /obj/structure/prop/vehicles/crawler{ layer = 3.3 @@ -10893,24 +10190,11 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) "fSe" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/filt) "fSf" = ( -/obj/structure/blocker/invisible_wall, -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/atmos/sewer) -"fSj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/atmos/cargo_intake) "fSo" = ( /obj/structure/machinery/landinglight/ds1, /turf/open/floor/prison/greenfull/east, @@ -10921,70 +10205,42 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "fSv" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/beret/eng, -/obj/item/ammo_box/magazine/nailgun/empty{ - pixel_x = -6; - pixel_y = 12 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) "fSR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; - icon_state = "pottedplant_21"; - layer = 3.1; - name = "synthethic potted plant"; - pixel_y = 12 +/obj/structure/barricade/deployable{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) "fSX" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 3; - pixel_y = 6 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) +/obj/effect/landmark/objective_landmark/close, +/obj/structure/bed/roller, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) "fTi" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 - }, -/obj/structure/bed/chair/wood/normal{ - dir = 4; - layer = 4.1; - pixel_x = -6; - pixel_y = 6 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"fTs" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/west_reactor) -"fTN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/item/prop/alien/hugger, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) +"fTN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/south_west_street) "fTO" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) "fTP" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/b_block/bridge) -"fTS" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) "fUf" = ( /obj/effect/decal{ icon = 'icons/mob/xenos/effects.dmi'; @@ -11005,13 +10261,6 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"fUT" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) "fVB" = ( /obj/structure/closet, /obj/effect/decal/cleanable/dirt, @@ -11040,13 +10289,9 @@ /turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/central_streets) "fWD" = ( -/obj/item/stack/folding_barricade, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) "fWG" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) @@ -11087,16 +10332,11 @@ }, /area/lv522/landing_zone_forecon/UD6_Tornado) "fXs" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"fXv" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/command_centre) +/turf/open/floor/prison/floor_marked, +/area/lv522/atmos/cargo_intake) "fXx" = ( /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/central_streets) @@ -11119,16 +10359,9 @@ }, /turf/open/floor/corsat/plate, /area/lv522/indoors/c_block/mining) -"fXS" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) "fXU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/turf/open/asphalt/cement/cement1, +/area/lv522/atmos/cargo_intake) "fXZ" = ( /obj/structure/curtain/medical, /turf/open/floor/strata/white_cyan4/east, @@ -11161,9 +10394,12 @@ /turf/open/gm/river, /area/lv522/landing_zone_1/tunnel/far) "fYP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/west) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/fence, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) "fYZ" = ( /turf/open/floor/prison/blue/southwest, /area/lv522/indoors/a_block/admin) @@ -11181,7 +10417,7 @@ pixel_x = -3; pixel_y = 6 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "fZo" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -11211,13 +10447,18 @@ /turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/c_block/mining) "gat" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) "gaw" = ( /obj/structure/barricade/deployable{ dir = 1 }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) "gaI" = ( @@ -11271,15 +10512,17 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) "gbo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/reactor_garage) +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/cargo_intake) "gbz" = ( /obj/item/prop/colony/used_flare, /obj/structure/barricade/deployable{ dir = 1 }, -/turf/open/floor/prison/blue/northeast, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "gbB" = ( /obj/structure/machinery/colony_floodlight{ @@ -11287,17 +10530,13 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"gbH" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) "gbQ" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/largecrate/random, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) "gbR" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan2/west, @@ -11313,26 +10552,9 @@ }, /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) -"gck" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) "gcn" = ( -/obj/item/xeno_egg/alpha{ - pixel_x = -4; - pixel_y = 18 - }, -/obj/item/xeno_egg/alpha{ - pixel_x = 2; - pixel_y = 7 - }, -/obj/structure/closet/crate, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) -"gcr" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/lv522/outdoors/nw_rockies) "gcv" = ( /obj/structure/foamed_metal, /obj/structure/pipes/standard/simple/hidden/green, @@ -11350,10 +10572,6 @@ /obj/structure/window_frame/strata/reinforced, /turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/engineering) -"gcY" = ( -/obj/structure/cargo_container/ferret/left, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) "gdk" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -11369,7 +10587,7 @@ dir = 8; pixel_y = -5 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "gdt" = ( /obj/item/tool/kitchen/knife, @@ -11382,9 +10600,12 @@ /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_street) "gdJ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/west) +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) "gdO" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/hallway) @@ -11397,10 +10618,8 @@ /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "gdX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/nw_rockies) "gej" = ( /obj/structure/platform, /turf/open/asphalt/cement/cement4, @@ -11418,38 +10637,20 @@ }, /turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/central_streets) -"gem" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/welding, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"geq" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 4; - icon_state = "flammable_pipe_3" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) "get" = ( -/turf/open/floor/carpet, -/area/lv522/atmos/east_reactor/east) +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/reactor_garage) "geu" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/tool/lighter/zippo/gold{ - pixel_x = 7; - pixel_y = 10 +/obj/item/prop/colony/canister{ + dir = 8; + layer = 3.1; + pixel_y = 16 }, -/turf/open/floor/carpet, -/area/lv522/atmos/east_reactor/east) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) "gex" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/reactor_garage) "geB" = ( /obj/structure/barricade/wooden{ dir = 1 @@ -11470,11 +10671,8 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) "geP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/cargo_intake) "geT" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 8; @@ -11486,12 +10684,9 @@ /turf/open/gm/river, /area/lv522/landing_zone_1/tunnel/far) "gfi" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/obj/item/prop/alien/hugger{ - pixel_y = 14 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) +/obj/structure/bed/chair, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "gfl" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; @@ -11505,28 +10700,20 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel/far) "gfu" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) -"gfL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/structure/machinery/light{ + dir = 4 }, -/obj/structure/cargo_container/ferret/mid, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) +"gfL" = ( +/obj/item/prop/colony/used_flare, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) "gfU" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/bed/sofa/vert/white/top, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"gge" = ( -/obj/item/storage/belt/medical/lifesaver, +/obj/structure/bed/sofa/vert/grey/top, /turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) +/area/lv522/indoors/a_block/corpo/glass) "ggj" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, @@ -11535,14 +10722,11 @@ /obj/structure/machinery/floodlight, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) -"ggH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) "ggM" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/item/stack/rods, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "ggO" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin{ @@ -11561,13 +10745,10 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"gha" = ( -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/way_in_command_centre) "ghr" = ( -/obj/structure/machinery/door/airlock/almayer/engineering, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/east) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "ghu" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/wood, @@ -11580,37 +10761,26 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "ghy" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4; - pixel_x = 12; - pixel_y = 4 +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_x = -13; - pixel_y = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) "ghY" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, /turf/open/shuttle/dropship/can_surgery/light_grey_top_right, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "gib" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/obj/structure/closet/toolcloset, +/turf/open/floor/plating, +/area/lv522/oob) "gif" = ( /obj/item/stack/sheet/metal, /turf/open/floor/prison/darkredfull2, @@ -11621,25 +10791,18 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) "giF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/west_reactor) -"giV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) "giX" = ( /obj/structure/curtain/red, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) "gjm" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) +/obj/vehicle/train/cargo/trolley, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) "gjt" = ( /obj/structure/machinery/colony_floodlight{ density = 0; @@ -11651,19 +10814,8 @@ "gjA" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"gjB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "gjF" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/colony/used_flare, @@ -11676,21 +10828,10 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/t_comm) "gjV" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 - }, -/obj/item/weapon/gun/boltaction{ - pixel_x = -12; - pixel_y = 12 - }, -/obj/item/prop/alien/hugger, -/obj/structure/barricade/wooden{ - dir = 4; - layer = 4.1; - pixel_x = 10 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) +/obj/vehicle/train/cargo/trolley, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) "gkg" = ( /obj/structure/machinery/portable_atmospherics/hydroponics{ icon_state = "hydrotray4" @@ -11705,7 +10846,7 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "gkF" = ( /obj/structure/machinery/computer/arcade, @@ -11714,30 +10855,21 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "gkH" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/cleanable/blood/xeno, /obj/structure/tunnel/maint_tunnel{ pixel_y = 6 }, -/obj/structure/machinery/light/small, -/obj/effect/decal/cleanable/blood/xeno, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel/far) "gkY" = ( /obj/structure/closet/bombcloset, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_east_street) -"glj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) "gll" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) "glO" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/warning_stripes{ @@ -11761,11 +10893,9 @@ /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) "gmb" = ( -/obj/structure/prop/vehicles/crawler{ - layer = 2.9 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) +/obj/vehicle/train/cargo/engine, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) "gme" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -11773,11 +10903,21 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) "gmt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/ammo_magazine/m2c{ + current_rounds = 0; + layer = 4.2; + pixel_x = 1; + pixel_y = 11 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/atmos/cargo_intake) "gmu" = ( /obj/structure/platform{ dir = 1 @@ -11785,19 +10925,14 @@ /turf/open/gm/river, /area/lv522/outdoors/colony_streets/south_street) "gnd" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) +/turf/closed/wall/strata_ice/dirty, +/area/lv522/atmos/cargo_intake) "gnf" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 1 }, /turf/open/floor/plating, /area/lv522/landing_zone_1) -"gnk" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) "gnl" = ( /obj/structure/surface/table/almayer, /obj/item/circuitboard/airlock, @@ -11805,21 +10940,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) -"gnx" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "gny" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/bridges) "gnA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/item/ammo_magazine/m2c{ + current_rounds = 0; + layer = 4.2; + pixel_x = 17 }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) +/turf/closed/wall/strata_ice/dirty, +/area/lv522/outdoors/colony_streets/north_east_street) "gok" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, @@ -11831,6 +10963,12 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) +"goo" = ( +/obj/structure/platform/strata{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "gou" = ( /turf/open/floor/prison/darkpurple2/northwest, /area/lv522/indoors/a_block/dorms) @@ -11838,14 +10976,12 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "goK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/north_command_centre) +/obj/structure/largecrate/random, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/nw_rockies) "goO" = ( /obj/structure/window/reinforced{ dir = 4; @@ -11884,7 +11020,7 @@ "goY" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "gpi" = ( /obj/structure/reagent_dispensers/fueltank, /obj/effect/decal/cleanable/dirt, @@ -11921,21 +11057,23 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) "gqg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor) +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/nw_rockies) "gqh" = ( /obj/item/trash/uscm_mre, /turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/admin) "gqG" = ( -/obj/structure/platform, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/nw_rockies) "grg" = ( /obj/effect/decal/cleanable/blood, /obj/structure/machinery/light{ @@ -11957,15 +11095,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"grz" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) "grP" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, @@ -11974,9 +11103,6 @@ /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 }, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) "grZ" = ( @@ -11999,7 +11125,7 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/prison/blue/west, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "gsP" = ( /obj/effect/decal/warning_stripes{ @@ -12013,8 +11139,10 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) "gsZ" = ( -/obj/structure/cargo_container/horizontal/blue/top, -/turf/open/auto_turf/sand_white/layer0, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/nw_rockies) "gtr" = ( /obj/structure/machinery/light{ @@ -12049,20 +11177,15 @@ /turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "gtS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, /obj/structure/cargo_container/wy/mid, /turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "gtX" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/nw_rockies) "gug" = ( /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/floor/plating/platebot, @@ -12130,26 +11253,16 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) "gvk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/open/asphalt/cement/cement3, +/area/lv522/outdoors/nw_rockies) "gvr" = ( /obj/structure/closet/bodybag, /obj/structure/curtain/medical, /turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) -"gvs" = ( -/obj/structure/machinery/space_heater, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 5; - pixel_y = 9 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) "gvG" = ( /obj/item/toy/beach_ball/holoball, /turf/open/auto_turf/sand_white/layer0, @@ -12170,16 +11283,14 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/corpo) "gwk" = ( -/obj/structure/prop/static_tank/water, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"gwt" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/nw_rockies) "gwC" = ( /obj/effect/alien/resin/sticky, -/turf/closed/wall/strata_ice/dirty, +/turf/closed/wall/solaris/reinforced/hull/lv522, /area/lv522/oob) "gwH" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -12188,10 +11299,6 @@ /obj/item/prop/colony/used_flare, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"gwK" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) "gwP" = ( /obj/structure/cargo_container/kelland/left, /turf/open/floor/plating, @@ -12210,25 +11317,12 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) -"gxb" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 3 +"gxc" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/prison/cell_stripe/east, /area/lv522/atmos/reactor_garage) -"gxc" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/cheeseburger, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"gxl" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) "gxp" = ( /obj/structure/machinery/landinglight/ds2/delaythree{ dir = 4 @@ -12250,20 +11344,16 @@ }, /turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/south_east_street) -"gxM" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_y = 5 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) "gxN" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_garage_3" + }, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 + dir = 4 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) "gyb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname, @@ -12272,43 +11362,21 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"gyn" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"gyB" = ( -/obj/item/prop/colony/used_flare, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"gyC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/south) "gyK" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/north_command_centre) -"gzk" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/reactor_garage) "gzu" = ( -/obj/structure/barricade/deployable{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/barricade/deployable, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"gzD" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/area/lv522/atmos/reactor_garage) "gzS" = ( /obj/structure/pipes/unary/freezer{ dir = 1; @@ -12327,9 +11395,11 @@ /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) "gzY" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor/south) "gAa" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -12341,21 +11411,18 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) "gAJ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/bed/chair, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/reactor_garage) "gAO" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"gAS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "gAU" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -12375,9 +11442,9 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "gBi" = ( -/obj/structure/cargo_container/watatsumi/right, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) +/obj/item/tool/wet_sign, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "gBv" = ( /obj/item/seeds/riceseed, /obj/structure/closet/crate, @@ -12427,14 +11494,6 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"gCV" = ( -/obj/structure/machinery/conveyor{ - dir = 10; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) "gDz" = ( /obj/structure/barricade/wooden{ dir = 1 @@ -12442,10 +11501,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/kitchen/glass) -"gDA" = ( -/obj/structure/platform, -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) "gDL" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/door_control/brbutton/alt{ @@ -12478,8 +11533,8 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/reactor_garage) "gEQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ @@ -12512,10 +11567,11 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "gFp" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +/obj/structure/machinery/conveyor{ + dir = 8; + id = "cargo_container" }, -/turf/open/floor/prison, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "gFs" = ( /obj/structure/barricade/wooden{ @@ -12526,25 +11582,19 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"gFy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ +"gFD" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) -"gFD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/reactor_garage) "gFG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/west_reactor) +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/reactor_garage) "gFM" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 @@ -12563,25 +11613,31 @@ }, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) -"gGg" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/south) "gGk" = ( -/obj/structure/prop/server_equipment/yutani_server, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/area/lv522/atmos/reactor_garage) "gGq" = ( -/obj/structure/prop/server_equipment/yutani_server/broken, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"gGx" = ( -/obj/item/weapon/gun/pistol/m1911{ - current_mag = null +/obj/structure/pipes/vents/pump, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 7; + pixel_y = 7 }, -/obj/effect/decal/cleanable/blood, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/n_rockies) +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = -7; + pixel_y = 7 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "gGM" = ( /turf/open/asphalt/cement/cement14, /area/lv522/outdoors/colony_streets/south_street) @@ -12613,19 +11669,12 @@ /area/lv522/indoors/b_block/hydro) "gHz" = ( /turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/north_west_street) -"gHD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) +/area/lv522/outdoors/nw_rockies) "gHF" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "gHN" = ( /obj/structure/prop/vehicles/crawler{ icon_state = "crawler_covered_bed" @@ -12659,27 +11708,15 @@ /obj/structure/platform_decoration, /turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/south_east_street) -"gIv" = ( -/obj/structure/cargo_container/ferret/left, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) "gIH" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor/south) "gIZ" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) -"gJm" = ( -/obj/structure/cargo_container/ferret/mid, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) "gJr" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 8; @@ -12693,21 +11730,21 @@ /turf/open/gm/river, /area/lv522/landing_zone_1/tunnel/far) "gJD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/nw_rockies) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) "gJK" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) +/obj/effect/decal/cleanable/blood/oil, +/turf/closed/wall/mineral/bone_resin, +/area/lv522/oob) "gJL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/spider/spiderling/nogrow, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) +/area/lv522/indoors/lone_buildings/engineering) "gJM" = ( /obj/structure/reagent_dispensers/watertank, /obj/structure/platform_decoration{ @@ -12729,19 +11766,6 @@ }, /turf/open/floor/corsat/marked, /area/lv522/landing_zone_1) -"gKM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor) -"gKO" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_west_street) "gKY" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, @@ -12773,12 +11797,10 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/security) "gLK" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) +/obj/structure/barricade/deployable, +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "gLV" = ( /obj/structure/prop/server_equipment/yutani_server/broken{ density = 0; @@ -12796,16 +11818,19 @@ /turf/open/floor/wood, /area/lv522/indoors/a_block/security) "gMc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_crate_alt" }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) "gMy" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/obj/structure/barricade/deployable{ + dir = 8 }, -/turf/open/floor/corsat/brown/northeast, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/prison, /area/lv522/atmos/cargo_intake) "gMG" = ( /obj/structure/platform_decoration{ @@ -12829,12 +11854,26 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "gNe" = ( -/obj/structure/prop/server_equipment/yutani_server/off, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery{ + density = 1; + dir = 4; + icon = 'icons/obj/vehicles/apc.dmi'; + icon_state = "apc_base_com"; + indestructible = 1; + name = "\improper M577 armored personnel carrier"; + pixel_y = -21; + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/atmos/cargo_intake) "gNn" = ( /obj/structure/largecrate/supply/medicine/medkits{ pixel_x = -7 @@ -12850,11 +11889,18 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) "gNs" = ( -/obj/structure/bed/chair{ +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) +"gND" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "gNJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -12862,21 +11908,23 @@ /turf/open/floor/plating, /area/lv522/indoors/a_block/bridges/op_centre) "gNN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/south) "gOb" = ( /obj/structure/closet/emcloset, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "gOj" = ( -/obj/structure/cargo_container/horizontal/blue/middle, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "gOo" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) "gOC" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, @@ -12899,17 +11947,20 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "gOG" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/fire_alarm, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/obj/structure/machinery/door_display/research_cell{ + dir = 4; + id = "Reactor_e_entry_3"; + pixel_x = -16; + req_access = null + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/filt) "gOJ" = ( -/obj/item/tool/wirecutters{ - pixel_x = -1; - pixel_y = -6 +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "gOS" = ( /obj/structure/largecrate/random, /obj/structure/largecrate/random{ @@ -12933,11 +11984,9 @@ /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "gPq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "gPv" = ( /obj/structure/platform{ dir = 1 @@ -12956,14 +12005,6 @@ /obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) -"gPQ" = ( -/obj/structure/machinery/conveyor{ - dir = 5; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/cargo_intake) "gQu" = ( /mob/living/simple_animal/cat/kitten{ dir = 8 @@ -13016,11 +12057,8 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) "gRJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/west) "gRK" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/prison/blue, @@ -13033,18 +12071,19 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "gRV" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_e_entry_3" }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/filt) "gSn" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "mining_shutter_1" + }, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) -"gSw" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) "gSJ" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, @@ -13053,23 +12092,19 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) -"gTc" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "gTw" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/north_command_centre) +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "gTM" = ( /obj/structure/girder, /turf/open/floor/plating, /area/lv522/landing_zone_forecon/UD6_Typhoon) "gTX" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "gUe" = ( /obj/structure/ore_box, /obj/effect/decal/cleanable/cobweb, @@ -13086,27 +12121,22 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) "gUm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "gUv" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = -7; - pixel_y = 2 - }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = 1; - pixel_y = 2 - }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - pixel_x = 9; - pixel_y = 2 - }, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/filt) "gUA" = ( -/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/surface/table/almayer, +/obj/structure/transmitter/colony_net{ + dir = 1; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Colony Engineering"; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "gUQ" = ( @@ -13120,13 +12150,8 @@ /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "gVd" = ( -/obj/structure/prop/invuln/ice_prefab/standalone/trim, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_x = 2; - pixel_y = -8 - }, -/turf/closed/wall/shiva/prefabricated/reinforced, +/obj/structure/cargo_container/wy/left, +/turf/open/floor/prison, /area/lv522/atmos/cargo_intake) "gVf" = ( /obj/structure/machinery/landinglight/ds2, @@ -13181,10 +12206,9 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel/far) "gWg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/south) +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) "gWh" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurple2, @@ -13194,10 +12218,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) -"gWu" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/way_in_command_centre) "gWx" = ( /obj/structure/closet/secure_closet/miner{ pixel_x = 4 @@ -13205,8 +12225,10 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "gWI" = ( -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "gWL" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -13226,6 +12248,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) +"gXy" = ( +/obj/structure/barricade/handrail, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) "gXz" = ( /obj/structure/surface/table/almayer, /obj/structure/bed/chair{ @@ -13239,35 +12266,27 @@ /turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) "gXB" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/storage/fancy/cigar, -/obj/item/clothing/mask/cigarette/pipe{ - pixel_y = 5 +/obj/structure/barricade/deployable{ + dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/lv522/atmos/east_reactor/east) +/obj/structure/barricade/deployable, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) "gXE" = ( -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_x = -2; - pixel_y = -8 +/obj/item/weapon/gun/pistol/m1911{ + current_mag = null }, -/turf/closed/wall/shiva/prefabricated/reinforced, +/obj/effect/decal/cleanable/blood, +/turf/open/asphalt/cement/cement1, /area/lv522/atmos/cargo_intake) -"gXI" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe, -/area/lv522/atmos/reactor_garage) "gXL" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan1, /area/lv522/indoors/lone_buildings/chunk) "gXR" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/turf/closed/wall/strata_outpost, +/area/lv522/atmos/reactor_garage) "gXT" = ( /obj/item/shard{ icon_state = "medium" @@ -13285,20 +12304,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"gYc" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/corsat, -/area/lv522/atmos/reactor_garage) -"gYs" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Marked_1"; - name = "remote door-control"; - pixel_y = 3 - }, -/obj/item/paper/janitor, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) "gYF" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, @@ -13310,29 +12315,16 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/bridges/op_centre) -"gYK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "gYM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Reactor_garage_2" }, -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/atmos/cargo_intake) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) "gYO" = ( /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_west_street) -"gYT" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/command_centre) "gYX" = ( /obj/structure/surface/table/almayer{ flipped = 1 @@ -13340,14 +12332,8 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) -"gZd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) "gZg" = ( -/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "gZh" = ( @@ -13366,11 +12352,10 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorm_north) "gZJ" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/item/prop/colony/used_flare, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "gZL" = ( /obj/effect/decal/cleanable/blood/drip, /obj/structure/pipes/standard/manifold/hidden/green, @@ -13393,31 +12378,21 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) -"hai" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +"han" = ( +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"ham" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/reactor_garage) -"han" = ( -/obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/area/lv522/atmos/filt) "hao" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/atmos/filt) "haq" = ( /turf/open/floor/strata/white_cyan3, /area/lv522/indoors/a_block/medical/glass) -"har" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) "hat" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -13448,28 +12423,30 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) "haG" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/item/storage/backpack/marine/satchel/rto, +/turf/open/floor/corsat/brown/west, +/area/lv522/oob/w_y_vault) "haR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/north_east_street) "haY" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/fence{ + layer = 2.9 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) "hbj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/floor_marked, +/area/lv522/atmos/cargo_intake) "hbk" = ( /obj/effect/spawner/gibspawner/robot, /turf/open/floor/corsat/marked, @@ -13515,26 +12492,31 @@ }, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_street) -"hbF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/command_centre) "hbG" = ( /obj/structure/machinery/medical_pod/bodyscanner, /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "hbH" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/command_centre) +/obj/structure/prop/vehicles/crawler{ + dir = 8; + icon_state = "crawler_crate_alt2"; + layer = 3.1 + }, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) "hbN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) "hcd" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -13557,8 +12539,11 @@ /turf/open/floor/strata/floor3/east, /area/lv522/landing_zone_2/ceiling) "hcx" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/command_centre) +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "hcE" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/generic, @@ -13569,20 +12554,21 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) "hcV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) "hcZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement, +/area/lv522/outdoors/nw_rockies) "hdd" = ( -/obj/item/prop/alien/hugger, -/obj/structure/machinery/light{ +/obj/structure/barricade/deployable{ dir = 1 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor/south) "hdk" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/northeast, @@ -13599,12 +12585,6 @@ }, /turf/open/floor/wood, /area/lv522/indoors/b_block/bar) -"hdu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/n_rockies) "hdG" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -13613,40 +12593,23 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) "hdK" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 24 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"hdQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"hdR" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) +/obj/structure/largecrate/random/barrel/green, +/turf/open/asphalt/cement, +/area/lv522/outdoors/nw_rockies) "hef" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/hefa_cult_decals/d32{ + icon_state = "2" + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/oob/w_y_vault) "heB" = ( -/obj/structure/cargo_container/ferret/right, -/turf/open/floor/prison, +/turf/open/floor/corsat/brown/northwest, /area/lv522/atmos/cargo_intake) "heC" = ( /obj/structure/machinery/disposal, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) -"heF" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) "heO" = ( /obj/structure/machinery/camera/autoname{ dir = 4 @@ -13656,11 +12619,6 @@ }, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) -"heU" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/platform_decoration, -/turf/open/floor/plating, -/area/lv522/atmos/sewer) "heX" = ( /obj/structure/largecrate/random/barrel{ layer = 5.1; @@ -13676,14 +12634,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/bridges/op_centre) -"hfi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/prop/server_equipment/laptop/on{ - layer = 3.1; - pixel_y = 10 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor) "hft" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, @@ -13698,14 +12648,19 @@ /area/lv522/indoors/a_block/admin) "hfE" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "hfS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, +/obj/structure/machinery/conveyor{ + dir = 10; + id = "cargo_container" + }, +/turf/open/floor/corsat/browncorner/north, /area/lv522/atmos/cargo_intake) "hfU" = ( /obj/structure/machinery/light{ @@ -13721,35 +12676,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) -"hgo" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 5 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) "hgr" = ( /obj/structure/girder/reinforced, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "hgy" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen{ - pixel_x = 6; - pixel_y = 1 - }, -/obj/item/tank/emergency_oxygen{ - pixel_x = -6 - }, -/obj/item/tank/emergency_oxygen{ - pixel_y = 1 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/obj/structure/largecrate/random/barrel/red, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/nw_rockies) "hgH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -13758,30 +12692,27 @@ /turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/hallway) "hgM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) -"hgQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/closet/crate/trashcart, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 10 }, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/nw_rockies) +"hgQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor/south) "hhb" = ( /obj/structure/platform{ dir = 4 }, /turf/open/asphalt/cement/cement12, /area/lv522/landing_zone_2) -"hhu" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) "hhD" = ( /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) @@ -13789,36 +12720,38 @@ /turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) "hhJ" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"hhK" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_entry_2" +/obj/structure/largecrate/random/barrel/blue, +/turf/open/asphalt/cement, +/area/lv522/outdoors/nw_rockies) +"hhQ" = ( +/obj/item/clothing/head/headband/tan{ + layer = 3.03; + pixel_x = -6; + pixel_y = 7 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Corporal Donald 'Firefly' Harrow"; + pixel_x = 3 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"hhQ" = ( -/obj/structure/closet/radiation, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) +/obj/item/prop/alien/hugger{ + pixel_x = -5; + pixel_y = -17 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/nw_rockies) "hig" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/east) -"hij" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/brown/north, +/obj/structure/machinery/door_control/brbutton{ + id = "Reactor_garage_1" + }, +/turf/closed/wall/strata_outpost/reinforced, /area/lv522/atmos/reactor_garage) +"hij" = ( +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/atmos/command_centre) "hip" = ( /obj/structure/pipes/vents/pump, /turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) +/area/lv522/outdoors/nw_rockies) "hix" = ( /obj/structure/platform{ dir = 4 @@ -13828,13 +12761,10 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_east_street) -"hiB" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) "hiK" = ( -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/north_west_street) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) "hiL" = ( /obj/structure/platform{ dir = 1 @@ -13844,13 +12774,6 @@ }, /turf/open/gm/river, /area/lv522/landing_zone_1/tunnel/far) -"hiV" = ( -/obj/item/prop/alien/hugger, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/command_centre) "hiZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -13860,18 +12783,6 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) -"hjB" = ( -/obj/effect/landmark/monkey_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/command_centre) -"hjE" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/lv522/indoors/lone_buildings/storage_blocks) "hjW" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ @@ -13883,17 +12794,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"hka" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/item/stack/tile/plasteel, -/obj/item/tool/wirecutters{ - pixel_x = -12; - pixel_y = -13 - }, -/turf/open/floor/plating, -/area/lv522/atmos/command_centre) "hkd" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/head/welding{ @@ -13926,24 +12826,6 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"hkw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/item/clothing/head/hardhat{ - pixel_x = 17 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/command_centre) -"hky" = ( -/obj/effect/landmark/monkey_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/prop/ice_colony/ground_wire, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/command_centre) "hkC" = ( /obj/structure/surface/table/almayer, /obj/structure/window/reinforced{ @@ -13959,87 +12841,47 @@ /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "hkD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/command_centre) -"hkE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/powerloader_wreckage, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/command_centre) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) "hkO" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal/medium_stack, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_east_street) -"hkT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) "hkY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "hlf" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/cargo_intake) -"hlh" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) +/area/lv522/atmos/reactor_garage) +"hlh" = ( +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) "hll" = ( /obj/structure/surface/table/almayer, /obj/item/device/binoculars, /turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"hlp" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"hlH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/restraint/adjustable/cable/white, -/obj/item/restraint/adjustable/cable/white{ - pixel_y = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"hlJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/command_centre) "hmz" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/north_west_street) +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "hmD" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/command_centre) +/obj/structure/barricade/deployable, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) "hmJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -14047,23 +12889,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/hallway) -"hmM" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/north_west_street) "hmO" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/structure/barricade/deployable, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"hmV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/south) -"hna" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) "hnk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -14079,19 +12911,14 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "hnD" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/west_reactor) -"hoq" = ( -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_x = 2; - pixel_y = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/barricade/deployable{ + dir = 4 }, +/obj/structure/barricade/deployable, /turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"hoq" = ( +/turf/open/asphalt/cement/cement14, /area/lv522/outdoors/nw_rockies) "hov" = ( /obj/effect/decal/warning_stripes{ @@ -14117,17 +12944,7 @@ /turf/open/floor/prison, /area/lv522/indoors/b_block/bridge) "hoN" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/corsat/browncorner, /area/lv522/atmos/cargo_intake) "hoZ" = ( /obj/structure/surface/table/almayer, @@ -14148,19 +12965,10 @@ "hpq" = ( /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_west_street) -"hpy" = ( -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/command_centre) "hpH" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) -"hpI" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) "hqp" = ( /obj/structure/coatrack{ pixel_x = 11 @@ -14172,9 +12980,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_street) -"hqD" = ( -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/command_centre) "hqZ" = ( /obj/structure/bed/chair/wheelchair, /turf/open/auto_turf/shale/layer1, @@ -14192,17 +12997,16 @@ /turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/east_central_street) "hrl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "hrw" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/blue1, +/turf/closed/wall/strata_outpost, /area/lv522/outdoors/colony_streets/windbreaker/observation) "hrx" = ( /obj/structure/surface/table/almayer, @@ -14212,21 +13016,12 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"hry" = ( -/obj/structure/machinery/conveyor{ - dir = 10; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/cargo_intake) "hrH" = ( -/obj/structure/platform_decoration, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "hrU" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/prison/darkbrownfull2, @@ -14238,9 +13033,9 @@ /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) "hsz" = ( -/obj/structure/machinery/floodlight, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement1, +/area/lv522/indoors/lone_buildings/engineering) "hsA" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice12"; @@ -14253,20 +13048,8 @@ layer = 2; name = "weak acid" }, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/platingdmg1, /area/lv522/indoors/a_block/admin) -"htu" = ( -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "vent4"; - pixel_x = -2; - pixel_y = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) "htA" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -14277,24 +13060,9 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"htN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"htX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/command_centre) -"hup" = ( -/obj/item/tool/crowbar, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/command_centre) -"huq" = ( -/obj/structure/barricade/wooden{ - dir = 8 +"huq" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, /obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/shiva/radiator_tile2, @@ -14324,9 +13092,13 @@ /turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "hvh" = ( -/obj/structure/platform, -/turf/open/gm/river, -/area/lv522/atmos/sewer) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "hvD" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 @@ -14335,18 +13107,15 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) "hvE" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 }, -/turf/open/floor/prison/floor_plate, +/turf/open/asphalt/cement, /area/lv522/outdoors/nw_rockies) "hwa" = ( /obj/structure/platform/stair_cut{ @@ -14366,16 +13135,10 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) -"hwr" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/command_centre) "hwt" = ( -/turf/open/floor/corsat/brown, +/turf/closed/wall/strata_outpost, /area/lv522/atmos/east_reactor) "hwF" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -14389,13 +13152,11 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) "hwG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "hxn" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -14412,10 +13173,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"hxV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/command_centre) "hxY" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -14427,9 +13184,6 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"hye" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/command_centre) "hyf" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, @@ -14470,43 +13224,11 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/fitness) -"hzq" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/command_centre) "hzu" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) -"hzw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/way_in_command_centre) -"hzA" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) -"hzM" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/cargo_intake) "hzO" = ( /obj/structure/surface/rack, /obj/item/reagent_container/spray/cleaner{ @@ -14521,17 +13243,13 @@ /turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "hzV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_x = -1; - pixel_y = 2 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC, +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "hAd" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; @@ -14558,21 +13276,23 @@ /turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "hAk" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + icon_state = "flammable_pipe_3"; + pixel_x = -18 + }, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/oob) "hAr" = ( -/obj/structure/window/reinforced{ - dir = 8 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_garage_1" }, -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) "hAs" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/reactor_garage) "hAw" = ( /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "white" @@ -14593,9 +13313,12 @@ /turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) "hAD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/reactor_garage) +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) "hAE" = ( /obj/structure/fence{ layer = 2.9 @@ -14610,40 +13333,46 @@ /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "hAK" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/command_centre) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/reactor_garage) "hAX" = ( /obj/item/weapon/gun/boltaction, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) "hBf" = ( -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/command_centre) +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/reactor_garage) "hBg" = ( -/obj/structure/cryofeed, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/bluegrid, -/area/lv522/atmos/east_reactor) +/obj/structure/prop/vehicles/crawler{ + dir = 8; + layer = 3.1; + pixel_x = 5; + pixel_y = 7 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) "hBp" = ( /obj/structure/dispenser/oxygen, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "hBB" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/command_centre) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "hBC" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/autopsy_scanner, /obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) -"hBD" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/command_centre) "hCi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -14658,24 +13387,25 @@ /turf/open/floor/prison/blue/northwest, /area/lv522/indoors/a_block/admin) "hCv" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/command_centre) -"hCH" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/way_in_command_centre) +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "hCU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/east) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) "hCV" = ( /obj/item/stool, /turf/open/floor/strata/white_cyan1, /area/lv522/indoors/lone_buildings/chunk) "hDa" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/command_centre) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) "hDe" = ( /obj/item/tool/lighter/zippo{ layer = 3.1; @@ -14686,13 +13416,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) -"hDh" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/command_centre) -"hDy" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/atmos/command_centre) "hDE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -14723,10 +13446,6 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/admin) -"hEJ" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) "hES" = ( /obj/structure/bed/chair{ dir = 4 @@ -14742,13 +13461,8 @@ /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "hFu" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/command_centre) -"hFA" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) "hFG" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/darkbrownfull2, @@ -14763,30 +13477,30 @@ /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_east_street) "hFS" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/command_centre) +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/floor_marked, +/area/lv522/atmos/cargo_intake) "hFX" = ( /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/south_street) "hGg" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/bed/sofa/vert/white, -/turf/open/floor/whiteyellowfull/east, +/obj/structure/bed/sofa/vert/grey, +/obj/item/shard{ + icon_state = "medium"; + pixel_x = -10; + pixel_y = -8 + }, +/turf/open/floor/prison, /area/lv522/indoors/a_block/corpo/glass) -"hGm" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) "hGJ" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) +/obj/structure/cargo_container/lockmart/left, +/turf/open/floor/prison/floor_marked, +/area/lv522/atmos/cargo_intake) "hGU" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/obj/structure/cargo_container/lockmart/mid, +/turf/open/floor/prison/floor_marked, +/area/lv522/atmos/cargo_intake) "hGX" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -14798,10 +13512,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"hHd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) "hHe" = ( /obj/structure/platform{ dir = 1 @@ -14814,27 +13524,30 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"hHj" = ( -/obj/structure/largecrate, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "hHN" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/obj/structure/cargo_container/lockmart/right, +/turf/open/floor/prison/floor_marked, +/area/lv522/atmos/cargo_intake) "hHY" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/command_centre) +/obj/item/prop/colony/used_flare, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/cargo_intake) "hIf" = ( /turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2) "hIp" = ( -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) "hIx" = ( /obj/structure/machinery/light{ dir = 4 @@ -14845,13 +13558,6 @@ /area/lv522/indoors/c_block/casino) "hIz" = ( /obj/structure/surface/table/almayer, -/obj/item/restraint/handcuffs{ - pixel_y = 12 - }, -/obj/item/restraint/handcuffs{ - pixel_y = 6 - }, -/obj/item/restraint/handcuffs, /obj/item/weapon/classic_baton, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) @@ -14874,15 +13580,26 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/hydro) "hIS" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/command_centre) +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/structure/fence{ + layer = 2.9 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) "hIZ" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/reactor_garage) "hJp" = ( /obj/structure/machinery/light{ dir = 4 @@ -14891,15 +13608,16 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "hJq" = ( -/obj/structure/platform/strata, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) +/obj/structure/powerloader_wreckage, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "hJB" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/west) +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/atmos/way_in_command_centre) "hJG" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -14936,28 +13654,31 @@ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"hKG" = ( -/obj/structure/prop/invuln/ice_prefab/standalone, -/turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/nw_rockies) +"hKG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "hKI" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) +/obj/item/storage/backpack/marine/satchel/scout_cloak, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "hKJ" = ( /turf/open/floor/prison/blue/northeast, /area/lv522/indoors/a_block/admin) "hKK" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "hKO" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -14978,14 +13699,12 @@ /obj/structure/barricade/deployable{ dir = 4 }, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_east_street) "hLl" = ( +/obj/vehicle/train/cargo/trolley, /obj/effect/decal/cleanable/dirt, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/prison/cell_stripe/west, +/turf/open/floor/prison/floor_marked, /area/lv522/indoors/lone_buildings/storage_blocks) "hLm" = ( /obj/effect/decal/cleanable/blood, @@ -15000,12 +13719,10 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "hLF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/structure/machinery/vending/coffee, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "hLK" = ( /obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/prison/darkredfull2, @@ -15013,19 +13730,18 @@ "hLR" = ( /turf/open/shuttle/dropship/can_surgery/light_grey_top_left, /area/lv522/landing_zone_forecon/UD6_Tornado) -"hLT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"hLY" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) "hMb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/admin) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "hMd" = ( /obj/structure/machinery/light, /obj/structure/surface/table/almayer, @@ -15036,14 +13752,6 @@ "hMz" = ( /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_east_street) -"hME" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) "hMI" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -15071,26 +13779,14 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) "hNf" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"hNj" = ( -/obj/structure/machinery/door_control{ - id = "Marked_6"; - name = "Cargo Shutter Control"; - pixel_y = 10 - }, -/obj/structure/surface/table/almayer, -/obj/item/prop{ - desc = "The first page reads. 'Classified Weyland Bio-Weapons Division level eight clearance required.' The rest talks about some sort of XX-121 combat stim?"; - icon = 'icons/obj/items/paper.dmi'; - icon_state = "folder_black"; - name = "Weyland classified intelligence folder"; - pixel_y = -2 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/oob/w_y_vault) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "hNk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -15119,76 +13815,45 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) -"hNP" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) "hNR" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) -"hNV" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 3; - pixel_y = -2 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) -"hNZ" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) "hOl" = ( /obj/structure/bed/bedroll{ dir = 1 }, /obj/item/trash/uscm_mre, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/blue/west, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) -"hOy" = ( -/obj/effect/decal{ - icon = 'icons/mob/xenos/effects.dmi'; - icon_state = "acid_weak"; - layer = 2; - name = "weak acid" - }, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/oob) "hOB" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "hOG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/filt) -"hOH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/closed/wall/mineral/bone_resin, +/area/lv522/oob) "hOI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/command_centre) +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "hOK" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, @@ -15200,34 +13865,20 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "hON" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"hPd" = ( -/obj/structure/prop/vehicles/crawler{ - dir = 8; - icon_state = "crawler_crate_alt2"; - layer = 3.1 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "hPq" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_entry_2" }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"hPz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/command_centre) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) "hPI" = ( /obj/item/prop/alien/hugger, /turf/open/floor/prison/kitchen, @@ -15235,134 +13886,103 @@ "hPM" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"hPO" = ( +/area/lv522/outdoors/nw_rockies) +"hPQ" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"hPQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "LV522 Chances Claim"; - phone_id = "Chief Engineer Office"; - pixel_x = -2; - pixel_y = 6 +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"hQE" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/obj/item/reagent_container/food/drinks/coffeecup/wy{ - pixel_x = 3; - pixel_y = -1 - }, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) -"hQh" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/nw_rockies) -"hQE" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "hQU" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 8 - }, -/turf/closed/wall/shiva/prefabricated/reinforced, -/area/lv522/outdoors/nw_rockies) -"hRd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/command_centre) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "hRj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "hRu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"hRy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) +/area/lv522/outdoors/nw_rockies) "hRz" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "hRG" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"hRW" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "hSi" = ( +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "hSs" = ( /obj/structure/cargo_container/kelland/left{ layer = 4.13 }, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/outdoors/colony_streets/north_east_street) "hSO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/command_centre) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "hSQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/way_in_command_centre) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/cargo_intake) "hTd" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 - }, -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/bcircuit, -/area/lv522/atmos/command_centre) +/obj/item/prop/colony/used_flare, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "hTe" = ( /turf/open/gm/river, /area/lv522/landing_zone_1/tunnel) "hTg" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "hTh" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/west_reactor) +/obj/item/prop/colony/used_flare, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "hTk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) +/obj/structure/ore_box, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) "hTo" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/meson, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/obj/structure/barricade/deployable, +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) "hTA" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ name = "\improper Cargo Bay Break Room"; @@ -15374,12 +13994,11 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/cargo) "hTI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "hTW" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/sand_white/layer0, @@ -15426,21 +14045,18 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "hUY" = ( -/obj/structure/closet/emcloset, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) -"hUZ" = ( -/obj/structure/barricade/deployable, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null +/obj/structure/fence{ + layer = 2.9 }, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"hVk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) "hVu" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, @@ -15465,25 +14081,15 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"hWC" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/prop/almayer/computers/sensor_computer2{ - layer = 2.0 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "hWD" = ( /obj/structure/barricade/deployable, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "hWI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) "hWJ" = ( /obj/structure/machinery/light{ dir = 8 @@ -15491,28 +14097,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/casino) -"hWV" = ( -/obj/structure/barricade/deployable, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"hXt" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) "hXA" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/reactor_garage) "hXO" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 @@ -15524,27 +14114,23 @@ /turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/central_streets) "hXP" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/oob/w_y_vault) +/obj/structure/closet/radiation, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) "hXW" = ( /obj/item/storage/firstaid/adv/empty, /turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/hallway) -"hXZ" = ( -/turf/open/floor/almayer/w_y1/north, -/area/lv522/oob/w_y_vault) "hYf" = ( /turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "hYg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/surface/table/almayer, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/south) -"hYk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/w_y2/north, -/area/lv522/oob/w_y_vault) +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "hYn" = ( /obj/item/tool/pen/blue/clicky{ pixel_x = 6 @@ -15573,17 +14159,9 @@ /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/north_east_street) "hZg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/server_equipment/laptop/closed, -/obj/structure/surface/table/almayer, -/turf/open/floor/strata/blue1, -/area/lv522/outdoors/colony_streets/windbreaker/observation) -"hZn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/oob/w_y_vault) +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) "hZC" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/metal/medium_stack, @@ -15591,16 +14169,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"hZK" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) "hZL" = ( /obj/structure/bed/chair/wood/normal{ dir = 4 @@ -15610,19 +14178,14 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"hZO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) "hZR" = ( /obj/structure/closet/firecloset/full, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "hZZ" = ( -/obj/structure/barricade/deployable, -/turf/open/floor/prison, +/obj/structure/machinery/conveyor, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/cargo_intake) "iad" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -15630,24 +14193,6 @@ }, /turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) -"ial" = ( -/obj/structure/filtration/machine_96x96/indestructible{ - icon_state = "sedimentation" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/oob) -"iam" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"iaM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/rods, -/turf/open/floor/plating, -/area/lv522/outdoors/colony_streets/windbreaker/observation) "iaY" = ( /obj/item/prop/alien/hugger, /obj/structure/pipes/standard/simple/hidden/green{ @@ -15657,31 +14202,13 @@ /area/lv522/indoors/a_block/bridges) "ibk" = ( /obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) -"ibu" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"iby" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) "ibE" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "23" }, /area/lv522/landing_zone_forecon/UD6_Tornado) -"ibT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) "ibW" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -15705,25 +14232,10 @@ }, /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical/glass) -"ick" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) -"icr" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) -"icy" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/engineering) "icE" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "icT" = ( /obj/structure/machinery/light{ @@ -15743,22 +14255,18 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/bridge) "idk" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/reactor_garage) -"idn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/west) -"idq" = ( -/obj/structure/platform{ - dir = 4 +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/command_centre) +"idn" = ( +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "idt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -15766,21 +14274,16 @@ /turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "idH" = ( -/obj/item/device/flashlight/flare/on, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/decal/cleanable/blood, -/obj/item/ammo_magazine/rifle/extended{ - current_rounds = 0; - pixel_x = 6; - pixel_y = 17 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "idL" = ( /turf/closed/wall/shiva/prefabricated/reinforced/hull, /area/lv522/oob) "idX" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/plating, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "iee" = ( /obj/effect/decal/warning_stripes{ @@ -15792,20 +14295,19 @@ /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_west_street) "iel" = ( -/obj/structure/blocker/invisible_wall, +/obj/item/clothing/head/soft/ferret{ + pixel_y = 2 + }, +/obj/structure/largecrate, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) "ien" = ( /turf/closed/wall/solaris/reinforced/hull/lv522, /area/lv522/oob) "ier" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/obj/structure/cargo_container/arious/leftmid, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_east_street) "ieE" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 @@ -15821,23 +14323,13 @@ /turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_street) "ieW" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 6 - }, -/obj/structure/prop/vehicles/crawler{ - density = 0; - dir = 8; - layer = 2.0; - pixel_y = -13 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/north_east_street) "iff" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 4 - }, +/obj/structure/cargo_container/arious/right, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/area/lv522/outdoors/colony_streets/north_east_street) "ifg" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -15847,18 +14339,9 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_forecon/UD6_Tornado) -"ifh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) "ifi" = ( -/obj/structure/cargo_container/hd/left/alt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/reactor_garage) "ifw" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -15887,13 +14370,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"igp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) "igv" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -15907,15 +14383,6 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"igA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) "igL" = ( /obj/structure/machinery/disposal, /turf/open/floor/prison/greenfull/east, @@ -15940,20 +14407,22 @@ /turf/open/floor/prison/blue, /area/lv522/indoors/a_block/hallway) "ihf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/south) +/obj/item/clothing/head/helmet/marine/pilot, +/turf/open/floor/corsat/squares, +/area/lv522/oob/w_y_vault) "ihs" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) "ihy" = ( -/obj/structure/barricade/deployable, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "ihI" = ( -/obj/structure/fence, /obj/effect/decal/warning_stripes{ icon_state = "S" }, @@ -15988,7 +14457,7 @@ dir = 8; icon_state = "p_stair_full" }, -/turf/open/auto_turf/sand_white/layer0, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/bridges/dorms_fitness) "iiL" = ( /obj/structure/machinery/light{ @@ -16004,12 +14473,11 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) "ijv" = ( -/obj/structure/barricade/deployable{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/obj/structure/barricade/deployable, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "ijB" = ( /obj/structure/machinery/shower{ pixel_y = 16 @@ -16022,23 +14490,16 @@ /turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) "ijE" = ( -/obj/structure/barricade/wooden{ - dir = 1; - pixel_y = 7 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) "ijJ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/disposal, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/reactor_garage) "ijO" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/marked, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/corsat, /area/lv522/atmos/east_reactor) "ijR" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -16061,12 +14522,6 @@ }, /turf/open/floor/wood, /area/lv522/indoors/b_block/bar) -"ikr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "ikw" = ( /obj/item/stack/sheet/metal, /turf/open/asphalt/cement/cement4, @@ -16099,24 +14554,17 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/hydro) -"ilK" = ( -/obj/item/stack/sheet/metal, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) "ilR" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) "ilU" = ( -/obj/structure/prop/invuln{ - desc = "big pile energy."; - icon = 'icons/obj/structures/props/ice_colony/barrel_yard.dmi'; - icon_state = "pile_0"; - name = "barrel pile" +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/blocker/invisible_wall, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/reactor_garage) "ilX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -16125,11 +14573,6 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bridge) -"img" = ( -/obj/effect/landmark/objective_landmark/medium, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) "imh" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -16159,10 +14602,6 @@ /obj/item/tool/pen/blue/clicky, /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) -"inp" = ( -/obj/item/prop/colony/used_flare, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) "inA" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, @@ -16172,15 +14611,25 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "inU" = ( -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/n_rockies) +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "iod" = ( -/obj/structure/cargo_container/ferret/mid, -/turf/open/auto_turf/sand_white/layer0, +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/nw_rockies) "ioA" = ( -/obj/structure/cargo_container/ferret/right, -/turf/open/auto_turf/sand_white/layer0, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/fence, +/turf/open/floor/prison/floor_plate, /area/lv522/outdoors/nw_rockies) "ioD" = ( /obj/structure/prop/structure_lattice, @@ -16212,12 +14661,6 @@ "ipx" = ( /turf/open/auto_turf/sand/layer1, /area/lv522/indoors/b_block/bridge) -"ipB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) "ipC" = ( /obj/structure/toilet{ pixel_y = 16 @@ -16246,9 +14689,9 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) "iqb" = ( -/obj/structure/largecrate/random/secure, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "iqg" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -16264,15 +14707,13 @@ "iqw" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/generic, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/obj/structure/platform_decoration, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"iqz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "iqQ" = ( /obj/structure/prop/invuln/ice_prefab{ icon_state = "fab_2" @@ -16300,6 +14741,10 @@ /obj/effect/decal/cleanable/cobweb2, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) +"irF" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) "irH" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/reagent_container/food/drinks/drinkingglass{ @@ -16328,21 +14773,14 @@ /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "iso" = ( -/obj/structure/cargo_container/lockmart/left, -/turf/open/floor/prison/floor_marked/southwest, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "iss" = ( /obj/item/prop/alien/hugger, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"isu" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) "isA" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -16351,48 +14789,41 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen/glass) "isF" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat, +/area/lv522/atmos/way_in_command_centre) +"isL" = ( +/obj/item/prop/colony/used_flare, +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 }, -/obj/structure/barricade/handrail{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"isL" = ( /obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/oob/w_y_vault) -"iti" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" + dir = 1 }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"itl" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"itp" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/area/lv522/atmos/east_reactor/south) +"iti" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "its" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "itz" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/way_in_command_centre) "itE" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan3, @@ -16437,17 +14868,6 @@ /obj/item/prop/colony/used_flare, /turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/hallway) -"iuC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/reactor_garage) -"iuK" = ( -/obj/effect/landmark/survivor_spawner, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/northwest, -/area/lv522/indoors/a_block/admin) "iuW" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/blue/north, @@ -16482,12 +14902,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"ivz" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) "ivN" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ @@ -16520,10 +14934,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"iwJ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/command_centre) "iwV" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/prop/ice_colony/ground_wire{ @@ -16536,17 +14946,30 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) "ixf" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/bed/chair/comfy{ + dir = 1 + }, /turf/open/floor/corsat/marked, -/area/lv522/atmos/command_centre) +/area/lv522/atmos/north_command_centre) "ixs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/corpo/glass) +/area/lv522/atmos/way_in_command_centre) "ixD" = ( -/turf/open/floor/corsat, -/area/lv522/atmos/north_command_centre) +/obj/structure/pipes/standard/manifold/fourway/hidden/green, +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) +"ixL" = ( +/obj/item/prop/alien/hugger, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel) "ixO" = ( /obj/structure/prop/invuln/minecart_tracks/bumper{ dir = 1 @@ -16575,14 +14998,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"iyl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/cargo_intake) -"iyq" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) "iyt" = ( /obj/structure/stairs/perspective{ dir = 6; @@ -16597,27 +15012,10 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) -"iyC" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) "iyE" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) -"iyQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"iyS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/reactor_garage) +/obj/item/prop/colony/canister, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "iyT" = ( /obj/structure/platform_decoration, /obj/effect/decal/cleanable/dirt, @@ -16639,19 +15037,11 @@ }, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) -"izn" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) "izp" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/glasses/meson, +/obj/effect/decal/cleanable/dirt, /obj/item/shard{ icon_state = "medium" }, -/obj/effect/landmark/objective_landmark/close, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "izr" = ( @@ -16667,17 +15057,11 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "izT" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/mob/living/simple_animal/mouse, -/turf/open/floor/strata/white_cyan1/east, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo) -"izY" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) "iAv" = ( /turf/closed/wall/strata_outpost/reinforced, /area/lv522/atmos/reactor_garage) @@ -16726,17 +15110,6 @@ /obj/effect/landmark/survivor_spawner/lv522_forecon_tech, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"iBs" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"iBI" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "iBQ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/chair, @@ -16760,13 +15133,9 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) "iCk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) "iCC" = ( /obj/effect/landmark/survivor_spawner, /obj/effect/decal/cleanable/dirt, @@ -16789,10 +15158,6 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"iDg" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "iDC" = ( /obj/item/clothing/head/helmet/marine/grenadier{ armor_bullet = 10; @@ -16818,68 +15183,34 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"iEn" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/reactor_garage) "iEq" = ( -/obj/structure/cargo_container/lockmart/mid, -/turf/open/floor/prison/floor_marked/southwest, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "iFk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) -"iFB" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "iFN" = ( /obj/item/explosive/mine/active, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_east_street) "iFO" = ( /obj/structure/surface/rack, /obj/item/clothing/under/colonist, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) -"iFV" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_y = 5 - }, -/obj/item/tool/pen/blue/clicky, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"iGc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "iGk" = ( /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_left_to_right, /area/lv522/landing_zone_forecon/UD6_Typhoon) "iGl" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/obj/item/spacecash/c1000, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/oob/w_y_vault) +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "iGn" = ( /obj/structure/largecrate/random/barrel{ layer = 3.2; @@ -16896,36 +15227,28 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2) "iGD" = ( +/obj/structure/machinery/light/small, /obj/structure/tunnel/maint_tunnel{ pixel_y = 6 }, -/obj/structure/machinery/light/small, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel/far) "iGF" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"iGK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/way_in_command_centre) "iGM" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/space_heater/radiator/red{ +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "Reactor_entry_2" + }, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) "iGQ" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/flashbangs{ @@ -16964,7 +15287,6 @@ /area/lv522/indoors/c_block/mining) "iHD" = ( /obj/item/prop/alien/hugger, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) "iIa" = ( @@ -16985,22 +15307,25 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) "iIt" = ( -/obj/structure/surface/table/almayer, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) +/area/lv522/atmos/east_reactor/south) "iIw" = ( /obj/structure/stairs/perspective{ dir = 4; icon_state = "p_stair_full" }, -/turf/open/auto_turf/sand_white/layer0, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/bridges/dorms_fitness) "iIG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo/glass) "iIK" = ( /obj/structure/foamed_metal, @@ -17022,7 +15347,7 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "iJu" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -17036,25 +15361,20 @@ dir = 8; req_one_access_txt = "100" }, +/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "iJA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/squares, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/west_reactor) "iJE" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) "iJJ" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 - }, -/obj/structure/barricade/wooden{ - layer = 4.1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) "iJS" = ( /obj/structure/machinery/shower{ pixel_y = 16 @@ -17064,41 +15384,31 @@ /turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) "iJW" = ( -/obj/structure/bed/sofa/vert/white/top, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "iJZ" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "iKo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/prison, +/area/lv522/atmos/reactor_garage) "iKw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/cargo_intake) -"iKC" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/command_centre) +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor/south) "iKF" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"iKJ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"iKN" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/command_centre) "iKY" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -17114,19 +15424,14 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/lone_buildings/chunk) "iLg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin/wy{ - pixel_y = 8 - }, -/obj/item/tool/pen/clicky, -/turf/open/floor/strata/white_cyan1/east, +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/bed/chair/comfy/beige, +/turf/open/floor/prison, /area/lv522/indoors/a_block/corpo) "iLn" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/reactor_garage) +/obj/structure/machinery/vending/cola, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "iLq" = ( /obj/structure/surface/table/almayer{ dir = 1; @@ -17135,15 +15440,15 @@ /turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/garden_bridge) "iLC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) "iMv" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 3 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "iMw" = ( /obj/structure/machinery/light{ dir = 8 @@ -17156,28 +15461,30 @@ /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) "iMx" = ( -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin/wy{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/tool/pen, /turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) +/area/lv522/atmos/east_reactor/south) "iMC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" }, /turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) +/area/lv522/atmos/east_reactor/south) "iMQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red, /turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"iMS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/cargo_intake) "iMU" = ( /obj/structure/machinery/light{ dir = 1 @@ -17199,73 +15506,31 @@ /area/lv522/indoors/a_block/admin) "iNs" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/outdoors/colony_streets/north_east_street) "iNX" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/security/glass) "iOi" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 5 +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/power/apc/power/east{ + start_charge = 20 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"iOl" = ( -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "iOt" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"iOY" = ( +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/reactor_garage) +"iPb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"iOw" = ( -/obj/item/storage/toolbox/electrical{ - pixel_y = -6 - }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = -11; - pixel_y = 9 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"iOx" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/east_reactor) -"iOG" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/cargo_intake) -"iOO" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) -"iOY" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "solarpanel1" - }, -/obj/structure/barricade/wooden{ - dir = 8; - layer = 4.1; - pixel_x = -24; - pixel_y = -20 - }, -/obj/structure/barricade/wooden{ - dir = 4; - layer = 4.1; - pixel_x = 15 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"iPb" = ( -/obj/structure/cargo_container/lockmart/right, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/cargo_intake) "iPu" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -17283,9 +15548,8 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "iPD" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "West LZ Storage"; - name = "Emergency Lockdown" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "A-Block_Warehouse" }, /turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/storage_blocks) @@ -17305,14 +15569,20 @@ /turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/fitness) "iPZ" = ( -/turf/open/floor/strata/white_cyan1/east, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/falcon_drone{ + desc = "Some sort of fancy...toy? You're not sure.."; + pixel_x = -12 + }, +/turf/open/floor/prison, /area/lv522/indoors/a_block/corpo) "iQb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/atmos/way_in_command_centre) -"iQe" = ( -/turf/open/floor/corsat/brown/northwest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "iQo" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -17324,12 +15594,6 @@ /obj/structure/cargo_container/wy/mid, /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/north_east_street) -"iQF" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) "iQL" = ( /obj/structure/bed/bedroll{ dir = 5 @@ -17367,16 +15631,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) -"iRY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) -"iSc" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/south) "iSf" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer2, @@ -17442,43 +15696,29 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"iTI" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "iTS" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 10 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/reactor_garage) "iTW" = ( -/obj/item/stack/tile/plasteel{ - name = "ceiling tile"; - pixel_x = -2; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, +/obj/structure/largecrate/random, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/nw_rockies) "iTX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "iTY" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/hazardvest, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/lone_buildings/storage_blocks) "iUj" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/floor_marked/southwest, +/obj/structure/machinery/conveyor{ + dir = 10; + id = "cargo_container" + }, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/cargo_intake) "iUk" = ( /obj/structure/prop/dam/drill{ @@ -17529,7 +15769,7 @@ /obj/structure/machinery/sensortower{ pixel_x = 6 }, -/turf/open/floor/bcircuit, +/turf/open/floor/bluegrid, /area/lv522/indoors/a_block/admin) "iVU" = ( /obj/structure/platform_decoration, @@ -17546,15 +15786,16 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "iWc" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "filtration_machine_A_1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/oob) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/reactor_garage) "iWg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /obj/structure/prop/server_equipment/laptop/on, +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "iWh" = ( @@ -17564,7 +15805,7 @@ "iWo" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "iWp" = ( /obj/structure/bed/chair{ dir = 1 @@ -17574,15 +15815,15 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "iWu" = ( -/obj/structure/filtration/machine_64x96{ - icon_state = "filtration_machine_B_1" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/oob) +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) "iWy" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/way_in_command_centre) "iWz" = ( /turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) @@ -17592,13 +15833,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"iWZ" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) "iXy" = ( /obj/structure/largecrate/random/mini/med{ pixel_x = -12; @@ -17607,12 +15841,9 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "iXI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, /obj/structure/cargo_container/wy/left, /turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "iXM" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -17631,7 +15862,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) "iYc" = ( /obj/structure/machinery/light, @@ -17651,13 +15882,6 @@ /obj/structure/barricade/deployable, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) -"iYs" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/cargo_intake) "iYt" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -17665,27 +15889,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"iYy" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "iYG" = ( /obj/item/stack/sandbags_empty/small_stack, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) "iYL" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/structure/barricade/handrail{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "iYO" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/snacks/donut{ @@ -17701,18 +15915,28 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "iZg" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "iZI" = ( -/turf/open/floor/corsat, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + icon_state = "flammable_pipe_3"; + pixel_y = 16 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + icon_state = "flammable_pipe_3" + }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "iZS" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/way_in_command_centre) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/south) "jab" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/corsat/marked, @@ -17798,15 +16022,18 @@ /area/lv522/indoors/c_block/cargo) "jbn" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/pipes/vents/pump, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/prison, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) -"jbs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) "jbv" = ( /obj/structure/fence{ layer = 2.9 @@ -17820,36 +16047,18 @@ }, /turf/open/floor/strata/floor3/east, /area/lv522/outdoors/colony_streets/central_streets) -"jbI" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 10 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - icon_state = "smokestack"; - pixel_x = -6; - pixel_y = 12 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) "jbO" = ( /obj/structure/pipes/standard/simple/visible{ dir = 6 }, /turf/open/floor/strata/white_cyan3, /area/lv522/indoors/a_block/medical/glass) -"jci" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/cargo_intake) "jcl" = ( +/obj/structure/largecrate/random{ + layer = 2.9 + }, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) -"jcq" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "jct" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic, /turf/open/floor/corsat/marked, @@ -17867,11 +16076,6 @@ /obj/effect/landmark/static_comms/net_two, /turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/c_block/t_comm) -"jdl" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/alien/hugger, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "jdn" = ( /obj/effect/decal/cleanable/blood/drip, /obj/item/reagent_container/hypospray/autoinjector/emergency, @@ -17888,31 +16092,15 @@ }, /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/south_east_street) -"jds" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "jdv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/outdoor) -"jdD" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/corsat/squares, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat, /area/lv522/atmos/cargo_intake) "jeb" = ( -/obj/vehicle/powerloader{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"jef" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/east_reactor/south) +/obj/item/reagent_container/food/snacks/donut, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "jey" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -17947,18 +16135,9 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "jfx" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) @@ -17974,15 +16153,14 @@ /turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "jfH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "jfK" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -18018,11 +16196,6 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) -"jgI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/emcloset, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) "jgV" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, @@ -18064,10 +16237,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"jhS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor) "jhY" = ( /obj/structure/platform{ dir = 4 @@ -18093,19 +16262,17 @@ }, /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) -"jin" = ( -/obj/structure/filtration/machine_96x96/indestructible{ - icon_state = "sedimentation_A_1"; - layer = 3.1 - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/oob) "jis" = ( -/obj/structure/filtration/machine_64x128{ - icon_state = "filtration_1" +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/oob) +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "jix" = ( /obj/structure/platform_decoration{ dir = 8 @@ -18141,57 +16308,20 @@ /turf/open/floor/carpet, /area/lv522/indoors/a_block/executive) "jiW" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/nw_rockies) -"jiY" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) "jjg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"jjj" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Reactor_garage_2" - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"jjl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "jjo" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = -8; - pixel_y = -3 - }, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor/south) "jjq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/power/apc/power/north{ @@ -18214,7 +16344,7 @@ icon_state = "medium" }, /obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "jjG" = ( /obj/structure/prop/ice_colony/ground_wire, @@ -18225,29 +16355,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) -"jjU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop/closed, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"jjV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "jjW" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_garage_1" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) +/area/lv522/atmos/command_centre) "jkp" = ( /obj/structure/fence{ layer = 2.9 @@ -18266,17 +16377,9 @@ /obj/structure/surface/table/almayer, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"jkJ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/way_in_command_centre) "jkL" = ( -/obj/structure/machinery/recharge_station, -/obj/item/shard{ - icon_state = "medium" - }, +/obj/structure/closet/toolcloset, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "jlc" = ( @@ -18300,7 +16403,8 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "jlh" = ( -/obj/structure/pipes/vents/pump, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "jll" = ( @@ -18310,14 +16414,16 @@ /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) "jln" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/surface/table/almayer, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) +/area/lv522/atmos/east_reactor/south) "jlr" = ( -/turf/open/floor/coagulation/icon0_8, -/area/lv522/oob) +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor) "jlu" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -18362,25 +16468,18 @@ /obj/effect/decal/cleanable/blood, /obj/effect/spawner/gibspawner/human, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"jmU" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/coagulation/icon4_8, -/area/lv522/oob) +/area/lv522/outdoors/nw_rockies) "jmW" = ( -/obj/item/prop/colony/used_flare, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/corsat/brown/southeast, /area/lv522/atmos/cargo_intake) "jmX" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/reactor_garage) +/obj/structure/janitorialcart, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) "jnb" = ( /obj/structure/machinery/light{ dir = 4 @@ -18401,15 +16500,14 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) "jnp" = ( -/turf/open/floor/coagulation/icon8_8, -/area/lv522/oob) +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/corporate, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "jnr" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/floodlight, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/asphalt/cement/cement15, +/area/lv522/indoors/lone_buildings/engineering) "jnB" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -18421,9 +16519,8 @@ /area/lv522/indoors/c_block/cargo) "jnE" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/generic, -/turf/open/floor/strata/blue1, +/turf/closed/wall/strata_outpost, /area/lv522/outdoors/colony_streets/windbreaker/observation) "jnF" = ( /obj/effect/decal/warning_stripes{ @@ -18435,7 +16532,7 @@ "joe" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "jom" = ( /obj/structure/prop/invuln/ice_prefab{ @@ -18447,29 +16544,10 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"joJ" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) "joK" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/prop/almayer/computers/sensor_computer2, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Marked_1"; - name = "remote door-control"; - pixel_x = 7; - pixel_y = 16 - }, -/obj/structure/machinery/door_control/brbutton/alt{ - id = "Marked_2"; - name = "remote door-control"; - pixel_x = -8; - pixel_y = 16 - }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/oob) +/obj/structure/cargo_container/grant/left, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) "joL" = ( /obj/structure/platform{ dir = 8 @@ -18489,17 +16567,22 @@ pixel_y = 7 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "jpc" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) "jpm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/structure/desertdam/decals/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 16 + }, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/fitness/glass) "jpx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -18513,23 +16596,15 @@ /mob/living/simple_animal/corgi/puppy, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) -"jqa" = ( -/obj/structure/ore_box, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) "jqr" = ( /turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/south_east_street) -"jqz" = ( -/obj/structure/largecrate/random, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"jqF" = ( -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_west_street) "jqL" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/cargo_intake) "jqO" = ( /obj/structure/platform{ dir = 4 @@ -18544,9 +16619,10 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) "jri" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) +/area/lv522/atmos/reactor_garage) "jrn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, @@ -18625,9 +16701,8 @@ /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "jrT" = ( -/obj/effect/decal/cleanable/blood/xeno, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/reactor_garage) "jsk" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper A-Block Dorms And Office Airlock" @@ -18636,20 +16711,14 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "jsy" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/area/lv522/atmos/reactor_garage) "jsD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) "jsM" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -9; @@ -18657,14 +16726,13 @@ }, /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "jsQ" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"jtf" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/squares, +/obj/structure/machinery/conveyor, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, /area/lv522/atmos/cargo_intake) "jtg" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -18673,29 +16741,14 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "jth" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/west) -"jtu" = ( -/obj/structure/barricade/deployable, -/obj/structure/barricade/deployable{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) -"jtQ" = ( -/obj/structure/prop/ice_colony/ground_wire, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"jtZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "jud" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 - }, -/turf/open/floor/bcircuit, +/turf/open/floor/bluegrid, /area/lv522/indoors/a_block/admin) "jue" = ( /obj/structure/prop/ice_colony/ground_wire, @@ -18706,26 +16759,19 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "jur" = ( -/obj/item/tool/warning_cone{ - pixel_x = -10; - pixel_y = 11 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "jus" = ( -/obj/structure/prop/invuln/ice_prefab/trim{ - dir = 8 - }, -/obj/structure/prop/invuln/ice_prefab/roof_greeble{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/obj/structure/cargo_container/arious/right, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"juw" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/atmos/way_in_command_centre) "juQ" = ( /obj/effect/decal/cleanable/blood/xeno, /obj/effect/decal/cleanable/dirt, @@ -18742,9 +16788,13 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) "jvf" = ( -/obj/structure/cargo_container/arious/leftmid, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "jvh" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/prison/darkredfull2, @@ -18800,19 +16850,19 @@ pixel_x = -9; pixel_y = 4 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "jvG" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "jwx" = ( -/obj/structure/reagent_dispensers/fueltank/gas, +/obj/item/prop/alien/hugger, /obj/structure/machinery/light{ - dir = 4 + dir = 1 }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) +/area/lv522/atmos/command_centre) "jwM" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, @@ -18827,32 +16877,14 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/garage) "jwT" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "jwV" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) -"jxu" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/tool/mop{ - pixel_y = 6 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "jxz" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -18862,6 +16894,9 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "mining_shutter_1" + }, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "jxD" = ( @@ -18878,10 +16913,6 @@ /obj/structure/largecrate/guns/russian, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) -"jxI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) "jxT" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -18895,20 +16926,21 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen) "jyf" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3; - pixel_y = 6 - }, +/obj/structure/machinery/colony_floodlight, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_west_street) "jyw" = ( -/obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "jyx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, +/obj/structure/surface/table/woodentable/fancy, +/obj/item/weapon/pole/fancy_cane, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison, /area/lv522/indoors/a_block/corpo) "jyC" = ( /obj/structure/machinery/light{ @@ -18942,20 +16974,6 @@ }, /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/central_streets) -"jzB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "jzC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/woodentable/fancy, @@ -19039,29 +17057,21 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "jBm" = ( /obj/structure/machinery/vending/hydronutrients, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "jBr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/stack/folding_barricade, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "jBs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness/glass) "jBu" = ( /obj/effect/decal/cleanable/dirt, @@ -19076,16 +17086,12 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/a_block/executive) -"jBy" = ( -/obj/structure/janitorialcart, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) "jBL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/blue/east, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "jBR" = ( /obj/structure/bed/chair{ @@ -19103,37 +17109,31 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_street) "jBY" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/cell_stripe, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/cargo_intake) "jCb" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 10; - icon_state = "fab_2" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) "jCc" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 - }, -/obj/item/stack/sheet/wood{ - layer = 4.1; - pixel_x = 14; - pixel_y = -4 +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) "jCh" = ( /obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/corsat/marked, /area/lv522/landing_zone_1/tunnel) "jCq" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 4 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "jCQ" = ( /obj/structure/platform_decoration{ dir = 8 @@ -19161,7 +17161,7 @@ pixel_y = 8 }, /obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/plating/platingdmg1, +/turf/open/floor/platingdmg1, /area/lv522/indoors/a_block/admin) "jCY" = ( /obj/effect/decal/cleanable/dirt, @@ -19177,7 +17177,7 @@ dir = 6 }, /turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) +/area/lv522/outdoors/nw_rockies) "jDy" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -19186,7 +17186,7 @@ /obj/structure/platform/stair_cut{ icon_state = "platform_stair_alt" }, -/turf/open/asphalt/cement/cement12, +/turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_street) "jDA" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -19201,12 +17201,11 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "jDN" = ( -/obj/structure/filtration/machine_96x96/distribution{ - density = 0; - pixel_y = 16 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "jDO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -19214,46 +17213,24 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) "jEa" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/cargo_container/ferret/left, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "jEk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/structure/cargo_container/ferret/mid, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) +"jEq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/machinery/light{ dir = 4 }, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"jEq" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"jEu" = ( -/obj/structure/sign/safety/rad_haz, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15 - }, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/oob) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "jEF" = ( -/obj/structure/transmitter/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Reactor Meeting Room"; - pixel_y = 26 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/structure/cargo_container/ferret/right, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_east_street) "jEW" = ( /obj/structure/bed/chair{ dir = 1 @@ -19262,21 +17239,14 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "jEX" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/reactor_garage) "jFa" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1 - }, -/obj/structure/window/reinforced{ +/obj/vehicle/powerloader{ dir = 8 }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/area/lv522/atmos/reactor_garage) "jFc" = ( /obj/item/tool/wrench, /obj/effect/decal/cleanable/dirt, @@ -19290,9 +17260,13 @@ /turf/open/gm/river, /area/lv522/landing_zone_1/tunnel/far) "jFr" = ( -/obj/structure/cargo_container/arious/rightmid, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) +/obj/item/prop/alien/hugger, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "jFu" = ( /obj/structure/morgue{ dir = 8 @@ -19304,9 +17278,18 @@ /turf/open/floor/prison/darkpurple2/north, /area/lv522/indoors/a_block/dorms) "jFG" = ( -/obj/structure/cargo_container/arious/right, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"jFP" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/gm/river, +/area/lv522/indoors/c_block/mining) "jGa" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -19327,24 +17310,6 @@ /obj/structure/largecrate/random, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"jGh" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/cargo_container/wy/right, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"jGj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/maintenance_jack, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"jGm" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/coagulation/icon0_5, -/area/lv522/oob) "jGp" = ( /obj/structure/platform{ dir = 1 @@ -19364,10 +17329,7 @@ "jHa" = ( /obj/structure/cargo_container/kelland/left, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"jHb" = ( -/turf/open/gm/river, -/area/lv522/oob) +/area/lv522/outdoors/nw_rockies) "jHi" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/floor/grass, @@ -19378,15 +17340,6 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"jHm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/wypacket{ - pixel_x = 5; - pixel_y = 6 - }, -/obj/item/clothing/suit/storage/jacket/marine/corporate, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) "jHy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -19430,10 +17383,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) -"jII" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/n_rockies) "jIQ" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 @@ -19443,13 +17392,13 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) -"jIR" = ( -/obj/effect/decal/cleanable/greenglow, -/turf/open/gm/river, -/area/lv522/oob) "jJa" = ( -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/north_command_centre) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "jJc" = ( /obj/effect/landmark/objective_landmark/close, /obj/effect/decal/cleanable/dirt, @@ -19476,26 +17425,25 @@ /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical/glass) "jJj" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/coagulation/icon8_3, -/area/lv522/oob) +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor/south) "jJF" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "jJI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/outdoors/colony_streets/windbreaker/observation) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) "jJO" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/filt) +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "jKa" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -19512,21 +17460,25 @@ /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/east_central_street) "jKm" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) +/obj/item/stack/sheet/metal, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "jKo" = ( -/obj/vehicle/train/cargo/engine, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) -"jKu" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/reinforced/prison, +/obj/item/ashtray/glass, +/obj/item/clothing/mask/cigarette{ + pixel_x = 6; + pixel_y = 12 }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/north_command_centre) +/obj/item/clothing/mask/cigarette, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) +"jKu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/strata/blue1, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "jKB" = ( /obj/structure/platform_decoration{ dir = 4 @@ -19540,7 +17492,7 @@ /obj/item/stack/rods, /obj/item/stack/sheet/metal, /obj/structure/pipes/vents/pump, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "jLk" = ( /obj/structure/cargo_container/wy/left, @@ -19597,20 +17549,9 @@ /turf/open/floor/prison, /area/lv522/landing_zone_2) "jMJ" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/oob) -"jMK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/reactor_garage) +/obj/item/prop/colony/used_flare, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_east_street) "jMZ" = ( /obj/structure/surface/table/almayer, /obj/item/tool/pen/blue/clicky{ @@ -19624,8 +17565,10 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "jNv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo/glass) "jNQ" = ( /obj/structure/machinery/space_heater/radiator/red{ @@ -19649,21 +17592,11 @@ /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "jNY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +/turf/open/asphalt/cement/cement12, +/area/lv522/atmos/cargo_intake) "jOh" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/oob) +/turf/open/asphalt/cement/cement15, +/area/lv522/atmos/cargo_intake) "jOr" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 9 @@ -19716,14 +17649,11 @@ /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/indoors/lone_buildings/storage_blocks) "jOG" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/platform{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating, -/area/lv522/oob) +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) "jPg" = ( /obj/structure/platform_decoration, /obj/structure/stairs/perspective{ @@ -19744,31 +17674,28 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "jPk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/indoors/a_block/fitness) "jPv" = ( /turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/colony_streets/central_streets) +/area/lv522/outdoors/colony_streets/north_west_street) "jPw" = ( -/turf/open/floor/plating, -/area/lv522/oob) -"jPz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_x = -1; + pixel_y = 3 + }, /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"jPz" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) -"jPC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) +/area/lv522/atmos/reactor_garage) "jQa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/dam/crane{ @@ -19794,19 +17721,6 @@ "jRT" = ( /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) -"jRY" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"jRZ" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/cargo_intake) "jSk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ @@ -19817,22 +17731,18 @@ }, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) +"jSB" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "jSC" = ( /obj/structure/machinery/light, /obj/structure/machinery/disposal, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"jSR" = ( -/obj/structure/machinery/conveyor, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"jSU" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/corpo/glass) "jSW" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 9 @@ -19843,22 +17753,6 @@ }, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) -"jTb" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"jTi" = ( -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "jTl" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -19869,18 +17763,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) -"jTx" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/lv522/atmos/cargo_intake) -"jTB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "jTH" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -19913,32 +17795,22 @@ }, /turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) -"jUe" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) "jUg" = ( /obj/item/ammo_box/magazine/l42a/ap/empty, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) "jUk" = ( -/turf/open/floor/prison/floor_marked/southwest, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "jUn" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) -"jUq" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) "jUy" = ( /obj/structure/machinery/power/port_gen/pacman/super, /turf/open/floor/prison/darkyellowfull2/east, @@ -19968,16 +17840,19 @@ }, /turf/open/floor/strata/white_cyan1, /area/lv522/indoors/lone_buildings/chunk) -"jUY" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "Reactor_garage_2" - }, -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/atmos/reactor_garage) "jVa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) "jVq" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 4 @@ -19994,10 +17869,13 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/bridge) "jVC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "jVH" = ( /obj/item/paper{ pixel_x = -4; @@ -20018,7 +17896,7 @@ "jVS" = ( /obj/structure/cargo_container/horizontal/blue/top, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "jVV" = ( /obj/structure/prop/invuln/minecart_tracks, /obj/structure/closet/crate/miningcar{ @@ -20034,17 +17912,16 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "jWr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/south) -"jWB" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/south) +/obj/effect/landmark/lv624/fog_blocker/short, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/oob/w_y_vault) "jWV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 + }, +/turf/open/floor/almayer/w_y2, +/area/lv522/atmos/way_in_command_centre) "jWX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -20052,28 +17929,25 @@ /turf/open/floor/prison/darkpurple2/west, /area/lv522/indoors/a_block/dorms) "jWZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform_decoration{ - dir = 1 +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) "jXc" = ( /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "jXp" = ( -/obj/structure/prop/invuln/rope{ - pixel_x = -5; - pixel_y = 26 - }, -/obj/item/weapon/ice_axe/red{ - pixel_y = 3 +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "jXQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -20081,8 +17955,7 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) "jXT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/shale/layer1, +/turf/open/asphalt/cement/cement12, /area/lv522/outdoors/nw_rockies) "jYc" = ( /obj/item/ammo_magazine/rifle/heap{ @@ -20091,10 +17964,10 @@ /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) "jYj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "jYp" = ( /obj/structure/tunnel/maint_tunnel{ pixel_y = 6 @@ -20108,22 +17981,14 @@ /turf/open/floor/plating, /area/lv522/landing_zone_2) "jYu" = ( -/obj/structure/prop/invuln/ice_prefab, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) +/obj/structure/bed/chair/comfy, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/south) "jYy" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/plating, +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) -"jYE" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "jYF" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/shiva/radiator_tile2, @@ -20135,22 +18000,15 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"jYZ" = ( -/obj/structure/filingcabinet, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) "jZc" = ( /obj/structure/flora/jungle/thickbush, /turf/open/organic/grass, /area/lv522/indoors/a_block/garden) "jZe" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/structure/platform_decoration, +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "jZo" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2 @@ -20164,12 +18022,6 @@ "jZD" = ( /turf/open/asphalt/cement/cement3, /area/lv522/landing_zone_1) -"jZE" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) "jZI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red{ @@ -20177,22 +18029,13 @@ }, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) -"jZS" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_1" - }, -/obj/structure/barricade/handrail{ - dir = 4 - }, -/turf/open/floor/coagulation/icon0_5, -/area/lv522/oob) "kaD" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan3/west, /area/lv522/indoors/a_block/medical/glass) "kaQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/north, +/obj/item/prop/colony/used_flare, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/south) "kaV" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -20208,26 +18051,25 @@ /turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "kba" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_2" - }, -/turf/open/gm/river, -/area/lv522/oob) +/obj/item/stack/rods, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "kbb" = ( -/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/deployable{ + dir = 8 + }, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 4 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "kbg" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/suit/storage/hazardvest, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/filt) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) "kbn" = ( /obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/outdoors/colony_streets/north_east_street) "kbo" = ( /obj/structure/surface/rack, @@ -20242,39 +18084,28 @@ dir = 8; pixel_y = -5 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "kbu" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/reactor_garage) "kbF" = ( /obj/structure/surface/table/almayer, /obj/item/cpr_dummy, /turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) -"kbH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) "kbJ" = ( -/obj/vehicle/train/cargo/trolley, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/filt) -"kbM" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_1"; - layer = 5.1 - }, -/obj/structure/barricade/handrail{ - dir = 4 +/obj/structure/machinery/space_heater/radiator/red{ + pixel_y = 16 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/coagulation/icon0_5, -/area/lv522/oob) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) +"kbM" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) "kbS" = ( /obj/item/shard{ icon_state = "medium" @@ -20282,14 +18113,59 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_west_street) "kbV" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) +/obj/structure/pipes/vents/pump, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "kca" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/east) +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/turf/open/floor/sandstone, +/area/lv522/oob/w_y_vault) "kcb" = ( -/turf/closed/wall/mineral/bone_resin, -/area/lv522/atmos/west_reactor) +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/structure/surface/table/almayer, +/obj/item/prop{ + desc = "The first page reads. 'Classified Weyland Bio-Weapons Division level eight clearance required.' The rest talks about some sort of XX-121 combat stim?"; + icon = 'icons/obj/items/paper.dmi'; + icon_state = "folder_black"; + name = "Weyland classified intelligence folder"; + pixel_y = -2 + }, +/obj/structure/machinery/door_control{ + id = "Marked_6"; + name = "Cargo Shutter Control"; + pixel_y = 10 + }, +/turf/open/floor/sandstone, +/area/lv522/oob/w_y_vault) "kcd" = ( /obj/structure/pipes/standard/manifold/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -20302,17 +18178,30 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "kck" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/turf/open/floor/sandstone, +/area/lv522/oob/w_y_vault) +"kco" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) -"kco" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/plating, -/area/lv522/oob) +/area/lv522/atmos/east_reactor/south) "kcv" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, @@ -20325,7 +18214,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "kcC" = ( /obj/structure/prop/ice_colony/ground_wire, @@ -20338,10 +18227,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"kcL" = ( -/obj/item/prop/colony/used_flare, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/n_rockies) "kcN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -20362,19 +18247,17 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) "kda" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/south) +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "kdf" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_y = 2 }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "kdi" = ( /obj/structure/platform{ dir = 8 @@ -20409,18 +18292,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) -"kdw" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Corporate Office Airlock"; - req_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) "kdx" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/auto_turf/shale/layer1, @@ -20429,28 +18300,20 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/dorms_fitness) "kdL" = ( -/obj/structure/filtration/collector_pipes{ - icon_state = "lower_2"; - layer = 5.1 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/plating, -/area/lv522/oob) +/obj/item/prop/colony/used_flare, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "keb" = ( /obj/effect/decal/cleanable/blood/oil/streak, /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "kel" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/coagulation/icon8_3, -/area/lv522/oob) +/obj/effect/decal/cleanable/blood, +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "keq" = ( /obj/structure/platform_decoration{ dir = 8 @@ -20462,11 +18325,7 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) "kfi" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/close, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, +/obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "kfq" = ( @@ -20483,14 +18342,6 @@ }, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) -"kfu" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) "kfv" = ( /obj/structure/largecrate/random/secure, /obj/effect/decal/cleanable/dirt, @@ -20505,19 +18356,10 @@ }, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) -"kfA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) "kfD" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/kitchen) -"kfF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "kfG" = ( /obj/structure/prop/dam/crane/cargo{ dir = 1; @@ -20530,52 +18372,30 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_2) "kgb" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"kgm" = ( /obj/structure/surface/table/almayer, -/obj/structure/prop/server_equipment/laptop/on, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_y = 12 }, /turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) -"kgC" = ( -/obj/structure/machinery/conveyor{ - dir = 5; - id = "cargo_container" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"kgQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"kgR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"kgm" = ( +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "khf" = ( /obj/structure/prop/server_equipment, /turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/outdoor_bot) -"khm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "kho" = ( /obj/structure/dispenser, /turf/open/floor/prison/blue_plate/north, @@ -20591,9 +18411,9 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) "khG" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/item/prop/colony/used_flare, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "khN" = ( /obj/structure/bed/chair{ dir = 8 @@ -20617,14 +18437,6 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) -"kib" = ( -/obj/item/clothing/head/hardhat/white, -/obj/item/prop/alien/hugger{ - pixel_x = 11; - pixel_y = -9 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "kie" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -20637,24 +18449,6 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) -"kih" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) -"kiD" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/structure/largecrate/random, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/cargo_intake) "kiE" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -20686,9 +18480,10 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "kiT" = ( -/obj/item/stack/medical/bruise_pack, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "kiY" = ( /obj/structure/ore_box{ pixel_x = -4 @@ -20730,31 +18525,21 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "kjU" = ( -/obj/item/reagent_container/food/snacks/donut, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/north_command_centre) "kkc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) "kkq" = ( /obj/structure/platform_decoration{ dir = 8 }, /turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/south_west_street) -"kkr" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "kky" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2-4" - }, -/turf/open/floor/plating, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/north_command_centre) "kkB" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -20772,9 +18557,8 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "kkR" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/reactor_garage) "kkS" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/prop/cash_register/off/open{ @@ -20783,18 +18567,8 @@ /turf/open/floor/strata/white_cyan1, /area/lv522/indoors/lone_buildings/chunk) "kkZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/north_command_centre) -"klj" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/outdoor) -"kll" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2-8" - }, -/turf/open/floor/plating, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) "klp" = ( /obj/structure/bed/chair{ dir = 8 @@ -20802,43 +18576,19 @@ /obj/item/prop/alien/hugger, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"klx" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "klz" = ( /obj/structure/curtain/medical, /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical/glass) -"klL" = ( -/obj/structure/machinery/microwave, -/obj/structure/machinery/microwave{ - pixel_y = 13 - }, -/obj/item/trash/ceramic_plate{ - pixel_y = 21 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) -"klW" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) "klY" = ( /obj/structure/foamed_metal, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) "kmd" = ( -/obj/structure/prop/turbine, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/west_reactor) -"kmg" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/prison, +/area/lv522/atmos/reactor_garage) "kmq" = ( /obj/structure/machinery/colony_floodlight{ layer = 4.3 @@ -20848,7 +18598,7 @@ "kms" = ( /obj/item/stack/sheet/metal, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue/northwest, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "kmw" = ( /obj/effect/decal/warning_stripes{ @@ -20862,9 +18612,11 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "kmz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/north_command_centre) +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) "kmE" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -20895,11 +18647,12 @@ /turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "kmP" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/cell_stripe, +/area/lv522/atmos/way_in_command_centre) "kmY" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/peppermill{ @@ -20918,22 +18671,10 @@ /obj/item/prop/alien/hugger, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"kne" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) "kni" = ( /obj/structure/machinery/bioprinter, /turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) -"knt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "knN" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -20943,19 +18684,21 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "knS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/mineral/gold{ + amount = 60; + pixel_y = 6 }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) -"knT" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - density = 0; - pixel_x = -6; - pixel_y = 11 +/obj/item/stack/sheet/mineral/gold{ + amount = 60; + pixel_y = 12 }, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/engineering) +/turf/open/floor/almayer/w_y0, +/area/lv522/oob/w_y_vault) +"knT" = ( +/obj/effect/landmark/corpsespawner/wy/manager, +/turf/open/floor/almayer/w_y1, +/area/lv522/oob/w_y_vault) "knW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ @@ -20964,7 +18707,7 @@ /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "koj" = ( /obj/structure/pipes/vents/pump, @@ -20980,7 +18723,7 @@ "kor" = ( /obj/item/stack/sheet/metal, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "kow" = ( /obj/structure/bed/chair{ dir = 1 @@ -21001,8 +18744,18 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) "kpo" = ( -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/mineral/gold{ + amount = 60; + pixel_y = 6 + }, +/obj/item/stack/sheet/mineral/gold{ + amount = 60; + pixel_y = 12 + }, +/turf/open/floor/almayer/w_y2, +/area/lv522/oob/w_y_vault) "kpu" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -21019,18 +18772,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"kpE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"kpG" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor/south) "kpN" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -21041,16 +18782,18 @@ /turf/open/floor/plating, /area/lv522/indoors/a_block/security) "kqa" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/filt) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/greenfull, +/area/lv522/indoors/a_block/fitness) "kqb" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/kitchen) -"kqp" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/north_east_street) "kqJ" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -21064,25 +18807,12 @@ }, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_east_street) -"kqX" = ( -/obj/item/clipboard, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "kri" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/reactor_garage) -"krj" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "krm" = ( /obj/structure/surface/table/almayer{ flipped = 1 @@ -21090,14 +18820,15 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) "krw" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) "kry" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/atmos/reactor_garage) "krH" = ( /turf/open/floor/prison/blue_plate/north, /area/lv522/outdoors/colony_streets/north_east_street) @@ -21123,26 +18854,28 @@ /turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "ksf" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 8; - icon_state = "fab_2" - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) +/obj/structure/machinery/deployable/barrier, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/atmos/way_in_command_centre) "ksk" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/colony_streets/windbreaker/observation) "ksm" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/north_command_centre) +/obj/structure/machinery/deployable/barrier, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "kss" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/east_reactor/south) "ksA" = ( /turf/open/floor/corsat/plate, @@ -21165,20 +18898,22 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "kti" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 +/obj/structure/machinery/door/poddoor/almayer/closed{ + id = "Corpo Vault"; + name = "Vault Lockdown" }, -/turf/open/floor/plating, -/area/lv522/oob) +/obj/effect/landmark/lv624/fog_blocker/short, +/turf/open/floor/corsat/marked, +/area/lv522/oob/w_y_vault) "ktp" = ( -/obj/structure/platform, -/turf/open/floor/plating, -/area/lv522/oob) +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/turf/open/floor/prison/whitegreenfull, +/area/lv522/indoors/a_block/fitness) "ktx" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -21219,22 +18954,11 @@ /obj/item/device/camera, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) -"kup" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/prison/blue/east, -/area/lv522/indoors/a_block/admin) "kuD" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"kuN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "kvc" = ( /obj/structure/cargo_container/horizontal/blue/middle, /turf/open/floor/prison, @@ -21260,7 +18984,7 @@ pixel_x = 3; pixel_y = 11 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness/glass) "kvM" = ( /obj/structure/pipes/vents/pump, @@ -21268,15 +18992,9 @@ /turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "kwc" = ( -/obj/structure/stairs/perspective{ - dir = 6; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"kwg" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/way_in_command_centre) +/area/lv522/atmos/reactor_garage) "kwj" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -21286,19 +19004,18 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "kwt" = ( -/obj/structure/platform, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 6; - layer = 3.51 +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/plating, -/area/lv522/oob) +/turf/open/floor/prison/whitegreenfull, +/area/lv522/indoors/a_block/fitness) "kwJ" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/north_command_centre) +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) "kwK" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 1 @@ -21314,10 +19031,6 @@ }, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) -"kxm" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) "kxq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/packaged_burrito, @@ -21341,9 +19054,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurple2/east, /area/lv522/indoors/a_block/dorms) -"kyb" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/cargo_intake) "kyo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -21352,12 +19062,8 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) "kyz" = ( -/obj/item/storage/box/donkpockets{ - pixel_x = -14; - pixel_y = -2 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/north_command_centre) "kyB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -21382,23 +19088,19 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) -"kyK" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/cargo_intake) "kzc" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "kzd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/prison, +/area/lv522/atmos/reactor_garage) "kze" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/prison/blue/west, @@ -21409,11 +19111,11 @@ }, /area/lv522/landing_zone_forecon/UD6_Tornado) "kzl" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 9 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/reactor_garage) "kzr" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/wy_chips_pepper, @@ -21428,10 +19130,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/east_central_street) -"kzG" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) "kzR" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "Bathroom" @@ -21460,12 +19158,6 @@ "kAG" = ( /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/bridge) -"kAI" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) "kBj" = ( /obj/structure/cargo_container/horizontal/blue/top, /turf/open/floor/prison, @@ -21477,21 +19169,17 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) "kBm" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "kBq" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/lv522/atmos/cargo_intake) -"kBv" = ( -/obj/structure/prop/invuln/ice_prefab{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 10 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/reactor_garage) "kBz" = ( /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/floor/prison, @@ -21512,27 +19200,15 @@ layer = 3.1 }, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"kBJ" = ( -/obj/item/prop/colony/canister, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/area/lv522/outdoors/nw_rockies) "kBK" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/plating, -/area/lv522/atmos/filt) -"kBL" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/obj/structure/largecrate/random, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) "kBT" = ( /obj/structure/cargo_container/horizontal/blue/bottom, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "kBU" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/pen/blue/clicky, @@ -21547,7 +19223,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_west_street) "kCC" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -21577,11 +19253,6 @@ /obj/structure/cargo_container/ferret/left, /turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/north_west_street) -"kCM" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "kCN" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/wooden_tv/broadcast{ @@ -21604,12 +19275,6 @@ }, /turf/open/floor/prison/blue/west, /area/lv522/indoors/a_block/admin) -"kDU" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) "kDY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -21634,10 +19299,6 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) -"kEj" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/reactor_garage) "kEl" = ( /obj/structure/platform_decoration{ dir = 4 @@ -21650,21 +19311,17 @@ }, /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/east_central_street) -"kEx" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_ew_full_cap" - }, -/obj/structure/platform/stair_cut/alt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"kEA" = ( +"kEp" = ( /obj/structure/machinery/door/airlock/almayer/maint, +/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) +/area/lv522/indoors/c_block/mining) "kEL" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/atmos/way_in_command_centre) "kEN" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/item/prop{ @@ -21692,7 +19349,7 @@ /area/lv522/indoors/c_block/bridge) "kEW" = ( /obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "kEZ" = ( /obj/structure/platform_decoration{ @@ -21712,10 +19369,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"kFo" = ( -/obj/item/clothing/suit/storage/marine/M3G, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) "kFx" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan3/southeast, @@ -21725,18 +19378,19 @@ /turf/open/floor/plating, /area/lv522/landing_zone_2) "kFK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/barricade/deployable{ + dir = 1 }, -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_street) -"kFP" = ( -/obj/structure/platform/strata{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/platform/strata, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"kFP" = ( +/obj/structure/curtain/red, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) "kGa" = ( /obj/structure/largecrate/random{ pixel_x = -5 @@ -21761,12 +19415,11 @@ /obj/structure/tunnel, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) -"kHd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/almayer/w_y0/north, -/area/lv522/atmos/way_in_command_centre) +"kHa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "kHy" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/flashbangs{ @@ -21820,7 +19473,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_west_street) "kIj" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -21833,15 +19486,14 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_west_street) "kIs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/plating, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) "kIM" = ( /obj/item/ammo_magazine/rifle/m4ra/ap{ @@ -21877,13 +19529,8 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "kJc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/east_reactor/south) "kJh" = ( /obj/item/stack/rods, @@ -21898,12 +19545,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) -"kJV" = ( -/obj/structure/filtration/machine_96x96{ - icon_state = "disinfection" - }, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/oob) "kKc" = ( /obj/structure/toilet{ pixel_y = 16 @@ -21913,30 +19554,23 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, +/turf/open/floor/strata/white_cyan2, /area/lv522/indoors/a_block/dorms) -"kKh" = ( -/obj/structure/barricade/handrail{ - dir = 1 - }, -/turf/open/floor/coagulation/icon2_0, -/area/lv522/oob) "kKj" = ( /obj/structure/machinery/colony_floodlight, /turf/open/floor/corsat/marked, /area/lv522/outdoors/colony_streets/north_east_street) "kKD" = ( -/obj/effect/landmark/monkey_spawn, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) +/obj/structure/closet/crate/trashcart, +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/outdoors/colony_streets/north_east_street) "kKR" = ( /turf/open/floor/plating/platingdmg1, /area/lv522/indoors/a_block/dorms) "kLc" = ( -/obj/item/clothing/head/hardhat, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/reactor_garage) "kLe" = ( /obj/structure/bed/chair{ dir = 4 @@ -21944,15 +19578,10 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "kLs" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) +/obj/effect/decal/cleanable/dirt, +/mob/living/simple_animal/mouse, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo) "kLO" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -21970,10 +19599,7 @@ /obj/structure/platform/stair_cut{ icon_state = "platform_stair_alt" }, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/auto_turf/sand_white/layer0, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/bridges/dorms_fitness) "kMr" = ( /obj/structure/coatrack{ @@ -21988,7 +19614,7 @@ pixel_x = 8; pixel_y = 11 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "kMN" = ( /obj/item/reagent_container/food/drinks/flask/marine, @@ -22004,6 +19630,11 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) +"kNo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) "kNw" = ( /obj/item/prop/alien/hugger, /obj/structure/pipes/standard/simple/hidden/green{ @@ -22048,57 +19679,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"kOE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/cargo_intake) -"kOF" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"kOJ" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/obj/structure/barricade/handrail{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"kOQ" = ( -/obj/structure/machinery/conveyor{ - dir = 8; - id = "cargo_container" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/cargo_intake) "kOS" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"kOU" = ( -/obj/structure/machinery/conveyor{ - dir = 10; - id = "cargo_container" - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/cargo_intake) "kOV" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_west_street) -"kPG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) "kPJ" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 @@ -22110,11 +19698,10 @@ /turf/open/floor/corsat/marked, /area/lv522/landing_zone_1/ceiling) "kPO" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 5 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, +/area/lv522/atmos/reactor_garage) "kPT" = ( /obj/structure/cargo_container/horizontal/blue/top, /obj/effect/decal/warning_stripes{ @@ -22134,48 +19721,19 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"kQw" = ( -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/cargo_intake) "kQJ" = ( /obj/item/explosive/mine/active{ dir = 8 }, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_east_street) -"kQK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/cargo_intake) "kQR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/cargo_intake) -"kQS" = ( -/obj/item/stack/tile/plasteel{ - name = "ceiling tile"; - pixel_x = -2; - pixel_y = 1 - }, -/obj/effect/spawner/gibspawner/xeno, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) "kQW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"kRa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/cargo_intake) +/turf/open/asphalt/cement/cement15, +/area/lv522/outdoors/nw_rockies) "kRb" = ( /obj/item/weapon/telebaton, /obj/effect/decal/cleanable/dirt, @@ -22187,7 +19745,7 @@ }, /obj/structure/cargo_container/grant/rightmid, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "kRg" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -22203,33 +19761,28 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) -"kRp" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "kRw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/cell_stripe, +/area/lv522/atmos/reactor_garage) "kRB" = ( /obj/structure/machinery/light, /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, +/turf/open/floor/strata/white_cyan2, /area/lv522/indoors/a_block/dorms) "kRJ" = ( -/obj/effect/landmark/monkey_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) "kRQ" = ( /turf/open/floor/wood, /area/lv522/indoors/a_block/security) @@ -22285,18 +19838,17 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) "kSC" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/cargo_intake) +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/atmos/reactor_garage) "kSR" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 }, /obj/structure/cargo_container/grant/right, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "kSS" = ( /obj/structure/cargo_container/horizontal/blue/middle, /obj/effect/decal/warning_stripes{ @@ -22315,14 +19867,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) -"kTd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) "kTm" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -22340,7 +19884,7 @@ layer = 2.9 }, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "kTs" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/pipes/standard/simple/hidden/green{ @@ -22361,7 +19905,7 @@ /obj/structure/prop/invuln/ice_prefab/standalone{ icon_state = "white" }, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_east_street) "kUf" = ( /obj/structure/machinery/vending/snack, @@ -22372,20 +19916,11 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) "kUs" = ( -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) -"kUF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_x = -1; - pixel_y = 2 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) "kUH" = ( /obj/structure/closet/emcloset, /turf/open/floor/prison/darkredfull2, @@ -22398,7 +19933,7 @@ layer = 2.9 }, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "kUM" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper A-Block Corporate Office Airlock" @@ -22412,13 +19947,6 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) -"kVa" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) "kVh" = ( /obj/item/prop/colony/used_flare, /turf/open/floor/prison, @@ -22434,14 +19962,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms) -"kVG" = ( -/obj/structure/cargo_container/kelland/left, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) "kVO" = ( -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) "kVP" = ( /obj/effect/spawner/gibspawner/xeno, /obj/effect/decal/cleanable/dirt, @@ -22453,7 +19979,7 @@ /area/lv522/indoors/a_block/hallway) "kVT" = ( /obj/item/stack/rods, -/turf/open/floor/prison/blue/north, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "kVV" = ( /obj/item/ammo_magazine/rifle/heap{ @@ -22461,47 +19987,24 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"kWa" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 8 - }, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/cargo_intake) "kWi" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"kWH" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) "kWZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"kXa" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 3 - }, -/obj/structure/machinery/computer3/server/rack, -/turf/open/floor/bcircuit, -/area/lv522/atmos/east_reactor/south) "kXc" = ( -/turf/closed/wall/solaris/reinforced/hull/lv522, -/area/lv522/outdoors/colony_streets/central_streets) -"kXe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 3 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) "kXf" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/dirt, @@ -22528,19 +20031,12 @@ /obj/effect/landmark/objective_landmark/close, /turf/open/floor/strata/multi_tiles, /area/lv522/indoors/c_block/mining) -"kXo" = ( +"kXY" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 9 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"kXB" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) -"kXY" = ( -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "kYm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -22552,7 +20048,7 @@ dir = 8; flipped = 1 }, -/turf/open/floor/prison/blue/northwest, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "kYH" = ( /obj/structure/barricade/wooden{ @@ -22575,12 +20071,9 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "kZe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, +/obj/structure/machinery/photocopier, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/area/lv522/indoors/a_block/corpo) "kZj" = ( /obj/item/ammo_magazine/rifle/m4ra/ap{ current_rounds = 0 @@ -22616,24 +20109,18 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/damage) "lag" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"lao" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) +/area/lv522/atmos/reactor_garage) "lau" = ( /obj/item/stack/sheet/metal, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/blue/east, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "laX" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -22662,16 +20149,15 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "lbo" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "lbt" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Reactor_entry_1" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/cargo_intake) "lbA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -22689,14 +20175,15 @@ /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) "lbI" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; +/obj/effect/decal/warning_stripes{ + icon_state = "N"; pixel_x = -1; - pixel_y = 3 + pixel_y = 2 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 }, /turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) @@ -22705,14 +20192,19 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "lbX" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/command_centre) +"lcD" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/outdoor) +/obj/structure/ore_box, +/turf/open/floor/plating/platebot, +/area/lv522/indoors/c_block/cargo) "lcK" = ( /obj/structure/machinery/light{ dir = 8 @@ -22726,9 +20218,12 @@ /turf/open/floor/prison/kitchen, /area/lv522/indoors/b_block/bar) "lcP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/west_reactor) +/obj/structure/pipes/vents/pump, +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) "lcT" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/camera/autoname{ @@ -22746,9 +20241,16 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "ldi" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "ldr" = ( /obj/effect/decal/cleanable/blood/xeno{ icon_state = "xgib3" @@ -22763,13 +20265,6 @@ /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"ldy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe, -/area/lv522/atmos/reactor_garage) "ldC" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating, @@ -22781,7 +20276,7 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) "leg" = ( -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness/glass) "leh" = ( /obj/structure/machinery/space_heater/radiator/red{ @@ -22804,22 +20299,6 @@ /obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"leG" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_entry_2" - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"leH" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/item/clothing/suit/storage/marine/medium/rto, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/south) "leI" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -22842,35 +20321,38 @@ /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/south_street) "leV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 1 +/obj/structure/surface/table/woodentable/fancy, +/obj/item/folder/white{ + pixel_y = 8 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/admin) +/obj/item/folder/yellow{ + pixel_y = 4 + }, +/obj/item/folder/red, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/corpo) "lfe" = ( /obj/structure/window_frame/strata, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) -"lfj" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) "lfA" = ( /obj/structure/closet/crate, /obj/item/weapon/classic_baton, /turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2) "lfS" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/nw_rockies) +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/corpo) "lfU" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, /turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) "lgf" = ( -/obj/structure/pipes/vents/pump, +/obj/effect/landmark/xeno_spawn, /turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/area/lv522/atmos/west_reactor) "lgY" = ( /obj/structure/platform_decoration{ dir = 1 @@ -22886,7 +20368,7 @@ pixel_x = 7 }, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "lhd" = ( /obj/effect/decal/cleanable/blood/xeno, /obj/structure/pipes/standard/simple/hidden/green, @@ -22903,11 +20385,8 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) "lhD" = ( -/obj/structure/barricade/handrail{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/west_reactor) "lhE" = ( /obj/structure/cargo_container/hd/left/alt, /turf/open/floor/prison/floor_marked/southwest, @@ -22934,62 +20413,28 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/security) "lit" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, /turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) -"liD" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/cargo_intake) -"liK" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/area/lv522/atmos/north_command_centre) "liN" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"ljd" = ( -/obj/item/prop/colony/used_flare, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"ljm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) "ljq" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating, -/area/lv522/atmos/cargo_intake) +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/prison/blue_plate, +/area/lv522/outdoors/colony_streets/north_east_street) "ljr" = ( /turf/closed/shuttle/elevator{ dir = 10 }, /area/lv522/indoors/c_block/mining) "ljA" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/gm/river, -/area/lv522/atmos/filt) -"ljQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/blue_plate, +/area/lv522/outdoors/colony_streets/north_east_street) "ljW" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan1, @@ -23001,23 +20446,12 @@ /obj/item/prop/colony/used_flare, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"lkl" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "lko" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) -"lkx" = ( -/obj/item/fuel_cell{ - pixel_x = -8; - pixel_y = -2 +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor) +/turf/open/floor/prison/greenfull, +/area/lv522/indoors/a_block/fitness) "lkH" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 @@ -23030,15 +20464,10 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/kitchen) "llG" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/south) -"llJ" = ( -/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/area/lv522/atmos/reactor_garage) "llM" = ( /obj/item/tool/kitchen/knife/butcher, /obj/effect/decal/cleanable/dirt, @@ -23049,15 +20478,12 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) "llX" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 1; - icon_state = "fab_2" - }, -/obj/structure/prop/invuln/ice_prefab{ - icon_state = "fab_2" +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Reactor_entry_1" }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) "lmo" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -23075,19 +20501,6 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) -"lmu" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/south) -"lmz" = ( -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "lmA" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, @@ -23135,53 +20548,31 @@ /obj/item/stack/folding_barricade, /turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) -"lmY" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/atmos/east_reactor/south) -"lnd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/cell_stripe, -/area/lv522/atmos/east_reactor/south) "lnj" = ( /obj/structure/barricade/wooden{ dir = 1 }, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) -"lnC" = ( -/obj/structure/largecrate/supply/supplies/water, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) "lnF" = ( -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/filt) +/obj/structure/bookcase{ + density = 0; + icon_state = "book-5" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo) "lnH" = ( /obj/structure/surface/table/almayer, /obj/item/ore/gold, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "lnK" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"lnL" = ( -/obj/structure/prop/invuln/ice_prefab{ - dir = 1 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/reactor_garage) "lnQ" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -23191,9 +20582,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"lnU" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/filt) "lot" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -23210,12 +20598,9 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "loD" = ( -/obj/structure/machinery/conveyor{ - dir = 5; - id = "cargo_container" - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/cargo_intake) +/obj/structure/prop/turbine, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/west_reactor) "loS" = ( /obj/structure/bed/chair{ dir = 8 @@ -23223,6 +20608,9 @@ /obj/item/prop/alien/hugger, /turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) +"lpe" = ( +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/oob) "lpi" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -23235,13 +20623,13 @@ /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) "lpt" = ( -/obj/structure/cargo_container/watatsumi/right, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/structure/platform, +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "lpy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/filt) +/area/lv522/outdoors/colony_streets/north_street) "lpH" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -23254,13 +20642,17 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security/glass) "lqb" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/atmos/cargo_intake) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) "lqd" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "lqI" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/lightstick/red/spoke/planted{ @@ -23276,21 +20668,9 @@ /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/bridges/garden_bridge) "lqY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"lrd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/south) -"lrh" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/window/framed/strata/reinforced, /turf/open/floor/corsat/marked, -/area/lv522/atmos/cargo_intake) +/area/lv522/atmos/way_in_command_centre) "lrm" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 5 @@ -23298,15 +20678,11 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "lrr" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_garage_3" - }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) +/area/lv522/atmos/command_centre) "lrt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -23314,25 +20690,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/security) -"lrG" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) "lrJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) -"lrM" = ( -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/reactor_garage) "lrQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) "lsf" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/southwest, @@ -23370,6 +20739,10 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"ltw" = ( +/obj/structure/platform/strata, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/oob) "lty" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -23431,49 +20804,44 @@ /turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "lvH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/way_in_command_centre) "lvN" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/barricade/deployable{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/way_in_command_centre) +"lwc" = ( +/obj/structure/barricade/deployable{ + dir = 1 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/nw_rockies) -"lvX" = ( -/obj/structure/bed/chair/comfy{ +/obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"lwc" = ( -/obj/structure/prop/vehicles{ - icon_state = "truck_damaged" - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/way_in_command_centre) "lwm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/east_reactor/south) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/west) "lwr" = ( -/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/south) "lwv" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/central_streets) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo) "lwH" = ( /obj/structure/surface/rack, /obj/item/frame/table/almayer{ @@ -23520,13 +20888,21 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) "lxN" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/corpo/glass) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "lxW" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) +/obj/item/stack/rods, +/obj/item/shard, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo) "lxZ" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -23539,11 +20915,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"lyu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "lyD" = ( /turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/south_street) @@ -23556,11 +20927,7 @@ /area/lv522/indoors/a_block/admin) "lzb" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/obj/structure/machinery/light, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/way_in_command_centre) "lze" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -23624,11 +20991,6 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_east_street) -"lAa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) "lAj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -23651,29 +21013,6 @@ "lAn" = ( /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) -"lAA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) -"lAD" = ( -/obj/structure/foamed_metal, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"lAK" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"lAS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "lBd" = ( /obj/structure/machinery/disposal, /turf/open/floor/prison/greenfull/east, @@ -23711,7 +21050,7 @@ dir = 9 }, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "lCh" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -23737,37 +21076,12 @@ /obj/structure/machinery/iv_drip, /turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/hallway) -"lCH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/n_rockies) "lCQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 }, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_west_street) -"lDc" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/structure/machinery/m56d_hmg{ - dir = 8 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"lDk" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"lDr" = ( -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Sergeant Douglas 'Bedwetter' Smith" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/south) "lDC" = ( /obj/structure/bed/chair{ dir = 1 @@ -23782,12 +21096,14 @@ /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/east_central_street) "lDN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor) "lDU" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, @@ -23798,21 +21114,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) -"lEb" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/door_display/research_cell{ - dir = 4; - id = "Reactor_e_entry_3"; - pixel_x = -16; - req_access = null - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/filt) -"lEd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) "lEk" = ( /obj/structure/surface/table/almayer, /obj/item/device/radio{ @@ -23828,33 +21129,22 @@ "lEF" = ( /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/bridges/dorms_fitness) -"lER" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) "lEZ" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/reactor_garage) -"lFa" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/reactor_garage) -"lFd" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) +/area/lv522/atmos/cargo_intake) "lFk" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_x = 4; + pixel_y = 6 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "lFt" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/filt) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor) "lFO" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -23955,17 +21245,13 @@ /turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) "lHu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/disposal{ +/obj/structure/machinery/power/monitor{ density = 0; - layer = 3.1; - pixel_x = -6; pixel_y = 16 }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk/prison, +/obj/item/clothing/gloves/yellow, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) "lHH" = ( /obj/effect/decal/cleanable/dirt, @@ -24025,9 +21311,9 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) "lJl" = ( -/obj/structure/platform_decoration, -/turf/open/gm/river, -/area/lv522/atmos/filt) +/obj/structure/surface/table/almayer, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "lJq" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/shale/layer1, @@ -24053,31 +21339,23 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) -"lKl" = ( -/obj/structure/machinery/vending/snack/packaged, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "lKu" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/effect/spawner/random/powercell, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "lKC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/filt) +/obj/structure/window_frame/strata, +/turf/open/floor/plating, +/area/lv522/indoors/a_block/corpo) "lKF" = ( /obj/structure/barricade/deployable{ dir = 4 }, /obj/effect/landmark/survivor_spawner/lv522_forecon_marksman, -/turf/open/floor/plating/platingdmg3/west, +/turf/open/floor/platingdmg1, /area/lv522/indoors/a_block/admin) "lLl" = ( /obj/structure/foamed_metal, @@ -24085,8 +21363,13 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) "lLA" = ( -/turf/open/floor/corsat, -/area/lv522/atmos/reactor_garage) +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "lLL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/power/apc/power/north{ @@ -24094,29 +21377,10 @@ }, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) -"lMF" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor/south) -"lMH" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) "lML" = ( /obj/effect/decal/cleanable/generic, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) -"lMN" = ( -/obj/structure/barricade/deployable{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "lMT" = ( /obj/structure/machinery/light{ dir = 8 @@ -24164,18 +21428,9 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) "lNA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"lNI" = ( -/obj/item/ammo_magazine/m56d, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/fitness) "lNT" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/squares, @@ -24216,14 +21471,10 @@ /area/lv522/indoors/a_block/medical) "lPf" = ( /obj/structure/stairs/perspective{ - dir = 10; icon_state = "p_stair_full" }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) "lPq" = ( /obj/structure/platform{ dir = 4 @@ -24250,27 +21501,19 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "lPY" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/item/prop/colony/canister{ - pixel_x = 4; - pixel_y = 16 +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" }, -/obj/item/prop/colony/canister{ - pixel_y = 8 +/obj/structure/platform{ + dir = 8 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "lQS" = ( -/obj/structure/prop/vehicles/crawler{ - dir = 8; - icon_state = "crawler_crate_alt2"; - layer = 3.1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/obj/item/stack/folding_barricade, +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) "lRx" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/sriracha{ @@ -24318,10 +21561,6 @@ }, /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/central_streets) -"lSs" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) "lSF" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -24339,14 +21578,11 @@ /area/lv522/indoors/a_block/admin) "lTd" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) "lTi" = ( -/obj/structure/girder, -/turf/open/floor/corsat, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/east_reactor/south) "lTj" = ( /obj/structure/prop/invuln/minecart_tracks, @@ -24363,7 +21599,7 @@ /obj/structure/flora/bush/ausbushes/reedbush{ pixel_y = 11 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "lTQ" = ( /obj/effect/decal/cleanable/blood/gibs/xeno, @@ -24410,9 +21646,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"lUK" = ( -/turf/open/floor/prison, -/area/lv522/outdoors/n_rockies) "lUR" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -24421,13 +21654,11 @@ /turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "lUU" = ( -/obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Corporate Office Airlock"; req_access_txt = "100" }, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) +/area/lv522/atmos/way_in_command_centre) "lUV" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -24487,11 +21718,16 @@ /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/north_east_street) "lWa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/far, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/obj/structure/machinery/faxmachine{ + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "lWf" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -24520,25 +21756,10 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"lXC" = ( -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) "lXO" = ( /obj/effect/decal/cleanable/blood/drip, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) -"lXQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"lXY" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) "lYg" = ( /obj/structure/stairs/perspective{ dir = 6; @@ -24560,12 +21781,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) -"lYK" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) "lYL" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -24585,10 +21800,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"lZq" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) "lZI" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/colony/used_flare, @@ -24607,19 +21818,16 @@ pixel_x = -7; pixel_y = 5 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "lZY" = ( /obj/structure/machinery/light, /turf/open/floor/wood, /area/lv522/indoors/b_block/bar) -"mad" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) "maj" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "mam" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -24656,12 +21864,14 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) +"mbi" = ( +/obj/effect/landmark/lv624/fog_blocker/short, +/obj/effect/landmark/lv624/fog_blocker/short, +/turf/closed/wall/strata_outpost, +/area/lv522/oob) "mbq" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor) "mbr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -24678,12 +21888,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/t_comm) -"mbs" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/south) "mbw" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, @@ -24715,10 +21919,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"mbM" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) "mbO" = ( /obj/structure/cargo_container/horizontal/blue/bottom{ pixel_x = 20 @@ -24747,21 +21947,17 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"mcE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "mcG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/north_command_centre) "mcO" = ( /obj/structure/machinery/portable_atmospherics/canister/empty/oxygen{ layer = 4.4; @@ -24770,11 +21966,6 @@ }, /turf/open/asphalt/cement/cement14, /area/lv522/outdoors/colony_streets/south_street) -"mdp" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/item/tool/weldingtool, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/engineering) "mdr" = ( /obj/structure/bed/chair{ dir = 4 @@ -24785,10 +21976,10 @@ /area/lv522/indoors/c_block/casino) "mdD" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/filt) +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor) "meb" = ( /obj/structure/largecrate/random{ layer = 2.9 @@ -24796,12 +21987,12 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "mee" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/filt) +/obj/structure/largecrate/random/barrel/true_random, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) "men" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/atmos/way_in_command_centre) +/turf/closed/wall/strata_outpost, +/area/lv522/atmos/east_reactor/south) "meq" = ( /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms/glass) @@ -24846,8 +22037,13 @@ pixel_x = 5; pixel_y = -6 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) +"mfK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) "mfV" = ( /obj/structure/machinery/light{ dir = 8 @@ -24873,9 +22069,13 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "mgJ" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "mhn" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine/uscm/brig, @@ -24908,10 +22108,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"mis" = ( -/obj/effect/alien/resin/sticky, -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/east_reactor/south) "miz" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -24919,13 +22115,9 @@ }, /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_street) -"miH" = ( -/turf/open/floor/bcircuit, -/area/lv522/atmos/east_reactor/south) "miW" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_west_street) "miZ" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/prop/ice_colony/ground_wire{ @@ -24934,15 +22126,19 @@ /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/south_east_street) "mjq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/west_reactor) +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/way_in_command_centre) "mjs" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "mjz" = ( /obj/structure/dispenser/oxygen, /turf/open/asphalt/cement, @@ -24958,14 +22154,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) -"mjF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/reactor_garage) -"mjR" = ( -/obj/item/stack/sheet/metal, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/n_rockies) "mjT" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue/southeast, @@ -24975,7 +22163,7 @@ density = 0; pixel_y = 16 }, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) "mjY" = ( /obj/item/shard{ @@ -24986,25 +22174,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/bridge) -"mkb" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/east_reactor/south) "mkd" = ( /obj/item/stack/folding_barricade, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "mkh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "mkm" = ( /obj/structure/closet/crate, /obj/effect/decal/warning_stripes{ @@ -25029,16 +22209,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"mlp" = ( -/obj/structure/machinery/computer3/server/rack{ - density = 0; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/east_reactor/south) "mlv" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/plating, @@ -25055,11 +22225,12 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "mlE" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) "mlO" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -25085,11 +22256,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"mlR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) "mlZ" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin{ @@ -25099,23 +22265,18 @@ /obj/item/tool/pen/blue/clicky, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"mmh" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +"mmj" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, +/obj/item/stack/folding_barricade, /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; - pixel_x = 1 + pixel_x = 1; + pixel_y = -1 }, /turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) -"mmj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) "mmv" = ( /obj/structure/machinery/light{ dir = 8 @@ -25145,12 +22306,6 @@ "mnb" = ( /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_street) -"mnr" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) "mns" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -25160,10 +22315,6 @@ }, /turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) -"mnw" = ( -/obj/item/clothing/suit/storage/marine/M3S, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) "mnx" = ( /obj/structure/bed/chair{ dir = 8 @@ -25188,11 +22339,15 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "mnQ" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 }, /turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) +/area/lv522/atmos/way_in_command_centre) "mnU" = ( /obj/effect/decal/cleanable/dirt, /obj/item/ammo_magazine/rifle/l42a/extended{ @@ -25202,11 +22357,10 @@ /area/lv522/indoors/a_block/security/glass) "mnX" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/corpo/glass) "moe" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -25249,9 +22403,12 @@ /turf/open/floor/corsat/marked, /area/lv522/outdoors/colony_streets/windbreaker/observation) "moZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/west) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/corpo/glass) "mpr" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue, @@ -25287,26 +22444,20 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "mpQ" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; - pixel_y = 3 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/corpo/glass) "mpU" = ( /obj/structure/surface/rack, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "mqc" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/prison/floor_marked, +/area/lv522/outdoors/colony_streets/north_east_street) "mqi" = ( /obj/structure/surface/table/almayer{ dir = 4; @@ -25326,18 +22477,6 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"mql" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) -"mqu" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) "mqv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -25345,16 +22484,19 @@ /turf/open/floor/prison/blue/west, /area/lv522/indoors/a_block/admin) "mqx" = ( -/turf/open/gm/river, -/area/lv522/atmos/sewer) +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "mqA" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -7; + pixel_y = 7 }, -/obj/structure/platform, -/turf/open/floor/plating, -/area/lv522/atmos/filt) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "mqC" = ( /obj/structure/cargo_container/horizontal/blue/top, /turf/open/auto_turf/shale/layer1, @@ -25364,18 +22506,16 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) "mrc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) "mrD" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/white_cyan1/east, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo/glass) "mrL" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/squares, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor) "mrM" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -25384,20 +22524,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/security) -"msb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/south) "mse" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) "msf" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/east_reactor) +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap{ + pixel_x = 16; + pixel_y = 16 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/way_in_command_centre) "msj" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -25407,12 +22545,6 @@ /obj/item/device/analyzer/plant_analyzer, /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) -"msp" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) "msr" = ( /obj/structure/barricade/deployable, /turf/open/floor/prison/darkredfull2, @@ -25431,15 +22563,16 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) "msQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 1 }, -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/n_rockies) +/obj/item/prop/alien/hugger, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/command_centre) "mto" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) "mtt" = ( /obj/effect/decal/cleanable/vomit{ icon_state = "vomit_2" @@ -25466,8 +22599,11 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) "mua" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/atmos/filt) +/obj/item/explosive/plastic/breaching_charge{ + unacidable = 1 + }, +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) "mum" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -25524,21 +22660,22 @@ /obj/item/prop/alien/hugger, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) -"mvI" = ( -/obj/structure/bed/chair, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) "mvP" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/landing_zone_1/ceiling) -"mvR" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) "mwf" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) +/obj/structure/shuttle/engine/heater{ + dir = 8; + pixel_x = -4 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + icon_state = "flammable_pipe_3"; + pixel_x = -3 + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/west_reactor) "mwh" = ( /obj/structure/surface/table/almayer, /obj/item/trash/cheesie, @@ -25556,24 +22693,11 @@ /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_west_street) "mwp" = ( -/obj/effect/spawner/random/tool, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) -"mwC" = ( -/obj/item/clothing/head/welding, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/engineering) -"mwL" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Corporate Office Airlock" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/floor/almayer/w_y1, +/area/lv522/atmos/way_in_command_centre) "mwT" = ( /obj/structure/prop/dam/truck, /obj/structure/prop/holidays/wreath{ @@ -25601,11 +22725,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) -"mxp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/south) "mxt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -25640,8 +22759,11 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "myz" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/reactor_garage) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "myC" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/prison/darkbrownfull2, @@ -25661,7 +22783,7 @@ /obj/structure/machinery/atm{ pixel_y = 11 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "myQ" = ( /obj/structure/surface/table/almayer, @@ -25671,10 +22793,6 @@ }, /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) -"myV" = ( -/obj/item/clothing/suit/storage/marine/light, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) "myZ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control/brbutton/alt{ @@ -25692,21 +22810,16 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "mzP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger{ - pixel_y = 5 - }, -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"mzX" = ( -/obj/structure/bed/chair{ - dir = 1 - }, /turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) +/area/lv522/indoors/a_block/corpo/glass) +"mzX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "mAg" = ( /obj/structure/prop/dam/crane/damaged, /turf/open/auto_turf/sand_white/layer0, @@ -25716,11 +22829,9 @@ /turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/c_block/cargo) "mAC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor) "mAD" = ( /obj/structure/closet/secure_closet/detective, /turf/open/floor/wood, @@ -25742,10 +22853,11 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) "mAW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "mBc" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -25761,57 +22873,51 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) -"mBy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/reactor_garage) "mBF" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/b_block/bar) "mBL" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/almayer/w_y2/north, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/a_block/corpo/glass) "mCm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness/glass) "mCq" = ( /obj/item/storage/beer_pack, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) "mCx" = ( -/obj/structure/bed/chair{ +/obj/structure/bed/chair/comfy{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "mCA" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/hydro) "mCQ" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/golden_cup{ + pixel_y = 9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/prison/greenfull, +/area/lv522/indoors/a_block/fitness) "mDw" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10 }, /turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "mDz" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 8 @@ -25832,23 +22938,26 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness/glass) "mEg" = ( -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/filt) +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "mEi" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "mEp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "mEx" = ( /obj/item/stack/rods, /turf/open/floor/prison, @@ -25862,18 +22971,24 @@ /turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical/glass) "mEG" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) -"mFg" = ( -/obj/structure/surface/table/almayer, -/obj/item/co2_cartridge{ - pixel_x = -8; - pixel_y = 14 +/obj/structure/reagent_dispensers/fueltank/gas, +/obj/item/tool/weldpack{ + layer = 3.1; + pixel_x = -5; + pixel_y = 13 }, -/obj/item/clothing/accessory/armband/engine, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/area/lv522/atmos/reactor_garage) +"mFg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "mFm" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/plastic{ @@ -25904,20 +23019,13 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/t_comm) "mFZ" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, +/obj/structure/platform/stair_cut, +/turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"mGb" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/atmos/reactor_garage) "mGD" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -25926,9 +23034,9 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "mGH" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/nw_rockies) +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) "mGN" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -25959,17 +23067,15 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/garden_bridge) "mHP" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "mHU" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/floor/grass, /area/lv522/indoors/a_block/garden) -"mHZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/corpo/glass) "mIa" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -25977,13 +23083,6 @@ }, /turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) -"mIq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "mIO" = ( /obj/structure/machinery/vending/coffee, /obj/structure/machinery/light{ @@ -26063,7 +23162,7 @@ dir = 4; icon_state = "p_stair_full" }, -/turf/open/auto_turf/sand_white/layer0, +/turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_street) "mJZ" = ( /obj/structure/surface/table/almayer, @@ -26083,13 +23182,11 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "mKN" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/blue_plate, +/area/lv522/indoors/a_block/admin) "mKQ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/west_reactor) "mKZ" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 6; @@ -26106,22 +23203,9 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) -"mLp" = ( -/turf/open/floor/coagulation/icon8_0, -/area/lv522/oob) -"mLI" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "mLO" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_street) @@ -26134,34 +23218,28 @@ }, /obj/structure/machinery/portable_atmospherics/canister/empty/phoron{ density = 0; - layer = 3.1; + layer = 3.2; pixel_x = 8; pixel_y = 15 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) "mLW" = ( -/obj/structure/machinery/portable_atmospherics/canister/empty/phoron{ - density = 0; - layer = 3.1; - pixel_y = 18 +/obj/item/ammo_magazine/rifle, +/obj/item/ammo_magazine/rifle{ + pixel_x = -10; + pixel_y = 9 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"mLX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/south) -"mMj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/corpsespawner/colonist/burst, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) "mMr" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/faxmachine/corporate, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/item/toy/beach_ball/holoball, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/prison/greenfull, +/area/lv522/indoors/a_block/fitness) "mMv" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -26181,8 +23259,20 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) "mMU" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/filt) +/obj/structure/surface/table/almayer, +/obj/item/clothing/accessory/medal/bronze{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/clothing/accessory/medal/bronze{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/prison/greenfull, +/area/lv522/indoors/a_block/fitness) "mMX" = ( /obj/structure/powerloader_wreckage, /turf/open/floor/plating, @@ -26191,20 +23281,6 @@ /obj/structure/machinery/floodlight, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"mNf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/reinforced/prison, -/obj/item/ashtray/glass, -/obj/item/clothing/mask/cigarette{ - pixel_x = 6; - pixel_y = 12 - }, -/obj/item/clothing/mask/cigarette, -/turf/open/floor/strata/blue1, -/area/lv522/indoors/a_block/dorm_north) -"mNm" = ( -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/east) "mNt" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate, @@ -26229,13 +23305,6 @@ /obj/effect/decal/cleanable/blood/splatter, /turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"mNI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) "mNR" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 9 @@ -26263,15 +23332,22 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "mOh" = ( -/obj/structure/machinery/space_heater/radiator/red{ - pixel_y = 16 +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/far, +/obj/structure/machinery/power/apc/power/west{ + start_charge = 20 }, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) +/area/lv522/atmos/way_in_command_centre) "mOl" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/obj/structure/surface/table/almayer, +/obj/structure/transmitter/colony_net/rotary{ + phone_category = "LV522 Chances Claim"; + phone_id = "Reactor Control"; + pixel_y = 6 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "mOs" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -26297,12 +23373,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) -"mOI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/way_in_command_centre) "mOJ" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 5 @@ -26348,32 +23418,19 @@ /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) "mPe" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Reactor_garage_2" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) -"mPj" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/atmos/sewer) +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/command_centre) "mPr" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_street) -"mPs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "mPy" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "mPz" = ( -/turf/open/floor/coagulation/icon0_0, -/area/lv522/oob) +/obj/structure/machinery/light, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor) "mPB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red{ @@ -26392,16 +23449,14 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) "mPY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/light, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "mQd" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/atmos/filt) +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/corpo/glass) "mQh" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/coffee{ @@ -26426,21 +23481,26 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms/glass) -"mQt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/reactor_garage) "mQv" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/colony/used_flare, /turf/open/floor/prison/darkpurple2/northeast, /area/lv522/indoors/a_block/dorms) "mQw" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. Why would someone put a skirt on a synthetic?"; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" }, -/turf/open/gm/river, -/area/lv522/atmos/filt) +/obj/item/clothing/under/blackskirt{ + pixel_y = -3 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/bluegrid, +/area/lv522/indoors/a_block/corpo/glass) "mQy" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random{ @@ -26495,21 +23555,25 @@ /turf/open/floor/wood, /area/lv522/indoors/a_block/executive) "mSc" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/a_block/corpo/glass) "mSe" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/garden_bridge) "mSl" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" }, -/obj/structure/platform{ +/obj/structure/window/reinforced{ dir = 4 }, -/turf/open/gm/river, -/area/lv522/atmos/filt) +/obj/item/clothing/under/swimsuit/blue, +/turf/open/floor/bluegrid, +/area/lv522/indoors/a_block/corpo/glass) "mSZ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -26526,13 +23590,6 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) -"mTd" = ( -/turf/open/floor/corsat/marked, -/area/lv522/atmos/west_reactor) -"mTo" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/outdoor) "mTx" = ( /obj/structure/machinery/light{ dir = 8 @@ -26542,11 +23599,11 @@ /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "mTE" = ( -/obj/structure/platform/strata{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor) "mTK" = ( /obj/structure/largecrate/supply/medicine/medkits, /obj/structure/largecrate/guns/merc{ @@ -26570,14 +23627,13 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) "mUh" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/boxing/yellow, +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/open/floor/plating, -/area/lv522/atmos/filt) +/turf/open/floor/prison/greenfull, +/area/lv522/indoors/a_block/fitness) "mUj" = ( /obj/structure/machinery/camera/autoname{ dir = 1; @@ -26586,12 +23642,6 @@ /obj/structure/machinery/light/small, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) -"mUl" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/plating, -/area/lv522/atmos/filt) "mUr" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -26637,8 +23687,8 @@ /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/bridges/op_centre) "mVm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/strata_outpost/reinforced, +/obj/structure/machinery/light, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) "mVt" = ( /obj/structure/bed/chair/comfy{ @@ -26659,32 +23709,17 @@ /turf/open/floor/wood/wood_broken2, /area/lv522/indoors/b_block/bar) "mVE" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/atmos/filt) +/obj/structure/bed/sofa/vert/grey, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/corpo/glass) "mVH" = ( /obj/structure/surface/table/almayer, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) -"mWc" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/nw_rockies) "mWd" = ( /obj/structure/largecrate/random/secure, /turf/open/floor/prison, /area/lv522/landing_zone_2/ceiling) -"mWw" = ( -/obj/item/prop/colony/proptag{ - desc = "A fallen marine's information dog tag. It reads, Corporal Donald 'Firefly' Harrow" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) "mWF" = ( /obj/item/trash/barcardine, /obj/effect/decal/cleanable/dirt, @@ -26698,10 +23733,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) -"mXn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/cargo_intake) "mXy" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/radio/off{ @@ -26710,18 +23741,9 @@ }, /turf/open/floor/wood, /area/lv522/indoors/b_block/bar) -"mXA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/cargo_intake) "mYo" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) "mYS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -26771,33 +23793,42 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"mZN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) "mZQ" = ( /obj/structure/barricade/deployable, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) "mZU" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "mZW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/gm/river, -/area/lv522/atmos/filt) -"mZX" = ( -/obj/structure/platform_decoration{ +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" + }, +/obj/item/clothing/under/shorts/black{ + pixel_y = -7 + }, +/obj/structure/window/reinforced{ dir = 8 }, -/turf/open/gm/river, -/area/lv522/atmos/filt) +/turf/open/floor/bluegrid, +/area/lv522/indoors/a_block/corpo/glass) +"mZX" = ( +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/under/swimsuit/green, +/turf/open/floor/bluegrid, +/area/lv522/indoors/a_block/corpo/glass) "nat" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -26815,17 +23846,12 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_street) "naC" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8; - pixel_x = -4 - }, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8; - icon_state = "flammable_pipe_3"; - pixel_x = -3 +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/west_reactor) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "naH" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/chair{ @@ -26855,11 +23881,11 @@ /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_west_street) "nbj" = ( -/obj/structure/platform{ - dir = 1 +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/gm/river, -/area/lv522/atmos/filt) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "nbk" = ( /obj/structure/barricade/deployable{ dir = 1 @@ -26893,9 +23919,12 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "nbD" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/east{ + start_charge = 20 + }, +/turf/open/floor/wood, +/area/lv522/indoors/a_block/executive) "nbE" = ( /obj/structure/cargo_container/kelland/right, /turf/open/floor/prison, @@ -26905,10 +23934,6 @@ icon_state = "77" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"nbT" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/cargo_intake) "ncg" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -26924,12 +23949,12 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bar) "ncv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/surface/table/almayer{ + dir = 8; + flipped = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/blue_plate, +/area/lv522/indoors/a_block/admin) "ncz" = ( /obj/structure/platform, /obj/effect/decal/warning_stripes{ @@ -26938,22 +23963,15 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) -"ncA" = ( -/obj/item/clothing/suit/storage/marine/medium, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) "ncJ" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "ncS" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/nw_rockies) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) "ndb" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, @@ -26968,12 +23986,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) -"ndP" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/atmos/filt) "ndZ" = ( /obj/structure/cargo_container/kelland/right, /obj/item/seeds/riceseed{ @@ -27010,14 +24022,8 @@ /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 }, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_east_street) -"neI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/way_in_command_centre) "neO" = ( /obj/structure/machinery/light{ dir = 8 @@ -27087,21 +24093,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/kitchen) -"nfU" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) "ngd" = ( /obj/item/tool/wrench, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) "ngo" = ( -/obj/structure/platform_decoration{ - dir = 4 +/obj/structure/reagent_dispensers/fueltank{ + layer = 2.9 }, -/turf/open/floor/plating, -/area/lv522/atmos/filt) +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/north_street) "ngx" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -27113,7 +24115,7 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "ngK" = ( /obj/structure/platform{ @@ -27134,9 +24136,9 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) "nhb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/plating, -/area/lv522/atmos/filt) +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/north_street) "nhs" = ( /obj/item/weapon/twohanded/folded_metal_chair, /obj/effect/decal/cleanable/dirt, @@ -27174,11 +24176,9 @@ /turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "niu" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/atmos/filt) +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/north_street) "niA" = ( /obj/structure/largecrate/random/barrel/green, /turf/open/asphalt/cement/cement12, @@ -27200,12 +24200,9 @@ /turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "niU" = ( -/obj/structure/foamed_metal, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating, -/area/lv522/atmos/cargo_intake) +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/corpo/glass) "njd" = ( /obj/structure/platform_decoration, /turf/open/asphalt/cement/cement3, @@ -27216,23 +24213,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"njn" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "njF" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/showcase{ + desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; + icon = 'icons/mob/humans/species/r_synthetic.dmi'; + icon_state = "Synthetic_Template"; + name = "Display synthetic" }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor) +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/under/swimsuit/purple, +/turf/open/floor/bluegrid, +/area/lv522/indoors/a_block/corpo/glass) "njH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -27246,7 +24239,7 @@ network = list("interrogation") }, /obj/structure/machinery/light/small, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "nkt" = ( /obj/structure/surface/table/almayer, @@ -27266,18 +24259,15 @@ pixel_x = 4; pixel_y = -6 }, -/turf/open/floor/plating/platingdmg3, +/turf/open/floor/platingdmg3, /area/lv522/indoors/a_block/admin) "nkv" = ( -/obj/item/prop/colony/used_flare, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/nw_rockies) -"nky" = ( -/obj/structure/machinery/power/apc/power/south{ - start_charge = 20 +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) "nkX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -27285,11 +24275,11 @@ /turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/south_street) "nly" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/bluegrid, +/area/lv522/indoors/a_block/corpo/glass) "nlz" = ( /obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ density = 0; @@ -27354,13 +24344,11 @@ /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) "nmt" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "nmB" = ( /obj/structure/surface/table/almayer{ dir = 8; @@ -27368,16 +24356,14 @@ }, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"nmK" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) "nmX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform{ + dir = 8 + }, +/obj/item/stack/rods, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "nnj" = ( /obj/structure/barricade/handrail/strata{ dir = 4 @@ -27388,9 +24374,12 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "nno" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) +/obj/structure/sign/safety/rad_haz, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15 + }, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/oob) "nnv" = ( /obj/item/reagent_container/food/drinks/coffeecup/wy{ pixel_x = -4; @@ -27434,8 +24423,9 @@ /turf/open/floor/prison, /area/lv522/landing_zone_1/ceiling) "noD" = ( -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/blood/gibs, +/turf/open/floor/corsat/squares, +/area/lv522/oob/w_y_vault) "noH" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper C-Block - Casino Airlock" @@ -27443,11 +24433,12 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/casino) "noL" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 1 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) +/turf/open/floor/prison, +/area/lv522/indoors/a_block/admin) "noT" = ( /obj/structure/prop/ice_colony/ground_wire, /obj/structure/prop/ice_colony/ground_wire{ @@ -27460,20 +24451,16 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) "noV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) -"npb" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) "npd" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor) +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) "npp" = ( /obj/structure/girder, /obj/structure/prop/invuln/lattice_prop{ @@ -27484,11 +24471,11 @@ /turf/open/floor/plating/platingdmg3, /area/lv522/indoors/a_block/dorms) "npx" = ( -/obj/structure/filtration/machine_96x96/indestructible{ - icon_state = "distribution" +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/plating, -/area/lv522/oob) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) "npA" = ( /obj/structure/surface/table/almayer, /obj/item/toy/deck/uno, @@ -27498,14 +24485,12 @@ /turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "npD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) "npI" = ( /obj/structure/window/reinforced{ dir = 4; @@ -27538,11 +24523,8 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "nqe" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, /turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) +/area/lv522/atmos/east_reactor/west) "nqj" = ( /obj/structure/surface/table/gamblingtable, /obj/effect/landmark/objective_landmark/close, @@ -27563,36 +24545,23 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "nqy" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/corpo_fitness) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) "nqB" = ( -/obj/structure/filtration/machine_96x96/indestructible{ - icon_state = "distribution"; - layer = 2.9 +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" }, -/turf/open/floor/plating, -/area/lv522/oob) -"nqE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/cargo_intake) +/turf/open/asphalt/cement/cement12, +/area/lv522/outdoors/colony_streets/north_street) "nqN" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"nqQ" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/atmos/way_in_command_centre) "nqY" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -27608,32 +24577,14 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"nrh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/outdoor) -"nri" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, +"nro" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/nw_rockies) +"nru" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) -"nru" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) "nrA" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/metal/medium_stack, @@ -27657,7 +24608,7 @@ /obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "nrP" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -27665,17 +24616,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) -"nrT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/corpo/glass) -"nsd" = ( -/obj/effect/decal/cleanable/generic, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) "nsr" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -27686,11 +24626,13 @@ /turf/open/floor/prison, /area/lv522/landing_zone_1/ceiling) "nsv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 }, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) "nta" = ( /obj/structure/machinery/light{ dir = 8; @@ -27708,39 +24650,37 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/garage) -"ntq" = ( -/obj/structure/prop/invuln/overhead_pipe{ - name = "overhead pipe"; - pixel_x = -20; - pixel_y = 24 - }, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/atmos/east_reactor/south) "ntK" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "ntL" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/corsat, -/area/lv522/atmos/reactor_garage) +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) "ntN" = ( -/obj/structure/platform{ - dir = 4 +/obj/structure/fence{ + layer = 2.9 }, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) -"ntQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 + icon_state = "S" }, +/turf/open/floor/strata/floor3, +/area/lv522/outdoors/colony_streets/north_east_street) +"ntQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/area/lv522/indoors/a_block/corpo/glass) "ntS" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname, @@ -27765,25 +24705,18 @@ /turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "nuG" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 4; - pixel_y = 16 - }, -/turf/open/gm/river, -/area/lv522/atmos/filt) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/corpo/glass) "nuL" = ( /obj/structure/platform{ dir = 8 }, -/obj/structure/platform{ - dir = 8; - pixel_y = 16 +/obj/item/shard{ + icon_state = "medium" }, -/turf/open/floor/plating, -/area/lv522/atmos/filt) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "nuQ" = ( /obj/structure/surface/table/almayer{ dir = 1; @@ -27791,7 +24724,7 @@ }, /obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "nuU" = ( /obj/structure/surface/table/almayer, @@ -27801,10 +24734,6 @@ }, /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) -"nvd" = ( -/obj/structure/girder/reinforced, -/turf/open/floor/plating, -/area/lv522/atmos/cargo_intake) "nvt" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/colony/used_flare, @@ -27813,7 +24742,7 @@ "nvB" = ( /obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "nvS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -27830,22 +24759,10 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"nwR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) "nwZ" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) -"nxb" = ( -/obj/structure/platform_decoration, -/obj/structure/machinery/light, -/turf/open/floor/prison/darkpurple2, -/area/lv522/indoors/a_block/dorms) "nxj" = ( /obj/structure/girder, /turf/open/floor/prison/blue, @@ -27876,16 +24793,6 @@ }, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"nxQ" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) "nye" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -27913,17 +24820,17 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "nzt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo) -"nzK" = ( -/obj/item/storage/backpack/marine/satchel/rto, -/turf/open/floor/corsat/brown/west, -/area/lv522/oob) -"nzR" = ( -/obj/item/stack/sheet/metal, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/atmos/cargo_intake) +"nzw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/lv624/fog_blocker/short, +/turf/closed/wall/strata_outpost, +/area/lv522/landing_zone_1/tunnel/far) "nzU" = ( /obj/structure/barricade/deployable, /turf/open/floor/prison/floor_plate, @@ -27931,9 +24838,13 @@ "nzZ" = ( /obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ density = 0; + layer = 3.1; pixel_x = -16; pixel_y = 9 }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) "nAa" = ( @@ -27950,15 +24861,11 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) "nAC" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/platform/stair_cut{ - icon_state = "platform_stair_alt" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 }, -/turf/open/floor/plating, -/area/lv522/atmos/filt) +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/outdoors/colony_streets/north_street) "nBe" = ( /turf/open/floor/plating, /area/lv522/indoors/a_block/kitchen/damage) @@ -27972,19 +24879,18 @@ pixel_x = 1; pixel_y = 4 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/obj/item/defenses/handheld/sentry/mini{ + pixel_y = -4; + pixel_x = -5 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "nBo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/bed/chair/comfy{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/generic/glass, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) -"nBs" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "nBv" = ( /obj/item/prop/alien/hugger{ pixel_x = 3; @@ -28005,26 +24911,16 @@ /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) "nCa" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/n_rockies) +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Reactor_garage_2" + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) "nCt" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/body, /obj/effect/spawner/gibspawner/xeno, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"nCC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) -"nCX" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/area/lv522/outdoors/nw_rockies) "nCZ" = ( /obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, @@ -28047,12 +24943,6 @@ /obj/structure/platform, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"nDz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/west_reactor) "nDI" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/wy_chips_pepper, @@ -28062,9 +24952,6 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) -"nDM" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/outdoors/n_rockies) "nDR" = ( /obj/item/tool/wrench, /turf/open/floor/prison, @@ -28078,21 +24965,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"nEd" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) "nEq" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/landing_zone_1/ceiling) @@ -28103,24 +24975,24 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) "nEY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, +/turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/engineering) "nFc" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/way_in_command_centre) +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "nFj" = ( /turf/open/floor/plating, /area/lv522/landing_zone_1) "nFt" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "nFM" = ( /obj/effect/landmark/objective_landmark/science, /obj/effect/decal/cleanable/dirt, @@ -28139,12 +25011,14 @@ /area/lv522/indoors/c_block/casino) "nFO" = ( /obj/structure/machinery/power/port_gen/pacman, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/nw_rockies) "nGc" = ( -/obj/effect/alien/resin/sticky, -/turf/open/gm/river, -/area/lv522/atmos/filt) +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "nGe" = ( /obj/structure/cargo_container/kelland/left, /turf/open/auto_turf/sand_white/layer0, @@ -28169,28 +25043,24 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_west_street) "nGC" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +/obj/structure/surface/table/almayer{ + dir = 8; + flipped = 1 }, -/turf/open/floor/plating, -/area/lv522/atmos/filt) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate, +/area/lv522/indoors/a_block/admin) "nGJ" = ( /obj/structure/cargo_container/kelland/right, /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_1) "nGU" = ( -/obj/structure/platform, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/east_reactor/south) "nHg" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/plating, +/area/lv522/atmos/east_reactor/south) "nHi" = ( /turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1) @@ -28259,25 +25129,10 @@ "nJv" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/lone_buildings/engineering) -"nJO" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/objective_landmark/far, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "nJV" = ( /obj/structure/noticeboard, /turf/closed/wall/strata_outpost, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"nJW" = ( -/obj/item/toy/plush/farwa{ - desc = "A Farwa plush doll. Once soft and comforting now just really wet."; - name = "Soaked farwa plush doll" - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) "nKh" = ( /obj/structure/machinery/camera/autoname{ dir = 8 @@ -28288,10 +25143,8 @@ /turf/open/floor/strata/blue1, /area/lv522/indoors/a_block/dorm_north) "nKj" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "nKk" = ( /obj/structure/machinery/camera/autoname{ dir = 1 @@ -28330,7 +25183,7 @@ "nLe" = ( /obj/structure/machinery/vending/cola, /obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "nLi" = ( /obj/structure/surface/table/almayer, @@ -28353,19 +25206,8 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/security) "nLF" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/north_west_street) "nLW" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -28377,13 +25219,17 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_1) "nMd" = ( -/obj/structure/closet/toolcloset, +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "nMl" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/atmos/reactor_garage) +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) "nMt" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, @@ -28391,12 +25237,11 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "nMw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) "nMz" = ( /obj/item/prop/alien/hugger, /obj/structure/pipes/standard/simple/hidden/green{ @@ -28405,43 +25250,38 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"nMB" = ( -/obj/structure/bed/chair{ +"nMC" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) -"nMC" = ( -/obj/structure/platform{ +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"nMT" = ( +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) -"nMT" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3; - pixel_y = 9 +/obj/item/clothing/mask/facehugger{ + desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; + icon_state = "facehugger_impregnated"; + layer = 3; + name = "????"; + stat = 2 }, -/turf/open/floor/corsat/marked, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) "nMX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) -"nNf" = ( -/obj/structure/platform{ - dir = 8 +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) +"nNf" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "nNh" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red{ @@ -28453,17 +25293,10 @@ /turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) "nNi" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "nNA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -28471,21 +25304,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) -"nNH" = ( -/obj/structure/machinery/camera/autoname, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) "nNL" = ( -/obj/item/ammo_magazine/rifle, -/obj/item/ammo_magazine/rifle{ - pixel_x = -10; - pixel_y = 9 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 4 }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/nw_rockies) +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_street) "nNM" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -28509,14 +25333,11 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "nOg" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/bed/chair/comfy{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/south) "nOl" = ( /obj/effect/decal/cleanable/blood/drip, /obj/structure/pipes/standard/simple/hidden/green{ @@ -28537,19 +25358,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) -"nOS" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) "nOT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -28571,10 +25379,22 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) "nPc" = ( -/obj/structure/platform_decoration, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/structure/fence{ + layer = 2.9 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) +"nPf" = ( +/obj/effect/landmark/lv624/fog_blocker/short, +/turf/open/asphalt/cement/cement1, +/area/lv522/outdoors/colony_streets/south_west_street) "nPn" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -28612,9 +25432,8 @@ /turf/closed/shuttle/dropship3/tornado, /area/lv522/landing_zone_forecon/UD6_Tornado) "nPV" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/north_street) "nQa" = ( /obj/structure/platform_decoration{ dir = 8 @@ -28669,10 +25488,6 @@ /obj/structure/cargo_container/watatsumi/leftmid, /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_west_street) -"nQO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/reactor_garage) "nQQ" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -28715,6 +25530,11 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) +"nRC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "nRI" = ( /obj/item/ammo_magazine/rifle/heap{ current_rounds = 0 @@ -28729,13 +25549,8 @@ /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "nRK" = ( -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/plating, -/area/lv522/atmos/filt) +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/north_street) "nRQ" = ( /obj/structure/window_frame/strata, /obj/structure/curtain/red, @@ -28794,10 +25609,6 @@ icon_state = "27" }, /area/lv522/landing_zone_forecon/UD6_Tornado) -"nTa" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) "nTg" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/bed/chair{ @@ -28806,7 +25617,13 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) "nTl" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/obj/structure/machinery/door/poddoor/almayer{ + id = "E_B_Door"; + name = "\improper Emergency Blast Door"; + unacidable = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor) "nTp" = ( /obj/structure/stairs/perspective{ @@ -28817,23 +25634,20 @@ "nTv" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/bridges/dorms_fitness) -"nTx" = ( -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) "nTD" = ( /obj/structure/platform, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) +"nTF" = ( +/obj/effect/landmark/lv624/fog_blocker/short, +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/b_block/bridge) "nTJ" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) -"nTO" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/floor/prison, -/area/lv522/atmos/cargo_intake) "nTX" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, @@ -28846,16 +25660,12 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 }, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/filt) +/turf/open/floor/prison/blue, +/area/lv522/indoors/a_block/admin) "nUO" = ( /obj/structure/closet/crate/trashcart, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"nUV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) "nVc" = ( /obj/structure/powerloader_wreckage, /turf/open/floor/plating, @@ -28879,7 +25689,7 @@ pixel_x = -9; pixel_y = 8 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "nVr" = ( /obj/effect/decal/cleanable/dirt, @@ -28905,13 +25715,8 @@ /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/south_east_street) "nVW" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/outdoor) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) "nVX" = ( /obj/structure/barricade/deployable{ dir = 4 @@ -28919,10 +25724,12 @@ /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_east_street) "nWl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/cargo_intake) +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/command_centre) "nWn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ @@ -29012,7 +25819,7 @@ pixel_x = -5; pixel_y = -1 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "nXC" = ( /obj/item/tool/wrench, @@ -29079,9 +25886,8 @@ /area/lv522/indoors/a_block/bridges/garden_bridge) "nYM" = ( /obj/structure/cargo_container/wy/mid, -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "nYQ" = ( /obj/structure/platform_decoration{ dir = 1 @@ -29098,6 +25904,7 @@ /area/lv522/outdoors/colony_streets/south_east_street) "nYU" = ( /obj/effect/acid_hole, +/obj/effect/landmark/lv624/fog_blocker/short, /turf/closed/wall/strata_outpost, /area/lv522/landing_zone_1/tunnel/far) "nYW" = ( @@ -29121,17 +25928,11 @@ /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) -"nZF" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/cargo_intake) "nZP" = ( /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel/far) -"oaa" = ( -/turf/open/asphalt/cement/cement14, -/area/lv522/outdoors/n_rockies) "oaj" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -29139,13 +25940,15 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) "oan" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 +/obj/structure/transmitter/colony_net{ + dir = 4; + phone_category = "LV522 Chances Claim"; + phone_color = "red"; + phone_id = "Reactor Entrance Office"; + pixel_x = -16 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "oaq" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -29183,13 +25986,17 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) +"oaW" = ( +/obj/effect/landmark/lv624/fog_blocker/short, +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/south_west_street) "obb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ dir = 1 }, /obj/structure/machinery/light/small, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "obe" = ( /turf/closed/shuttle/dropship3/tornado/typhoon{ @@ -29213,7 +26020,7 @@ /area/lv522/indoors/a_block/bridges) "ocw" = ( /obj/structure/machinery/disposal, -/turf/open/floor/strata/white_cyan1/east, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo/glass) "oda" = ( /obj/structure/prop/invuln/minecart_tracks, @@ -29279,11 +26086,11 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/bridges/dorms_fitness) "oem" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 }, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "oet" = ( /obj/structure/prop/dam/crane/cargo{ dir = 1 @@ -29302,7 +26109,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "oeL" = ( /obj/structure/bed/chair{ @@ -29342,18 +26149,18 @@ /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) "oeU" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 - }, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "oeV" = ( /turf/open/shuttle/dropship/can_surgery/light_grey_bottom_left, /area/lv522/landing_zone_forecon/UD6_Tornado) "oeX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "ofd" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/corsat/marked, @@ -29369,9 +26176,9 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "ofS" = ( -/obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/prison/floor_marked, +/area/lv522/indoors/lone_buildings/engineering) "ofX" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/plastic{ @@ -29479,7 +26286,7 @@ "ohP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) "ohX" = ( /obj/structure/prop/invuln/lattice_prop{ @@ -29500,19 +26307,11 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/op_centre) "oim" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/command_centre) "oiA" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/plating, -/area/lv522/atmos/filt) +/turf/open/asphalt/cement/cement2, +/area/lv522/outdoors/colony_streets/north_east_street) "oiC" = ( /obj/structure/platform_decoration{ dir = 1 @@ -29531,12 +26330,6 @@ }, /turf/open/floor/corsat/plate, /area/lv522/indoors/c_block/mining) -"oiP" = ( -/obj/structure/platform_decoration{ - dir = 1 - }, -/turf/open/floor/plating, -/area/lv522/atmos/filt) "oiR" = ( /obj/item/stack/sheet/wood, /obj/item/stack/rods, @@ -29546,14 +26339,13 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) "oiW" = ( -/obj/structure/foamed_metal, -/turf/open/floor/plating, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "oiY" = ( /turf/open/asphalt/cement/cement14, /area/lv522/landing_zone_1) "oiZ" = ( -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness/glass) "ojb" = ( /obj/structure/coatrack{ @@ -29566,9 +26358,9 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "ojn" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "ojp" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/bridges/garden_bridge) @@ -29645,6 +26437,9 @@ /obj/item/prop/colony/usedbandage{ dir = 1 }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 1 + }, /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) "oml" = ( @@ -29681,12 +26476,6 @@ /obj/structure/platform, /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) -"onM" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/atmos/way_in_command_centre) "onT" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, @@ -29698,15 +26487,12 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) "ooe" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate, +/area/lv522/indoors/a_block/admin) "ooh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Generator Room"; - welded = 1 - }, -/turf/open/floor/corsat/marked, +/obj/structure/surface/table/almayer, +/turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) "oot" = ( /turf/open/floor/prison/darkpurple2/north, @@ -29731,11 +26517,8 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/corpo) "opp" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lv522/atmos/filt) +/turf/closed/wall/shiva/prefabricated/reinforced, +/area/lv522/atmos/cargo_intake) "opt" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -29844,14 +26627,8 @@ /obj/structure/barricade/deployable{ dir = 4 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"orm" = ( -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) "ort" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, @@ -29869,7 +26646,7 @@ "orE" = ( /obj/item/prop/colony/used_flare, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "orI" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -29898,27 +26675,20 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_1) +"osc" = ( +/turf/open/auto_turf/shale/layer2, +/area/lv522/oob) "osd" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, +/obj/structure/pipes/standard/manifold/hidden/green, +/turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) "osE" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper A-Block Corporate Office Airlock"; - req_access_txt = "100" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "osN" = ( /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_west_street) @@ -29932,9 +26702,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) -"ote" = ( -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/north_command_centre) "otj" = ( /obj/effect/decal/cleanable/cobweb, /turf/open/floor/shiva/radiator_tile2, @@ -29943,13 +26710,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/medical) -"otx" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/platform_decoration, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) "otH" = ( /obj/structure/surface/table/almayer, /obj/item/prop/colony/proptag{ @@ -29958,15 +26718,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"otM" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"otQ" = ( -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) "otS" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -30021,10 +26772,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"ouI" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) "ouO" = ( /obj/structure/reagent_dispensers/fueltank{ layer = 2.9 @@ -30064,7 +26811,7 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/auto_turf/sand_white/layer0, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/bridges/dorms_fitness) "owe" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -30077,16 +26824,6 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) -"owC" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "E_B_Door"; - name = "\improper Emergency Blast Door"; - unacidable = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/corsat/marked, -/area/lv522/oob) "owQ" = ( /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/garage) @@ -30110,18 +26847,9 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "oxt" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/colony_streets/north_street) +/obj/structure/closet/toolcloset, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "oxH" = ( /obj/structure/barricade/handrail/strata{ dir = 8 @@ -30158,16 +26886,16 @@ /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) -"oyK" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) "oyM" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) +/obj/structure/machinery/shower{ + pixel_y = 16 + }, +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2, +/area/lv522/indoors/a_block/dorms) "oyN" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 @@ -30188,13 +26916,6 @@ "ozn" = ( /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"ozt" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) "ozw" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, @@ -30257,22 +26978,9 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "oAY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/effect/landmark/lv624/fog_blocker/short, +/turf/open/asphalt/cement/cement4, +/area/lv522/outdoors/colony_streets/south_west_street) "oBf" = ( /obj/structure/bed/chair/wheelchair, /turf/open/floor/prison, @@ -30334,23 +27042,13 @@ }, /turf/open/floor/strata/white_cyan4, /area/lv522/indoors/a_block/medical) -"oDj" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) "oDu" = ( /obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "oDU" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/south) "oDZ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkyellowfull2/east, @@ -30360,12 +27058,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2/ceiling) -"oEw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) "oFr" = ( /obj/structure/machinery/light{ dir = 8 @@ -30562,9 +27254,6 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) -"oJS" = ( -/turf/closed/wall/mineral/bone_resin, -/area/lv522/atmos/cargo_intake) "oJU" = ( /obj/structure/largecrate/random, /obj/effect/decal/warning_stripes{ @@ -30615,17 +27304,11 @@ /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) "oKK" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/east_reactor/south) -"oKN" = ( -/obj/structure/transmitter/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Reactor Central Office"; - pixel_y = 26 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/east_reactor) "oKP" = ( /obj/structure/machinery/autolathe, /obj/effect/decal/cleanable/dirt, @@ -30673,9 +27356,12 @@ /turf/open/floor/plating, /area/lv522/indoors/a_block/kitchen/damage) "oLu" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/obj/structure/machinery/light, +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo/glass) "oLz" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -30691,9 +27377,6 @@ "oLG" = ( /turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/medical) -"oLK" = ( -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) "oLW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -30714,14 +27397,6 @@ }, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/op_centre) -"oMo" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green{ - layer = 3.5; - pixel_y = 13 - }, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) "oMt" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper A-Block Security Airlock" @@ -30734,8 +27409,13 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) "oML" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/north_command_centre) +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/white_cyan2, +/area/lv522/indoors/a_block/dorms) "oMX" = ( /obj/item/storage/belt/grenade, /obj/effect/decal/cleanable/dirt, @@ -30775,17 +27455,16 @@ /area/lv522/indoors/c_block/casino) "oNQ" = ( /turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) +/area/lv522/outdoors/nw_rockies) "oOe" = ( /obj/effect/decal/cleanable/dirt, /turf/open/auto_turf/shale/layer2, /area/lv522/outdoors/colony_streets/north_east_street) "oOh" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - id = "West LZ Storage"; - name = "Emergency Lockdown" - }, /obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "A-Block_Warehouse" + }, /turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/storage_blocks) "oOD" = ( @@ -30797,14 +27476,10 @@ icon_state = "fab_2" }, /turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "oOS" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_west_street) -"oPc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/lone_buildings/engineering) "oPs" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ @@ -30837,10 +27512,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/bridge) -"oQs" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) "oQt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/athletic_mixed, @@ -30850,6 +27521,10 @@ /obj/structure/platform_decoration, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) +"oQH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/c_block/mining) "oQN" = ( /obj/structure/largecrate/random/case, /turf/open/floor/plating, @@ -30893,9 +27568,12 @@ }, /obj/structure/machinery/portable_atmospherics/canister/sleeping_agent{ density = 0; - layer = 3.1; + layer = 3.2; pixel_x = 17; - pixel_y = 31 + pixel_y = 36 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) @@ -30915,11 +27593,6 @@ "oSH" = ( /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/bridges) -"oSX" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) "oTc" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -30929,7 +27602,7 @@ icon_state = "p_stair_full" }, /obj/structure/platform/stair_cut, -/turf/open/auto_turf/sand_white/layer0, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/bridges/dorms_fitness) "oTd" = ( /obj/structure/cargo_container/ferret/mid, @@ -30944,16 +27617,6 @@ /obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"oTp" = ( -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/nailgun/empty{ - pixel_y = 5 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/engineering) "oTD" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -30987,10 +27650,6 @@ /obj/structure/largecrate/random, /turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2) -"oTX" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) "oTY" = ( /obj/structure/flora/jungle/plantbot1, /turf/open/organic/grass, @@ -31005,23 +27664,6 @@ "oUq" = ( /turf/closed/wall/strata_outpost/reinforced, /area/lv522/atmos/way_in_command_centre) -"oUE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1; - pixel_y = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"oUZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) -"oVb" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) "oVk" = ( /obj/structure/largecrate/random{ pixel_x = 1; @@ -31029,11 +27671,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"oVt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) "oVA" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/reagent_container/food/drinks/coffee, @@ -31067,27 +27704,15 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "oVO" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/reactor_garage) "oVS" = ( /obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "mining_shutter_1" + }, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) -"oWq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) "oWy" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 8 @@ -31105,9 +27730,9 @@ /turf/open/floor/corsat/marked, /area/lv522/landing_zone_1/tunnel) "oWS" = ( -/obj/item/prop/colony/used_flare, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/squares, /area/lv522/atmos/east_reactor/south) "oWV" = ( /obj/structure/machinery/light{ @@ -31126,10 +27751,8 @@ /turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_street) "oXk" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/cargo_intake) "oXp" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -31180,16 +27803,8 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/indoors/a_block/bridges/dorms_fitness) -"oYu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/area/lv522/indoors/a_block/bridges/dorms_fitness) "oYO" = ( /obj/structure/platform{ dir = 1 @@ -31207,7 +27822,7 @@ "oZC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "oZN" = ( /obj/structure/platform, @@ -31243,11 +27858,9 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) "pbi" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "Reactor_garage_1" - }, -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/atmos/reactor_garage) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/command_centre) "pbp" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms/glass) @@ -31261,9 +27874,8 @@ /turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2) "pco" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/green, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor/south) "pcr" = ( /obj/structure/filingcabinet/seeds{ density = 0; @@ -31282,10 +27894,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/lone_buildings/outdoor_bot) -"pcH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/way_in_command_centre) "pcO" = ( /obj/structure/stairs/perspective{ dir = 5; @@ -31299,14 +27907,8 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) "pcV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) +/turf/open/floor/plating, +/area/lv522/oob) "pdp" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 8; @@ -31396,15 +27998,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"pex" = ( -/obj/structure/barricade/deployable{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/way_in_command_centre) "pez" = ( /obj/structure/cargo_container/horizontal/blue/top, /turf/open/auto_turf/sand_white/layer0, @@ -31421,7 +28014,7 @@ flipped = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "pfe" = ( /obj/structure/bed/chair{ @@ -31445,9 +28038,6 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"pfj" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/south) "pfq" = ( /obj/structure/machinery/camera/autoname{ dir = 1; @@ -31490,16 +28080,6 @@ "pfN" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) -"pfU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_e_entry_3" - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) "pfV" = ( /obj/item/prop/alien/hugger, /obj/structure/machinery/light, @@ -31513,7 +28093,7 @@ /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/strata/white_cyan1/east, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo/glass) "pgm" = ( /obj/item/lightstick/red/spoke/planted{ @@ -31540,9 +28120,6 @@ /area/lv522/outdoors/colony_streets/north_east_street) "pgs" = ( /obj/effect/spawner/gibspawner/xeno, -/obj/structure/platform_decoration{ - dir = 1 - }, /obj/effect/decal/cleanable/generic, /turf/open/floor/prison/darkpurple2, /area/lv522/indoors/a_block/dorms) @@ -31550,11 +28127,6 @@ /obj/structure/machinery/disposal, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) -"pgy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) "pgG" = ( /obj/structure/platform_decoration{ dir = 4 @@ -31626,15 +28198,6 @@ }, /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) -"piW" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/tool/pen/blue/clicky, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) "piY" = ( /obj/structure/platform{ dir = 4 @@ -31646,13 +28209,9 @@ /obj/structure/platform{ dir = 8 }, -/obj/structure/ore_box, /obj/effect/decal/cleanable/cobweb, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"pjJ" = ( -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/n_rockies) "pjM" = ( /obj/effect/spawner/gibspawner/xeno, /turf/open/floor/prison/darkpurple2/north, @@ -31694,22 +28253,15 @@ }, /area/lv522/landing_zone_forecon/UD6_Tornado) "pkE" = ( -/obj/structure/powerloader_wreckage, -/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "plb" = ( -/obj/structure/machinery/door_display/research_cell{ - dir = 4; - id = "Reactor_e_entry_4"; - pixel_x = -16; - req_access = null - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/filt) +/obj/item/prop/colony/used_flare, +/turf/open/floor/prison/blue_plate, +/area/lv522/indoors/a_block/admin) "pli" = ( /obj/effect/decal/cleanable/dirt, /obj/item/prop/colony/used_flare, @@ -31750,9 +28302,6 @@ /obj/structure/largecrate/random/secure, /turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1) -"pnx" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/fitness) "pnz" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/prison/blue/southwest, @@ -31828,6 +28377,7 @@ dir = 1; req_one_access_txt = "100" }, +/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "ppX" = ( @@ -31867,12 +28417,6 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) -"pqQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) "pqR" = ( /obj/effect/decal/cleanable/cobweb2, /turf/open/asphalt/cement, @@ -31895,9 +28439,9 @@ /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) "prT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/prison/blue_plate, +/area/lv522/indoors/a_block/admin) "prU" = ( /obj/structure/stairs/perspective{ dir = 5; @@ -31943,18 +28487,6 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/c_block/casino) -"prZ" = ( -/obj/item/stack/sheet/metal{ - layer = 2.5; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"psq" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/filt) "psF" = ( /obj/effect/decal/cleanable/dirt, /obj/item/ammo_magazine/rifle/mar40/lmg, @@ -31971,10 +28503,6 @@ "psT" = ( /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) -"ptc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/filt) "ptp" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, @@ -31993,6 +28521,14 @@ /obj/structure/platform, /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) +"pum" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "puu" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, /turf/open/floor/strata/white_cyan3/west, @@ -32002,16 +28538,12 @@ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "puJ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) -"puV" = ( -/obj/structure/cargo_container/kelland/right, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) "puY" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -9; @@ -32019,11 +28551,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"pvz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "pvW" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -12; @@ -32052,25 +28579,8 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "pwA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"pwB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"pwC" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/cargo_intake) "pwF" = ( /obj/structure/prop/invuln/pipe_water{ pixel_x = 3; @@ -32081,32 +28591,19 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel/far) -"pwJ" = ( -/obj/structure/prop/dam/crane/damaged, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/indoors/lone_buildings/storage_blocks) "pwR" = ( /obj/structure/surface/table/almayer, /obj/item/tool/weldpack{ pixel_y = 2 }, -/turf/open/asphalt/cement/cement4, +/turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"pwT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/engineering) "pwW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) -"pwX" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) "pxb" = ( /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) @@ -32114,10 +28611,13 @@ /obj/structure/largecrate/random/barrel/red, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) +"pxG" = ( +/obj/item/toy/plush/farwa, +/turf/open/gm/river, +/area/lv522/landing_zone_1/tunnel) "pxN" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor) "pxS" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/floor_plate, @@ -32127,17 +28627,6 @@ icon_state = "95" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"pyc" = ( -/obj/effect/decal/cleanable/blood/drip, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/way_in_command_centre) -"pyo" = ( -/obj/structure/machinery/conveyor{ - dir = 10; - id = "cargo_container" - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) "pys" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "97" @@ -32156,39 +28645,6 @@ icon_state = "99" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"pza" = ( -/obj/item/stack/sheet/wood{ - pixel_x = -5; - pixel_y = -10 - }, -/obj/item/stack/sheet/wood{ - layer = 2.7; - pixel_y = 8 - }, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - layer = 3.1; - pixel_x = -11; - pixel_y = -6 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - pixel_x = 4; - pixel_y = 17 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - layer = 3.1; - pixel_x = 15; - pixel_y = 17 - }, -/obj/item/reagent_container/food/drinks/drinkingglass{ - icon_state = "shotglass"; - layer = 3.1; - pixel_x = 9; - pixel_y = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) "pzj" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/drinks/cans/beer{ @@ -32200,10 +28656,6 @@ }, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) -"pzo" = ( -/obj/item/weapon/twohanded/folded_metal_chair, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) "pzs" = ( /obj/structure/barricade/wooden, /obj/effect/decal/cleanable/dirt, @@ -32221,17 +28673,6 @@ "pAj" = ( /turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/south_west_street) -"pAp" = ( -/obj/structure/largecrate, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"pAw" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"pAN" = ( -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/east_reactor/south) "pAW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -32251,7 +28692,9 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "pBz" = ( -/obj/structure/machinery/door/airlock/hatch/cockpit/three, +/obj/structure/machinery/door/airlock/hatch/cockpit/three{ + dir = 1 + }, /turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "pBF" = ( @@ -32278,7 +28721,7 @@ /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "pBT" = ( /turf/open/floor/prison/darkpurple2/southeast, @@ -32316,7 +28759,7 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) "pCn" = ( -/obj/effect/decal/cleanable/blood/oil, +/obj/structure/cargo_container/watatsumi/leftmid, /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) @@ -32346,30 +28789,23 @@ /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) "pCT" = ( -/obj/structure/machinery/power/terminal, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/engineering) -"pCU" = ( -/obj/item/ammo_magazine/smg/nailgun{ - current_rounds = 0 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/darkyellowfull2/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/lone_buildings/engineering) "pCW" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "pCZ" = ( /obj/structure/machinery/vending/cola, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "pDe" = ( /obj/structure/machinery/squeezer, @@ -32386,12 +28822,6 @@ }, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) -"pDM" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) "pDU" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -32422,40 +28852,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) -"pEm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) -"pEp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 5 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) -"pEs" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/east_reactor/south) "pEu" = ( /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "pEv" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_e_entry_4" +/obj/effect/spawner/gibspawner/xeno, +/obj/effect/decal/cleanable/blood/xeno{ + icon_state = "xgib3" }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) -"pEw" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/command_centre) +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/east_reactor/south) "pEA" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -9; @@ -32503,16 +28912,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) -"pGe" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "pGg" = ( /obj/structure/bed/chair{ dir = 8 @@ -32520,11 +28919,18 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) "pGh" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/outdoors/colony_streets/north_street) +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "pGl" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/lv522/indoors/a_block/kitchen) +/obj/effect/landmark/lv624/fog_blocker/short, +/obj/effect/landmark/lv624/fog_blocker/short, +/turf/closed/wall/strata_outpost, +/area/lv522/indoors/c_block/mining) "pGN" = ( /obj/structure/prop/almayer/computers/sensor_computer3, /obj/structure/machinery/door_control/brbutton/alt{ @@ -32554,9 +28960,8 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "pGQ" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/reactor_garage) "pGY" = ( /obj/effect/decal/cleanable/blood/xeno, /obj/structure/platform{ @@ -32582,9 +28987,8 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel/far) "pHT" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/west) "pIa" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -32619,7 +29023,7 @@ /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "pJj" = ( /obj/structure/closet/crate/hydroponics/prespawned, @@ -32683,27 +29087,11 @@ /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) -"pKv" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_e_entry_3" - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) "pKX" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/bridges/op_centre) -"pLj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) "pLs" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -32718,14 +29106,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"pLP" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "pLT" = ( /obj/item/reagent_container/glass/bucket/janibucket{ desc = "It's a large bucket that fits in a janitorial cart. Holds 500 units. The lip is stained."; @@ -32740,9 +29120,8 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "pMg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/way_in_command_centre) "pMs" = ( /obj/structure/surface/table/gamblingtable, /obj/item/card/id/visa{ @@ -32760,19 +29139,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"pMz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1; - pixel_y = -1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) -"pMT" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/outdoors/nw_rockies) "pNa" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 @@ -32780,12 +29146,8 @@ /turf/open/floor/corsat/marked, /area/lv522/landing_zone_1/tunnel) "pNc" = ( -/obj/structure/prop/server_equipment/yutani_server/broken, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/way_in_command_centre) "pNf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -32794,8 +29156,11 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) "pNo" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/filt) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/atmos/way_in_command_centre) "pNq" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/curtain/medical, @@ -32807,15 +29172,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen) -"pNv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) -"pNF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/reactor_garage) "pNJ" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -32879,15 +29235,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"pOK" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/obj/structure/platform/strata{ - dir = 8 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) "pON" = ( /obj/structure/filingcabinet/chestdrawer{ density = 0; @@ -32904,10 +29251,6 @@ "pPm" = ( /obj/structure/largecrate, /turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"pPt" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/plating_catwalk/prison, /area/lv522/outdoors/nw_rockies) "pPv" = ( /obj/effect/decal/warning_stripes{ @@ -32922,9 +29265,6 @@ }, /turf/open/floor/prison/darkredfull2, /area/lv522/outdoors/colony_streets/north_street) -"pPC" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/outdoors/nw_rockies) "pPV" = ( /obj/structure/toilet{ dir = 4 @@ -32976,34 +29316,27 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) -"pQR" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor) "pRf" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) "pRg" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating, /area/lv522/landing_zone_1) "pRh" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/outdoors/n_rockies) +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/way_in_command_centre) "pRi" = ( /obj/structure/machinery/seed_extractor, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) "pRv" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) @@ -33028,8 +29361,20 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/security) "pRT" = ( -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/west_reactor) +"pRY" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/gm/river, +/area/lv522/indoors/c_block/mining) "pSs" = ( /obj/structure/machinery/light{ dir = 4 @@ -33040,12 +29385,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) -"pSK" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/almayer/w_y1/north, -/area/lv522/atmos/way_in_command_centre) "pTa" = ( /obj/structure/prop/vehicles/crawler{ layer = 3.1 @@ -33108,7 +29447,7 @@ /area/lv522/indoors/c_block/casino) "pUc" = ( /turf/open/floor/plating, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "pUd" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, @@ -33127,12 +29466,14 @@ /turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/central_streets) "pUR" = ( -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full" }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) +/obj/structure/platform, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "pVb" = ( /obj/item/prop/colony/used_flare, /turf/open/floor/prison/floor_plate, @@ -33162,9 +29503,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) -"pVx" = ( -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) "pVy" = ( /obj/structure/closet/crate, /obj/structure/machinery/light{ @@ -33180,23 +29518,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/a_block/security) -"pVH" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/way_in_command_centre) -"pVX" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) "pWk" = ( /obj/structure/surface/table/almayer, /obj/item/ammo_box/magazine/shotgun, @@ -33223,27 +29544,12 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/darkyellowfull2/east, +/turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) -"pWX" = ( -/obj/item/prop/colony/used_flare, -/turf/open/floor/prison/blue/north, -/area/lv522/indoors/a_block/admin) -"pXh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "pXk" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/meson, +/obj/effect/landmark/objective_landmark/close, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "pXq" = ( @@ -33287,13 +29593,6 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_street) -"pYf" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/vehicle/train/cargo/engine, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) "pYj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/stairs/perspective{ @@ -33324,13 +29623,9 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) "pYP" = ( -/turf/open/floor/corsat/brown, -/area/lv522/oob) -"pYY" = ( -/obj/vehicle/train/cargo/trolley, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/way_in_command_centre) "pZb" = ( /turf/closed/shuttle/dropship3/tornado/typhoon{ icon_state = "33" @@ -33346,19 +29641,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) -"pZy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/food/snacks/mre_pack/meal1{ - desc = "A tray of standard UA food. Stale cornbread, tomato paste and some green goop fill this tray."; - name = "\improper UA Prepared Meal (cornbread)"; - pixel_y = 9 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) "pZA" = ( /obj/item/storage/secure/safe{ pixel_y = 29 @@ -33409,12 +29691,12 @@ icon_state = "p_stair_full" }, /obj/structure/platform, -/turf/open/asphalt/cement/cement4, +/turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_street) "qbu" = ( /obj/structure/platform_decoration, /turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/north_street) +/area/lv522/outdoors/colony_streets/north_east_street) "qbB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ @@ -33465,7 +29747,7 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "qbW" = ( /obj/structure/prop/invuln/ice_prefab/trim{ @@ -33491,23 +29773,6 @@ /obj/item/tool/wirecutters, /turf/open/floor/prison/blue/north, /area/lv522/indoors/a_block/admin) -"qce" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_y = 7 - }, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) "qcw" = ( /obj/effect/spawner/gibspawner/human, /obj/effect/decal/cleanable/dirt, @@ -33558,11 +29823,17 @@ layer = 2.6 }, /obj/structure/machinery/door/airlock/multi_tile/elevator/freight, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "mining_shutter_2" + }, /turf/open/floor/corsat/plate, /area/lv522/indoors/c_block/mining) "qeJ" = ( -/obj/structure/prop/vehicles/crawler, -/turf/open/floor/corsat/plate, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe/north, /area/lv522/atmos/reactor_garage) "qeK" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -33581,12 +29852,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"qfo" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) "qfu" = ( /obj/structure/foamed_metal, /obj/effect/decal/cleanable/dirt, @@ -33597,9 +29862,14 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/cargo) "qfD" = ( -/obj/structure/window/reinforced, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) "qfK" = ( /obj/structure/machinery/light{ dir = 1 @@ -33629,20 +29899,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) -"qgr" = ( -/obj/structure/machinery/light/small, -/obj/structure/ladder{ - height = 1; - icon_state = "ladder10"; - id = "hatch" - }, -/turf/open/floor/plating, -/area/lv522/oob) -"qgx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) "qhm" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -33685,10 +29941,11 @@ /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "qix" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/item/prop/colony/proptag{ + desc = "A fallen marine's information dog tag. It reads, Staff Sergeant Thomas 'Dog' Smith" + }, +/turf/open/floor/corsat/squares, +/area/lv522/oob/w_y_vault) "qiC" = ( /obj/structure/machinery/camera/autoname{ dir = 8 @@ -33822,12 +30079,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"qml" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) "qmp" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger{ @@ -33844,20 +30095,6 @@ /obj/item/trash/plate, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"qmA" = ( -/turf/open/floor/plating, -/area/lv522/indoors/lone_buildings/engineering) -"qmD" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/cargo_intake) "qmM" = ( /obj/structure/prop/invuln/fire{ pixel_x = -8; @@ -33896,7 +30133,7 @@ /obj/item/clothing/head/headset{ pixel_x = 4 }, -/turf/open/floor/strata/white_cyan2/west, +/turf/open/floor/strata/white_cyan2, /area/lv522/landing_zone_forecon/UD6_Typhoon) "qnn" = ( /obj/structure/surface/table/almayer, @@ -33941,8 +30178,9 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, +/obj/structure/fence, /turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) +/area/lv522/outdoors/colony_streets/north_east_street) "qnU" = ( /obj/structure/closet/firecloset/full, /obj/effect/decal/cleanable/dirt, @@ -33970,11 +30208,16 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) "qpc" = ( -/turf/open/floor/prison/cell_stripe/east, +/obj/structure/cargo_container/watatsumi/right, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) "qpd" = ( -/turf/open/floor/prison/cell_stripe/north, -/area/lv522/atmos/sewer) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "qpq" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -33985,12 +30228,20 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) "qpy" = ( -/obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 1; +/obj/structure/pipes/vents/pump, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; pixel_x = -1; - pixel_y = 3 + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) @@ -34041,10 +30292,6 @@ /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/strata/white_cyan3/north, /area/lv522/indoors/a_block/medical) -"qqq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/filt) "qqx" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -34083,15 +30330,13 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) "qqJ" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "qqN" = ( -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/oob/w_y_vault) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "qqR" = ( /obj/structure/platform, /obj/structure/stairs/perspective{ @@ -34122,15 +30367,11 @@ /area/lv522/indoors/c_block/mining) "qrj" = ( /obj/structure/machinery/optable, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/outdoors/w_rockies) -"qro" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) +/turf/open/floor/strata/white_cyan2, +/area/lv522/outdoors/nw_rockies) "qrG" = ( /obj/structure/surface/table/almayer, -/obj/item/map/lv522_map, +/obj/effect/landmark/map_item, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) "qsd" = ( @@ -34150,12 +30391,13 @@ /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/beaker/vial, /obj/structure/machinery/cell_charger, +/obj/structure/platform_decoration, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "qst" = ( /obj/structure/girder/displaced, /turf/open/floor/plating, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "qsC" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/beakers, @@ -34196,11 +30438,9 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/garden) "qsW" = ( -/obj/structure/platform{ - dir = 4 - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/south) "qtc" = ( /turf/closed/shuttle/dropship3/tornado/typhoon{ icon_state = "74" @@ -34219,12 +30459,8 @@ /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/east_central_street) "qts" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/platingdmg1, +/area/lv522/indoors/a_block/security) "qtx" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -34254,10 +30490,7 @@ /obj/item/toy/dice, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness/glass) "qtN" = ( /obj/effect/decal/warning_stripes{ @@ -34291,14 +30524,6 @@ /obj/structure/largecrate, /turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1) -"qvb" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "qvA" = ( /turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2) @@ -34320,17 +30545,6 @@ }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"qvQ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) -"qvY" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) "qws" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp{ @@ -34373,7 +30587,7 @@ }, /obj/item/toy/deck, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness/glass) "qxk" = ( /obj/structure/platform_decoration{ @@ -34387,7 +30601,7 @@ /area/lv522/indoors/c_block/cargo) "qxp" = ( /obj/structure/closet/emcloset, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "qxB" = ( /obj/item/ammo_magazine/sniper{ @@ -34450,20 +30664,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"qyG" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) "qyI" = ( /obj/structure/closet/firecloset/full, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness/glass) "qyM" = ( /obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "qyS" = ( /obj/structure/desertdam/decals/road_edge{ @@ -34483,7 +30693,7 @@ id = "sh_dropship2"; name = "\improper Typhoon crew hatch" }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "qzw" = ( /turf/closed/shuttle/dropship3/tornado{ @@ -34491,26 +30701,8 @@ }, /area/lv522/landing_zone_forecon/UD6_Tornado) "qzy" = ( -/obj/structure/largecrate/random/barrel{ - layer = 2.7 - }, -/obj/structure/largecrate/random/barrel{ - layer = 2.9; - pixel_x = 6; - pixel_y = -16 - }, -/obj/structure/largecrate/random/barrel{ - layer = 2.9; - pixel_x = -17; - pixel_y = -9 - }, -/obj/structure/blocker/invisible_wall, -/obj/structure/prop/invuln/fire{ - pixel_x = -3; - pixel_y = 6 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/floor/prison/blue_plate, +/area/lv522/indoors/a_block/bridges/op_centre) "qzA" = ( /obj/item/reagent_container/glass/bucket/janibucket{ pixel_x = -11; @@ -34562,10 +30754,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) -"qAS" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/reactor_garage) "qAX" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -34667,15 +30855,9 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "qCE" = ( -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor/south) +/obj/structure/girder, +/turf/open/floor/prison/blue_plate, +/area/lv522/indoors/a_block/admin) "qCL" = ( /obj/structure/bed/chair{ dir = 8 @@ -34739,8 +30921,13 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) "qDL" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/bridges/corpo_fitness) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) "qDR" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/prison, @@ -34786,17 +30973,6 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"qEQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) -"qET" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) "qEU" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/pipes/standard/simple/hidden/green{ @@ -34826,9 +31002,12 @@ /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_west_street) "qFW" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/oob/w_y_vault) "qGf" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/asphalt/cement, @@ -34840,7 +31019,10 @@ phone_id = "Colony Fitness"; pixel_y = 26 }, -/turf/open/floor/prison/whitegreenfull/southwest, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) "qGq" = ( /obj/structure/bed/chair/comfy{ @@ -34919,12 +31101,10 @@ pixel_x = 5; pixel_y = 6 }, -/turf/open/floor/strata/white_cyan2/west, +/turf/open/floor/strata/white_cyan2, /area/lv522/landing_zone_forecon/UD6_Typhoon) "qHD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/wood/ship, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, /area/lv522/atmos/way_in_command_centre) "qHI" = ( /obj/vehicle/powerloader/jd{ @@ -34938,21 +31118,14 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) "qIu" = ( -/obj/structure/bed/bedroll{ - dir = 1; - layer = 6; - pixel_y = 16 - }, -/obj/item/bedsheet/ce{ - layer = 6.1; - pixel_y = 17 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) +/obj/effect/landmark/survivor_spawner, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluefull, +/area/lv522/indoors/a_block/admin) "qIy" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo/glass) +/obj/item/stack/rods, +/turf/open/floor/prison/blue/north, +/area/lv522/indoors/a_block/admin) "qIE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -34966,10 +31139,6 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) -"qJl" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "qJp" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/space_heater/radiator/red{ @@ -34992,14 +31161,20 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_west_street) "qJE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/item/tool/warning_cone{ + pixel_x = -10; + pixel_y = 11 + }, /turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/area/lv522/atmos/east_reactor/west) "qJH" = ( /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "qJK" = ( -/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) "qJN" = ( @@ -35045,10 +31220,6 @@ }, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) -"qKO" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) "qKV" = ( /obj/structure/platform_decoration{ dir = 8 @@ -35060,7 +31231,12 @@ /obj/structure/barricade/wooden{ dir = 4 }, -/turf/open/floor/prison/darkyellowfull2/east, +/obj/structure/machinery/light/small, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) "qLd" = ( /obj/structure/surface/table/almayer, @@ -35070,8 +31246,8 @@ pixel_y = -5 }, /obj/effect/landmark/objective_landmark/far, -/turf/open/floor/strata/white_cyan2/west, -/area/lv522/outdoors/w_rockies) +/turf/open/floor/strata/white_cyan2, +/area/lv522/outdoors/nw_rockies) "qLk" = ( /obj/structure/closet/firecloset/full, /turf/open/floor/plating, @@ -35204,7 +31380,10 @@ pixel_y = 7 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/obj/structure/machinery/power/apc/power/west{ + start_charge = 20 + }, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness/glass) "qNQ" = ( /obj/structure/surface/table/almayer, @@ -35230,9 +31409,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/b_block/bar) -"qOa" = ( -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) "qOi" = ( /obj/structure/prop/invuln/fire{ pixel_x = -8; @@ -35253,7 +31429,7 @@ "qOQ" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) "qOS" = ( /obj/structure/curtain/medical, @@ -35267,11 +31443,9 @@ /turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_street) "qPq" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/command_centre) +/obj/structure/platform/strata, +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "qPu" = ( /obj/item/weapon/gun/revolver/cmb, /obj/item/clothing/head/soft/sec, @@ -35279,9 +31453,6 @@ /turf/open/floor/strata/white_cyan3/east, /area/lv522/indoors/a_block/medical/glass) "qPA" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, /obj/effect/decal/cleanable/generic, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) @@ -35310,7 +31481,7 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 8 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "qPU" = ( /obj/structure/bed/chair{ @@ -35346,7 +31517,7 @@ /obj/structure/machinery/space_heater/radiator/red{ dir = 4 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "qQr" = ( /obj/item/trash/candle{ @@ -35375,14 +31546,11 @@ /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/central_streets) "qQN" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) "qQQ" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, @@ -35402,11 +31570,10 @@ /turf/open/floor/prison/darkpurple2/west, /area/lv522/indoors/a_block/dorms) "qRw" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "qRB" = ( /obj/structure/closet/crate, /obj/item/stack/sheet/plasteel/medium_stack, @@ -35529,9 +31696,8 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/security) "qTE" = ( -/obj/item/clothing/suit/storage/marine/medium, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/east_reactor) "qTG" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -35541,12 +31707,11 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen) "qTH" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/platform_decoration/strata{ + dir = 1 }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/command_centre) +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "qTI" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; @@ -35598,18 +31763,16 @@ /obj/structure/curtain/red, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/t_comm) -"qUz" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) "qUL" = ( /turf/open/floor/plating, /area/lv522/outdoors/colony_streets/north_east_street) "qUQ" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) +/obj/structure/platform/strata, +/obj/structure/platform/strata{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "qVb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -35640,15 +31803,16 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/outdoor_bot) "qVN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/item/storage/box/MRE{ + pixel_x = 3; + pixel_y = 3 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_e_entry_4" +/obj/item/storage/box/MRE{ + pixel_x = -1; + pixel_y = -6 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "qVQ" = ( /obj/structure/machinery/camera/autoname{ dir = 8 @@ -35658,26 +31822,19 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) -"qWf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/engineering) "qWk" = ( /obj/structure/largecrate/supply/ammo/m41a/half{ pixel_x = 5 }, -/obj/item/storage/box/guncase/m41a{ - pixel_x = 2; - pixel_y = 6 - }, /obj/item/ammo_box/rounds/empty{ layer = 3.1; pixel_y = -15 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/obj/item/storage/box/guncase/m41a{ + pixel_y = 5; + pixel_x = 6 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "qWt" = ( /obj/structure/window/framed/strata/reinforced, @@ -35730,11 +31887,9 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/fitness/glass) "qYk" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) "qYl" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -35771,18 +31926,18 @@ /area/lv522/indoors/a_block/kitchen/glass) "qYv" = ( /obj/structure/closet/basketball, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "qYy" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/obj/item/trash/uscm_mre{ + pixel_x = 10; + pixel_y = -2 }, -/obj/structure/platform{ - dir = 4 +/obj/item/trash/uscm_mre{ + pixel_y = 10 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "qYG" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -35791,9 +31946,8 @@ /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) "qYM" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/cargo_intake) "qYP" = ( /obj/structure/platform{ dir = 1 @@ -35819,11 +31973,7 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/bridge) "qZf" = ( -/obj/item/storage/belt/marine{ - pixel_x = 7; - pixel_y = 5 - }, -/turf/closed/wall/strata_ice/dirty, +/turf/open/auto_turf/shale/layer1, /area/lv522/oob) "qZh" = ( /obj/structure/surface/table/almayer, @@ -35837,22 +31987,15 @@ /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_east_street) "qZB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor) +/obj/structure/platform/strata{ + dir = 8 + }, +/obj/structure/platform/strata, +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "qZC" = ( /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/hallway) -"qZJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) "qZT" = ( /obj/item/prop/colony/usedbandage{ dir = 9 @@ -35904,20 +32047,40 @@ /turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/op_centre) "raH" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 + }, +/obj/item/weapon/ice_axe/red{ + pixel_y = 3 + }, +/obj/structure/prop/invuln/rope{ + pixel_x = -10; + pixel_y = 23 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) "raI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/corpo/glass) +/obj/structure/pipes/vents/pump, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "raQ" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "raS" = ( /obj/structure/desertdam/decals/road_edge{ @@ -35976,8 +32139,7 @@ /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) "rbc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) "rbj" = ( @@ -36006,21 +32168,10 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"rbW" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor) "rbX" = ( /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/east_central_street) -"rbZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) "rcd" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/accessory/poncho, @@ -36084,11 +32235,9 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "rdf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/reactor_garage) +/obj/item/tool/wet_sign, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "rdq" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent2"; @@ -36244,9 +32393,6 @@ /obj/structure/machinery/power/port_gen/pacman/mrs, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) -"rgn" = ( -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) "rgA" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "101" @@ -36269,6 +32415,13 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel/far) +"rha" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/matches{ + pixel_y = 8 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/nw_rockies) "rhh" = ( /obj/structure/bed/chair/wheelchair, /obj/effect/decal/cleanable/dirt, @@ -36290,11 +32443,17 @@ /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "rhF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/prop/almayer/computers/sensor_computer3{ + layer = 2.9 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/structure/machinery/door_display/research_cell{ + id = "Reactor_entry_1"; + pixel_x = 5; + pixel_y = -7; + req_access = null + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "rie" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue_plate/north, @@ -36333,18 +32492,6 @@ }, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) -"rjl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood, -/obj/structure/transmitter/colony_net{ - phone_category = "LV522 Chances Claim"; - phone_color = "red"; - phone_id = "Reactor Entrance Office"; - pixel_y = 26 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "rjn" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6; @@ -36375,8 +32522,9 @@ /turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/east_central_street) "rjP" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/blue/east, +/area/lv522/indoors/a_block/admin) "rkd" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/medium, @@ -36389,9 +32537,12 @@ /turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/bridges/op_centre) "rla" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/filt) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner/lv522_forecon_sniper, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) "rls" = ( /obj/structure/bed/chair{ dir = 1 @@ -36437,11 +32588,12 @@ /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/fitness/glass) "rmA" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/item/storage/belt/marine{ + pixel_x = 7; + pixel_y = 5 }, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "rmC" = ( /obj/structure/bed/chair{ dir = 1 @@ -36460,10 +32612,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) -"rmV" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/east_reactor/south) "rmX" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -36479,12 +32627,15 @@ /turf/open/floor/prison/blue, /area/lv522/indoors/a_block/hallway) "rnp" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/surface/table/almayer, +/obj/structure/machinery/door_control/brbutton/alt{ + id = "Marked_1"; + name = "remote door-control"; + pixel_y = 3 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) +/obj/item/paper/hydroponics, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "rnq" = ( /turf/closed/wall/solaris/reinforced/hull/lv522, /area/lv522/landing_zone_2) @@ -36516,7 +32667,7 @@ "rod" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness/glass) "rot" = ( /obj/structure/cargo_container/kelland/right, @@ -36529,13 +32680,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"rov" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) "rox" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -36551,8 +32695,12 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/kitchen/glass) "roM" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/west) +/obj/item/device/flashlight/lamp/tripod{ + layer = 6; + pixel_y = 11 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "roN" = ( /obj/structure/machinery/smartfridge/seeds, /turf/open/floor/prison/greenfull/east, @@ -36562,7 +32710,7 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) "rpe" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -36593,7 +32741,7 @@ /obj/structure/pipes/vents/pump, /obj/structure/closet/firecloset/full, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "rqn" = ( /turf/open/floor/prison/floor_plate, @@ -36606,13 +32754,8 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/cargo) "rqE" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap{ - pixel_x = 16; - pixel_y = 16 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/reactor_garage) "rqP" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -36621,12 +32764,11 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "rqT" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/platform/strata{ + dir = 8 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "rrf" = ( /obj/structure/platform, /obj/structure/prop/invuln/lattice_prop{ @@ -36651,7 +32793,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "rrV" = ( /obj/structure/window_frame/strata, @@ -36666,7 +32808,7 @@ "rsa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/fitness) @@ -36692,15 +32834,15 @@ dir = 5 }, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "rsM" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/corpsespawner/forecon_spotter, +/obj/item/weapon/gun/rifle/m41a{ + current_mag = null }, -/obj/structure/platform/stair_cut, -/turf/open/floor/plating, -/area/lv522/atmos/filt) +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) "rsX" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/barricade/wooden, @@ -36726,7 +32868,7 @@ dir = 10 }, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "rtv" = ( /obj/structure/machinery/cm_vending/sorted/medical/no_access, /obj/structure/machinery/light{ @@ -36735,9 +32877,6 @@ /obj/structure/medical_supply_link/green, /turf/open/floor/strata/white_cyan3/east, /area/lv522/indoors/a_block/medical/glass) -"rtw" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/reactor_garage) "rtz" = ( /obj/item/stack/sheet/wood, /obj/item/ore/diamond, @@ -36753,12 +32892,14 @@ /obj/structure/platform{ dir = 8 }, -/turf/open/shuttle/dropship/can_surgery/light_grey_middle, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "rtI" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison, -/area/lv522/outdoors/nw_rockies) +/obj/structure/platform/strata{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/oob) "rtX" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/blue1, @@ -36782,20 +32923,19 @@ }, /area/lv522/landing_zone_forecon/UD6_Typhoon) "rus" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/lv522/landing_zone_forecon/UD6_Typhoon) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/indoors/lone_buildings/storage_blocks) "ruv" = ( -/obj/structure/blocker/invisible_wall, -/obj/item/clothing/head/soft/ferret, +/obj/item/stack/medical/bruise_pack, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_east_street) +/area/lv522/oob) "ruH" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "ruS" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -36823,10 +32963,9 @@ /turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "rvg" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) +/obj/item/stack/sheet/metal, +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) "rvh" = ( /obj/effect/decal/cleanable/blood/gibs/xeno/body, /obj/effect/spawner/gibspawner/xeno, @@ -36834,7 +32973,7 @@ dir = 9 }, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "rvu" = ( /obj/structure/prop/ice_colony/dense/planter_box{ dir = 8 @@ -36933,7 +33072,7 @@ /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) "rwM" = ( -/turf/open/floor/corsat/marked, +/turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) "rwR" = ( /obj/structure/desertdam/decals/road_edge{ @@ -36957,18 +33096,13 @@ /area/lv522/indoors/a_block/dorms) "rxo" = ( /obj/structure/surface/table/almayer, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_east_street) "rxu" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) -"rxI" = ( -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/colony_streets/north_street) +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/reactor_garage) "rxK" = ( /obj/item/tool/surgery/circular_saw, /obj/item/tool/surgery/cautery, @@ -36984,10 +33118,6 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/hallway) -"ryj" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/a_block/corpo/glass) "rys" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -37020,21 +33150,31 @@ /obj/structure/curtain/red, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/executive) -"ryT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/corpo/glass) "ryU" = ( /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1) "rza" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/filt) +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_y = 8 + }, +/obj/item/prop/colony/usedbandage{ + dir = 10 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "rzq" = ( -/obj/structure/cargo_container/kelland/left, +/obj/structure/bed/bedroll{ + dir = 1; + layer = 6; + pixel_y = 16 + }, +/obj/item/bedsheet/ce{ + layer = 6.1; + pixel_y = 17 + }, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) +/area/lv522/oob) "rzz" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/east, @@ -37076,19 +33216,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/bridges) -"rAL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) "rAM" = ( /obj/structure/largecrate/random/case, /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel/far) "rAX" = ( -/turf/open/floor/whiteyellowfull/east, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo) "rBd" = ( /obj/structure/platform{ @@ -37102,11 +33237,14 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) "rBz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/platform/strata{ + dir = 1 }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) +/obj/structure/platform/strata{ + dir = 8 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "rBU" = ( /turf/closed/shuttle/dropship3/tornado/typhoon{ icon_state = "41" @@ -37118,7 +33256,14 @@ }, /area/lv522/landing_zone_forecon/UD6_Tornado) "rCa" = ( -/obj/structure/closet/secure_closet/atmos_personal, +/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/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "rCi" = ( @@ -37127,13 +33272,13 @@ }, /area/lv522/landing_zone_forecon/UD6_Tornado) "rCu" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/outdoors/n_rockies) -"rCz" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony{ - dir = 1 +/obj/structure/platform_decoration/strata{ + dir = 4 }, -/turf/open/floor/corsat/marked, +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) +"rCz" = ( +/turf/open/floor/plating/plating_catwalk/prison, /area/lv522/atmos/east_reactor/south) "rCE" = ( /obj/structure/machinery/light{ @@ -37151,6 +33296,12 @@ icon_state = "17" }, /area/lv522/landing_zone_forecon/UD6_Tornado) +"rCM" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/cargo) "rCQ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -37184,7 +33335,7 @@ /obj/item/shard{ icon_state = "medium" }, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "rEj" = ( /obj/structure/machinery/door/airlock/almayer/medical{ @@ -37203,11 +33354,7 @@ "rEP" = ( /obj/effect/spawner/gibspawner/human, /turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) -"rEV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/area/lv522/outdoors/nw_rockies) "rFh" = ( /obj/structure/platform_decoration{ dir = 1 @@ -37237,18 +33384,25 @@ }, /area/lv522/landing_zone_forecon/UD6_Typhoon) "rGi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/blood{ + desc = "Watch your step."; + icon_state = "gib6" + }, +/obj/item/ammo_magazine/rifle/extended{ + current_rounds = 0; + pixel_x = 6; + pixel_y = 17 + }, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/colony_streets/north_west_street) "rGm" = ( /obj/item/tool/weldingtool, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/dorms) "rGD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) +/obj/structure/girder, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "rGE" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/prison, @@ -37287,10 +33441,11 @@ /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/outdoors/colony_streets/south_west_street) "rIn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/structure/machinery/colony_floodlight_switch{ + pixel_y = 30 }, -/turf/open/floor/plating/plating_catwalk/prison, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "rIx" = ( /obj/structure/machinery/light{ @@ -37333,7 +33488,7 @@ /area/lv522/indoors/a_block/dorm_north) "rJr" = ( /obj/structure/surface/rack, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_east_street) "rJB" = ( /obj/effect/decal/cleanable/blood/xeno{ @@ -37356,15 +33511,6 @@ /obj/effect/landmark/objective_landmark/medium, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"rJI" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/outdoors/nw_rockies) -"rKa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/alien/resin/sticky, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) "rKe" = ( /obj/structure/platform{ dir = 8 @@ -37385,28 +33531,22 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness/glass) "rKt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) "rKz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/bed/chair, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) "rKS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, +/turf/open/floor/corsat, /area/lv522/atmos/reactor_garage) "rKW" = ( /obj/effect/decal/cleanable/blood, @@ -37445,7 +33585,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "rLt" = ( /obj/structure/pipes/standard/manifold/hidden/green{ @@ -37455,7 +33595,7 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "rLx" = ( /obj/structure/surface/table/woodentable/fancy, @@ -37473,19 +33613,8 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) -"rLB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/fence, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/nw_rockies) "rMb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -37507,7 +33636,7 @@ "rMi" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) "rMr" = ( /obj/effect/decal/cleanable/dirt, @@ -37529,12 +33658,17 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) "rMD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/obj/item/prop/colony/used_flare, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "rME" = ( -/turf/closed/wall/solaris/reinforced/hull/lv522, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/item/prop/colony/usedbandage{ + dir = 9; + pixel_x = 5; + pixel_y = 15 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "rMF" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) @@ -37543,9 +33677,11 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) "rNm" = ( -/obj/structure/largecrate/random/barrel/blue, +/obj/structure/platform/strata{ + dir = 1 + }, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) +/area/lv522/oob) "rNs" = ( /obj/item/stack/sheet/wood, /turf/open/floor/prison/darkbrownfull2, @@ -37577,11 +33713,9 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) "rOf" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) +/obj/structure/blocker/forcefield/vehicles, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/command_centre) "rOg" = ( /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) @@ -37666,9 +33800,9 @@ /area/lv522/indoors/c_block/mining) "rQL" = ( /obj/structure/platform_decoration/strata{ - dir = 4 + dir = 8 }, -/turf/closed/wall/strata_ice/dirty, +/turf/open/auto_turf/sand_white/layer0, /area/lv522/oob) "rRa" = ( /obj/structure/surface/table/woodentable/fancy, @@ -37709,11 +33843,6 @@ }, /turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2/ceiling) -"rRA" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/light, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "rRJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ @@ -37780,12 +33909,8 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "rSs" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/turf/open/floor/prison/cell_stripe/east, +/area/lv522/indoors/lone_buildings/storage_blocks) "rSG" = ( /obj/item/clothing/shoes/jackboots{ pixel_x = 5; @@ -37815,9 +33940,8 @@ /turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/south_east_street) "rTh" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/west_reactor) "rUe" = ( /obj/structure/largecrate/supply{ pixel_x = -4 @@ -37838,13 +33962,6 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/east_central_street) -"rUl" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) "rUr" = ( /obj/structure/machinery/prop/almayer/computer/PC{ pixel_y = 5 @@ -37859,26 +33976,10 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) -"rUX" = ( -/obj/structure/shuttle/engine/heater{ - dir = 4; - pixel_x = 4 - }, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 4; - icon_state = "flammable_pipe_3"; - pixel_x = 2 - }, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) "rVa" = ( -/obj/structure/machinery/colony_floodlight{ - density = 0; - layer = 4.3; - pixel_y = 17 - }, +/obj/structure/machinery/colony_floodlight, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) "rVe" = ( @@ -37889,13 +33990,6 @@ }, /turf/open/asphalt/cement/cement14, /area/lv522/outdoors/colony_streets/central_streets) -"rVB" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/south) "rVO" = ( /obj/structure/surface/table/almayer, /turf/open/floor/prison/blue/southwest, @@ -37928,7 +34022,7 @@ /area/lv522/indoors/c_block/t_comm) "rWS" = ( /turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "rWX" = ( /obj/structure/machinery/light{ dir = 1 @@ -37936,36 +34030,10 @@ /obj/structure/ore_box, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) -"rXa" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "rXb" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"rXq" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"rXr" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/nw_rockies) "rXE" = ( /obj/item/stack/sheet/wood, /turf/open/floor/prison/darkbrownfull2, @@ -37983,11 +34051,9 @@ /obj/structure/platform{ dir = 4 }, -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, +/obj/structure/machinery/colony_floodlight, /turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) +/area/lv522/outdoors/colony_streets/north_east_street) "rYq" = ( /obj/structure/platform, /obj/structure/platform{ @@ -38039,16 +34105,14 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) "rZg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating, +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/lone_buildings/engineering) "rZi" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/bridges/dorms_fitness) "rZE" = ( /obj/structure/pipes/vents/pump, @@ -38057,7 +34121,7 @@ /area/lv522/indoors/c_block/mining) "rZF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/bridges/dorms_fitness) "rZK" = ( /obj/structure/stairs/perspective{ @@ -38086,22 +34150,6 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/admin) -"say" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "saz" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -38117,23 +34165,24 @@ /turf/open/asphalt/cement, /area/lv522/landing_zone_1) "saQ" = ( -/obj/structure/shuttle/engine/heater{ - dir = 4; - pixel_x = 4 +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/indoors/lone_buildings/storage_blocks) +"saS" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 }, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 4; - icon_state = "flammable_pipe_3"; - pixel_x = 2 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/west_reactor) -"saS" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 10 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "saV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -38166,19 +34215,11 @@ /area/lv522/landing_zone_2/ceiling) "sbj" = ( /obj/effect/decal/cleanable/blood/splatter, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "sbm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/n_rockies) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "sbx" = ( /obj/structure/machinery/camera/autoname{ dir = 8 @@ -38255,11 +34296,8 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "sdR" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/browncorner/north, +/area/lv522/atmos/east_reactor) "sec" = ( /obj/structure/prop/invuln/fire{ pixel_x = -7; @@ -38286,10 +34324,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) -"seF" = ( -/obj/structure/window/framed/corsat, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) "seG" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -38304,7 +34338,7 @@ /obj/item/toy/crossbow_ammo, /obj/item/toy/crossbow_ammo, /obj/item/toy/crossbow_ammo, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness/glass) "seX" = ( /obj/structure/platform_decoration{ @@ -38313,12 +34347,13 @@ /turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/south_west_street) "sfc" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "sfm" = ( /obj/structure/surface/table/almayer, /obj/item/toy/bikehorn, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness/glass) "sfI" = ( /obj/structure/platform{ @@ -38329,12 +34364,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"sfM" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) "sfO" = ( /obj/structure/platform_decoration{ dir = 8 @@ -38355,11 +34384,13 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/cargo) "sgq" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 +/obj/structure/window/reinforced{ + dir = 1; + layer = 3 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/bluegrid, +/area/lv522/atmos/command_centre) "sgG" = ( /obj/structure/surface/table/almayer, /obj/item/tool/kitchen/tray{ @@ -38371,9 +34402,6 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"sgT" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/lv522/indoors/a_block/corpo) "sgV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/woodentable/fancy, @@ -38395,22 +34423,21 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) "she" = ( -/obj/structure/machinery/floodlight, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "shh" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{ dir = 1; id = "sh_dropship2"; name = "\improper Typhoon crew hatch" }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "shm" = ( /obj/structure/machinery/vending/cola, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness/glass) "shq" = ( /turf/closed/shuttle/dropship3/tornado{ @@ -38418,14 +34445,13 @@ }, /area/lv522/landing_zone_forecon/UD6_Tornado) "shD" = ( -/obj/item/stack/rods, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/atmos/filt) "shK" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/toy, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness/glass) "shZ" = ( /obj/structure/machinery/colony_floodlight{ @@ -38443,7 +34469,7 @@ "sil" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness/glass) "six" = ( /turf/open/floor/corsat/marked, @@ -38458,7 +34484,7 @@ /obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) "siX" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -38488,7 +34514,7 @@ }, /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) "sjp" = ( /obj/structure/bed/chair{ @@ -38496,15 +34522,8 @@ }, /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) -"sjx" = ( -/obj/item/prop/colony/canister{ - layer = 3.1; - pixel_y = 16 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/reactor_garage) "sjy" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/security) @@ -38560,15 +34579,11 @@ /turf/open/floor/strata/white_cyan2/west, /area/lv522/indoors/a_block/dorms) "skk" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/brown/east, /area/lv522/atmos/east_reactor/south) -"skC" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) "skE" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "63" @@ -38599,15 +34614,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_2) -"slt" = ( -/obj/structure/surface/table/almayer, -/obj/structure/transmitter/colony_net/rotary{ - phone_category = "LV522 Chances Claim"; - phone_id = "Reactor Control"; - pixel_y = 6 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "slD" = ( /obj/structure/prop/invuln/ice_prefab/trim{ dir = 6 @@ -38651,16 +34657,12 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "smr" = ( -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/reactor_garage) -"sms" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/structure/prop/server_equipment/yutani_server/broken, +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "smF" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -38668,24 +34670,15 @@ /turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical/glass) "smK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/corsat/squares, -/area/lv522/oob) -"smR" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "West LZ Storage"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/storage_blocks) +/area/lv522/atmos/west_reactor) "smY" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/atmos/reactor_garage) "snb" = ( /obj/effect/decal/cleanable/blood/gibs, /obj/effect/decal/cleanable/dirt, @@ -38710,11 +34703,6 @@ /obj/structure/prop/almayer/computers/sensor_computer1, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/c_block/mining) -"snP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "snR" = ( /obj/structure/surface/rack, /obj/item/tank/oxygen, @@ -38742,7 +34730,7 @@ dir = 1; pixel_y = 26 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "spe" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -38757,14 +34745,10 @@ /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) "spn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1; - pixel_y = -1 - }, -/obj/effect/landmark/corpsespawner/wy/manager, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) "spo" = ( /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/central_streets) @@ -38776,7 +34760,6 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) "spy" = ( -/obj/structure/fence, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 @@ -38784,26 +34767,23 @@ /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/atmos/east_reactor/south) "spz" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; name = "\improper Mining Control" }, +/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) -"spB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "spI" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/north) +/obj/structure/prop/dam/crane/damaged{ + layer = 2.9 + }, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) "spJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -38830,32 +34810,10 @@ "sql" = ( /turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/central_streets) -"sqH" = ( -/obj/structure/machinery/door_display/research_cell{ - dir = 8; - id = "Reactor_entry_2"; - pixel_x = 16; - req_access = null - }, -/obj/item/prop/alien/hugger, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "sqQ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/a_block/kitchen/damage) -"srf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "srk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -38901,17 +34859,28 @@ /turf/open/floor/plating, /area/lv522/landing_zone_2) "sse" = ( +/obj/structure/prop/server_equipment/yutani_server{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) +"ssh" = ( +/obj/structure/fence{ + layer = 2.9 + }, /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_x = -1; - pixel_y = 2 + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"ssh" = ( -/obj/structure/closet/crate/trashcart, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) +/area/lv522/outdoors/colony_streets/north_west_street) "ssj" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/fence{ @@ -38934,8 +34903,9 @@ /turf/open/asphalt/cement/cement12, /area/lv522/outdoors/colony_streets/central_streets) "ssn" = ( -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/west_reactor) +/obj/structure/closet/crate, +/turf/open/floor/prison/floor_marked, +/area/lv522/indoors/lone_buildings/storage_blocks) "ssU" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "89" @@ -38959,11 +34929,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) -"sus" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical/green, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) +"sux" = ( +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/nw_rockies) "suF" = ( /obj/structure/bed/chair{ dir = 4 @@ -38971,23 +34940,12 @@ /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) "suG" = ( -/obj/item/prop/colony/used_flare, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/squares, +/area/lv522/oob/w_y_vault) "suS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/cargo_container/watatsumi/rightmid, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/storage_blocks) "suV" = ( /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."; @@ -39037,8 +34995,12 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) "svW" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/atmos/east_reactor) +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "A-Block_Warehouse" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/storage_blocks) "swr" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "45" @@ -39050,9 +35012,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) -"swu" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor) "swD" = ( /obj/structure/largecrate/supply/supplies/metal, /turf/open/floor/prison/darkbrownfull2, @@ -39092,13 +35051,14 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) "sxU" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/west) -"syg" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/storage_blocks) "syl" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -39140,16 +35100,17 @@ }, /turf/open/floor/corsat/marked, /area/lv522/landing_zone_1/ceiling) -"syV" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) "syW" = ( /obj/item/explosive/mine/active{ dir = 8 }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) +"sza" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail, +/turf/open/floor/plating, +/area/lv522/landing_zone_1/tunnel) "szh" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -39241,15 +35202,18 @@ /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "sBH" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 16 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "A-Block_Warehouse" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/storage_blocks) "sBX" = ( -/obj/structure/girder, -/turf/open/auto_turf/sand_white/layer0, +/obj/structure/cargo_container/wy/right, +/turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_east_street) "sCb" = ( /obj/structure/platform_decoration{ @@ -39285,22 +35249,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"sCw" = ( -/obj/item/tool/warning_cone{ - pixel_x = -10; - pixel_y = 3 +"sCD" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "mining_shutter_1"; + dir = 4 }, -/obj/structure/closet/crate, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "sCP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/closet/crate, /obj/effect/decal/cleanable/dirt, -/obj/item/storage/pouch/medkit/full_advanced, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) "sDa" = ( /obj/structure/machinery/light/small{ @@ -39315,8 +35273,8 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/lone_buildings/chunk) "sDf" = ( -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/prison/cell_stripe, +/area/lv522/indoors/lone_buildings/storage_blocks) "sDq" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -39324,24 +35282,19 @@ /obj/item/weapon/twohanded/folded_metal_chair, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"sDv" = ( -/obj/structure/girder/displaced, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) "sDz" = ( /obj/structure/largecrate/random{ layer = 2.9 }, /turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2) -"sDS" = ( -/turf/open/floor/prison, -/area/lv522/outdoors/nw_rockies) "sEa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/turf/open/floor/prison, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "sEc" = ( /obj/structure/bed/bedroll{ @@ -39378,11 +35331,9 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "sFb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/reactor_garage) +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "sFf" = ( /obj/item/trash/burger, /obj/effect/decal/cleanable/dirt, @@ -39430,20 +35381,10 @@ /obj/item/tool/pickaxe/silver, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/storage_blocks) -"sGt" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/nw_rockies) "sGv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "sGD" = ( /obj/item/shard{ icon_state = "medium" @@ -39452,9 +35393,8 @@ /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "sGF" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) +/turf/open/floor/corsat/brown/east, +/area/lv522/atmos/cargo_intake) "sGQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -39482,11 +35422,15 @@ /obj/structure/curtain/red, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/casino) +"sHp" = ( +/obj/structure/platform_decoration/strata, +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "sHy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) +/obj/structure/machinery/floodlight, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/lv522/indoors/lone_buildings/storage_blocks) "sHS" = ( /obj/structure/stairs/perspective{ dir = 5; @@ -39550,11 +35494,16 @@ /turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/central_streets) "sIS" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/fence, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) "sJI" = ( /obj/structure/surface/table/almayer, /obj/item/key/cargo_train, @@ -39591,7 +35540,7 @@ pixel_x = -1; pixel_y = 29 }, -/turf/open/floor/strata/white_cyan2/west, +/turf/open/floor/strata/white_cyan2, /area/lv522/indoors/toilet) "sKu" = ( /obj/structure/barricade/handrail/strata, @@ -39642,7 +35591,7 @@ "sKL" = ( /obj/item/prop/alien/hugger, /obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) "sKS" = ( /obj/structure/reagent_dispensers/fueltank, @@ -39652,29 +35601,12 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "sKU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) -"sLa" = ( -/obj/structure/showcase{ - desc = "The display model for a Weyland Yutani generation one synthetic. It almost feels like the eyes on this one follow you."; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Display synthetic" - }, -/obj/item/clothing/under/CM_uniform{ - pixel_y = -2 - }, -/obj/structure/window/reinforced, -/turf/open/floor/bluegrid, -/area/lv522/indoors/a_block/corpo/glass) +/obj/structure/machinery/floodlight, +/turf/open/floor/prison/cell_stripe, +/area/lv522/indoors/lone_buildings/storage_blocks) "sLc" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/faxmachine{ - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, +/obj/effect/spawner/gibspawner/xeno, +/turf/open/floor/prison/cell_stripe/west, /area/lv522/atmos/way_in_command_centre) "sLk" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -39737,23 +35669,21 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) "sLU" = ( -/obj/structure/sign/safety/synth_storage{ - pixel_x = 23; - pixel_y = 29 - }, -/turf/open/floor/bluegrid, -/area/lv522/indoors/a_block/corpo/glass) -"sLZ" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, +/obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W"; + pixel_x = -1 }, /turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/nw_rockies) +/area/lv522/atmos/way_in_command_centre) +"sLZ" = ( +/obj/structure/machinery/floodlight, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/floor_marked, +/area/lv522/indoors/lone_buildings/storage_blocks) "sMa" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 @@ -39761,16 +35691,11 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) "sMA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/structure/surface/table/woodentable/fancy, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 4; - pixel_x = 2 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) "sMI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname{ @@ -39796,33 +35721,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"sMY" = ( -/obj/structure/showcase{ - desc = "The display model for a Weyland Yutani generation one synthetic. Why would someone put a skirt on a synthetic?"; - icon = 'icons/mob/humans/species/r_synthetic.dmi'; - icon_state = "Synthetic_Template"; - name = "Display synthetic" - }, -/obj/item/clothing/under/blackskirt{ - pixel_y = -3 - }, -/obj/structure/window/reinforced, -/turf/open/floor/bluegrid, -/area/lv522/indoors/a_block/corpo/glass) "sNk" = ( -/obj/effect/landmark/survivor_spawner/lv522_forecon_sniper, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) -"sNm" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/structure/closet/crate, +/obj/item/storage/pouch/medkit/full_advanced, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/lv522/indoors/lone_buildings/storage_blocks) "sNQ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/plating, -/area/lv522/atmos/filt) +/obj/structure/machinery/floodlight, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/lv522/indoors/lone_buildings/storage_blocks) "sNR" = ( /obj/structure/coatrack{ pixel_y = 24 @@ -39838,17 +35747,6 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) -"sNU" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/disposal, -/obj/item/storage/firstaid/adv/empty{ - pixel_x = 3; - pixel_y = 13 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) "sOe" = ( /obj/structure/filingcabinet{ density = 0; @@ -39860,12 +35758,11 @@ pixel_x = 8; pixel_y = 16 }, -/turf/open/floor/strata/white_cyan1/east, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo) "sOm" = ( -/obj/item/stack/sheet/metal/large_stack, -/obj/structure/closet/crate, -/turf/open/floor/prison/floor_marked/southwest, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe, /area/lv522/indoors/lone_buildings/storage_blocks) "sOA" = ( /obj/item/clothing/head/welding{ @@ -39884,6 +35781,9 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_west_street) "sOL" = ( +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 + }, /turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) "sOM" = ( @@ -39965,14 +35865,10 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/central_streets) "sPH" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "Corpo Vault"; - name = "Vault Lockdown" - }, -/obj/effect/landmark/lv624/fog_blocker/short, -/turf/open/floor/corsat/marked, -/area/lv522/oob/w_y_vault) +/obj/vehicle/train/cargo/engine, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_marked, +/area/lv522/indoors/lone_buildings/storage_blocks) "sPS" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/toolbox, @@ -39996,17 +35892,19 @@ /turf/open/floor/wood, /area/lv522/indoors/b_block/bar) "sQu" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/n_rockies) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/command_centre) "sQA" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_street) "sQD" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 }, -/turf/open/floor/plating/plating_catwalk/prison, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "sQI" = ( /obj/effect/decal/cleanable/generic, @@ -40020,12 +35918,6 @@ }, /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_street) -"sQN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) "sQQ" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random, @@ -40036,14 +35928,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2) -"sQS" = ( -/obj/item/prop/alien/hugger, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "sQT" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -40057,6 +35941,7 @@ req_one_access_txt = "100"; welded = 1 }, +/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "sQZ" = ( @@ -40075,15 +35960,9 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) "sRx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"sRA" = ( -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/prison/floor_marked, +/area/lv522/indoors/lone_buildings/storage_blocks) "sRI" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/auto_turf/shale/layer1, @@ -40122,15 +36001,18 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "sSn" = ( -/turf/open/asphalt/cement/cement9, -/area/lv522/outdoors/colony_streets/north_street) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "sSv" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) "sSG" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -40161,13 +36043,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) -"sTr" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "Reactor_garage_3" - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) "sTy" = ( /obj/structure/window_frame/strata, /obj/item/stack/rods, @@ -40224,10 +36099,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) -"sWn" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/atmos/cargo_intake) "sWr" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) @@ -40248,7 +36119,7 @@ /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "sWT" = ( /obj/item/shard{ @@ -40271,10 +36142,6 @@ /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) "sXM" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/random/powercell, -/obj/structure/machinery/cell_charger, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "sXQ" = ( @@ -40296,13 +36163,14 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) "sYh" = ( -/obj/structure/machinery/door/airlock/hatch/cockpit/three, +/obj/structure/machinery/door/airlock/hatch/cockpit/three{ + dir = 1 + }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "sYl" = ( -/obj/item/stack/sheet/metal, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/filt) "sYv" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -40319,9 +36187,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/casino) -"sZq" = ( -/turf/open/gm/river, -/area/lv522/atmos/filt) "sZs" = ( /obj/structure/machinery/disposal, /obj/structure/machinery/light{ @@ -40364,8 +36229,10 @@ /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_east_street) "taO" = ( -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/whiteyellowfull/east, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo/glass) "taP" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -40398,7 +36265,7 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "tby" = ( /obj/structure/bed/chair/comfy{ @@ -40420,19 +36287,6 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) -"tbK" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/oob/w_y_vault) "tcj" = ( /obj/structure/machinery/light, /turf/open/floor/shiva/radiator_tile2, @@ -40450,7 +36304,7 @@ /area/lv522/landing_zone_forecon/UD6_Tornado) "tcv" = ( /obj/item/prop/colony/used_flare, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_east_street) "tcz" = ( /turf/closed/shuttle/dropship3/tornado/typhoon{ @@ -40520,14 +36374,6 @@ icon_state = "47" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) -"tdM" = ( -/obj/structure/platform/stair_cut, -/obj/structure/stairs/perspective{ - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) "tdS" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -40583,9 +36429,10 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_east_street) "teE" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "teL" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -40621,34 +36468,29 @@ /obj/effect/landmark/railgun_camera_pos, /turf/open/floor/prison/floor_plate, /area/lv522/landing_zone_1/ceiling) -"tfK" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "tfO" = ( -/obj/item/prop/colony/usedbandage{ - dir = 9; - pixel_x = 5; - pixel_y = 15 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/white, +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "tfP" = ( -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) +/turf/open/floor/corsat/browncorner, +/area/lv522/atmos/west_reactor) "tfV" = ( /turf/closed/shuttle/dropship3/tornado/typhoon{ icon_state = "48" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) "tfW" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/reactor_garage) +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "tfZ" = ( -/obj/effect/spider/spiderling/nogrow, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/structure/largecrate/random/secure, +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "tgj" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/CICmap, @@ -40700,16 +36542,8 @@ /obj/structure/barricade/wooden{ dir = 1 }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/central_streets) -"thU" = ( -/obj/structure/prop/invuln/overhead_pipe{ - name = "overhead pipe"; - pixel_x = -20; - pixel_y = 13 - }, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/oob) +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/north_west_street) "til" = ( /obj/structure/bed/roller, /obj/effect/decal/cleanable/blood, @@ -40753,8 +36587,10 @@ /turf/open/gm/river, /area/lv522/indoors/a_block/kitchen/damage) "tjg" = ( -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random, +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "tjh" = ( /obj/structure/closet/firecloset/full, /turf/open/floor/prison/darkbrownfull2, @@ -40770,12 +36606,8 @@ "tjQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/space_heater/radiator/red, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) -"tjR" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) "tjV" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/prison, @@ -40787,6 +36619,9 @@ "tkm" = ( /obj/structure/curtain, /mob/living/simple_animal/mouse, +/obj/structure/platform_decoration{ + dir = 1 + }, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "tku" = ( @@ -40827,13 +36662,13 @@ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "tkN" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" }, -/turf/open/shuttle/dropship/can_surgery/light_grey_middle, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "tkW" = ( /obj/structure/surface/table/almayer, @@ -40853,16 +36688,15 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) "tlv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/plate, +/area/lv522/oob/w_y_vault) "tlz" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/structure/machinery/light/double, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "tlB" = ( /obj/structure/prop/invuln/overhead_pipe{ @@ -40885,11 +36719,11 @@ dir = 1 }, /obj/structure/machinery/light/double, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "tlZ" = ( /obj/structure/machinery/light/double, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "tmy" = ( /obj/structure/machinery/light{ @@ -40899,12 +36733,9 @@ /turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/b_block/bridge) "tmC" = ( -/obj/structure/platform{ - dir = 1 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/atmos/way_in_command_centre) "tmL" = ( /obj/structure/surface/table/almayer, /obj/item/device/walkman{ @@ -40918,12 +36749,15 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "tmX" = ( -/obj/structure/platform{ - dir = 1 +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 }, -/obj/item/stack/rods, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "tna" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ pixel_x = 30 @@ -40931,7 +36765,7 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "tne" = ( /obj/effect/decal/cleanable/dirt, @@ -40956,12 +36790,6 @@ }, /turf/open/floor/plating, /area/lv522/landing_zone_1) -"tnK" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) "tnL" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/prison/floor_plate, @@ -40971,12 +36799,8 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "tnN" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/floor/shiva/radiator_tile2, +/area/lv522/atmos/way_in_command_centre) "tnU" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -41024,15 +36848,15 @@ /area/lv522/landing_zone_forecon/UD6_Tornado) "toZ" = ( /obj/structure/surface/table/woodentable/fancy, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 3 +/obj/item/paper_bin/wy{ + pixel_y = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/item/falcon_drone{ - desc = "Some sort of fancy...toy? You're not sure.."; - pixel_x = -12 +/obj/item/tool/pen/clicky, +/obj/item/tool/pen/red/clicky{ + pixel_y = 6 }, -/turf/open/floor/whiteyellowfull/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo) "tpa" = ( /obj/structure/window/framed/strata/reinforced, @@ -41049,10 +36873,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) -"tpz" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) "tpD" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -41062,33 +36882,25 @@ "tpN" = ( /turf/open/floor/strata/white_cyan3/north, /area/lv522/indoors/a_block/medical/glass) -"tpV" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/way_in_command_centre) "tpZ" = ( /obj/structure/curtain/red, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "tqb" = ( /obj/structure/barricade/deployable, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_east_street) "tqh" = ( -/obj/structure/bed/chair/comfy{ +/obj/structure/platform_decoration{ dir = 1 }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "tqU" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness/glass) -"tra" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor) "trj" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -41127,10 +36939,15 @@ "trZ" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/indoors/lone_buildings/chunk) +"tsm" = ( +/obj/effect/landmark/lv624/fog_blocker/short, +/obj/effect/landmark/lv624/fog_blocker/short, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) "tso" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/cargo_intake) +/obj/structure/largecrate/random, +/turf/open/asphalt/cement/cement1, +/area/lv522/indoors/lone_buildings/engineering) "tsv" = ( /obj/structure/surface/table/almayer{ dir = 1; @@ -41191,14 +37008,18 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "ttf" = ( -/obj/effect/landmark/corpsespawner/forecon_spotter, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 }, -/obj/effect/spawner/gibspawner/human, -/obj/effect/decal/cleanable/blood, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) +/obj/structure/barricade/handrail{ + dir = 1 + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/engineering) "ttp" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, @@ -41319,7 +37140,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) "twq" = ( /obj/structure/platform_decoration, @@ -41347,16 +37168,6 @@ /mob/living/simple_animal/mouse, /turf/open/organic/grass, /area/lv522/indoors/a_block/garden) -"txo" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/south) -"txs" = ( -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/cargo_intake) "txK" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/dirt, @@ -41367,12 +37178,18 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms/glass) "tyb" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" +/obj/structure/machinery/door_control/brbutton{ + id = "map_corpo2"; + pixel_x = -6; + pixel_y = 26 }, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) +/obj/structure/machinery/door_control/brbutton{ + id = "map_corpo"; + pixel_x = 6; + pixel_y = 26 + }, +/turf/open/floor/plating, +/area/lv522/oob) "tyc" = ( /obj/structure/surface/rack, /obj/item/storage/bag/ore, @@ -41391,13 +37208,18 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_street) "tyl" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/structure/barricade/handrail{ dir = 8 }, -/obj/item/stack/sheet/metal/large_stack, -/obj/structure/closet/crate, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/structure/barricade/handrail{ + layer = 3.5 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/engineering) "typ" = ( /obj/item/storage/backpack/marine/engineerpack/satchel, /obj/effect/decal/cleanable/dirt, @@ -41416,12 +37238,15 @@ /turf/open/floor/wood, /area/lv522/indoors/a_block/fitness/glass) "tyU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "tzd" = ( /turf/closed/shuttle/elevator{ dir = 4 @@ -41474,7 +37299,7 @@ dir = 4; flipped = 1 }, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "tAn" = ( /obj/item/shard{ @@ -41509,13 +37334,6 @@ }, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) -"tBC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/barricade/wooden{ - dir = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/central_streets) "tBQ" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -41530,18 +37348,8 @@ /area/lv522/outdoors/colony_streets/central_streets) "tBS" = ( /obj/item/prop/alien/hugger, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) -"tCa" = ( -/obj/item/trash/uscm_mre{ - pixel_x = 10; - pixel_y = -2 - }, -/obj/item/trash/uscm_mre{ - pixel_y = 10 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) "tCg" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ dir = 1; @@ -41549,12 +37357,6 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/lone_buildings/engineering) -"tCh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) "tCq" = ( /obj/structure/machinery/portable_atmospherics/canister/empty/phoron{ density = 0; @@ -41596,16 +37398,18 @@ /turf/open/floor/prison/blue/east, /area/lv522/indoors/a_block/admin) "tDQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/briefcase{ - pixel_y = 6 +/obj/structure/platform{ + dir = 4 }, -/obj/item/storage/briefcase, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "tDR" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/north) +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/engineering) "tDS" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/a_block/admin) @@ -41630,32 +37434,24 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/lone_buildings/chunk) -"tEJ" = ( -/obj/structure/machinery/colony_floodlight{ - density = 0; - layer = 4.3; - pixel_y = 17 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/colony_streets/north_street) -"tEM" = ( -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) "tEQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "tEW" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "tEY" = ( +/turf/open/asphalt/cement/cement14, +/area/lv522/outdoors/colony_streets/central_streets) +"tFf" = ( /obj/structure/safe{ spawnkey = 0 }, @@ -41663,25 +37459,14 @@ /obj/item/clothing/head/helmet/marine/veteran/pmc, /obj/item/m_gift, /obj/item/coin/diamond, -/turf/open/floor/strata/white_cyan1/east, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo) -"tFf" = ( +"tFk" = ( /obj/structure/bed/chair/comfy/beige{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"tFk" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/folder/white{ - pixel_y = 8 - }, -/obj/item/folder/yellow{ - pixel_y = 4 - }, -/obj/item/folder/red, -/turf/open/floor/whiteyellowfull/east, +/turf/open/floor/prison, /area/lv522/indoors/a_block/corpo) "tFu" = ( /obj/structure/surface/rack, @@ -41734,12 +37519,13 @@ "tGy" = ( /obj/structure/bed/chair/comfy, /obj/item/stack/sheet/wood, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_west_street) "tGI" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, +/obj/structure/machinery/door/airlock/almayer/generic{ + name = "\improper Corporate Liaison Office " + }, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/corpo) "tGP" = ( /obj/structure/window/reinforced{ @@ -41769,19 +37555,18 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "tGY" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/bed/chair/comfy/beige, -/turf/open/floor/whiteyellowfull/east, +/turf/open/floor/prison, /area/lv522/indoors/a_block/corpo) "tHo" = ( /obj/structure/machinery/portable_atmospherics/canister/phoron, /turf/open/floor/corsat/squares, /area/lv522/indoors/c_block/mining) "tHC" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "tHJ" = ( /obj/structure/platform{ dir = 8 @@ -41807,12 +37592,19 @@ /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/east_central_street) "tIS" = ( -/obj/structure/barricade/handrail{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/stack/sheet/metal, -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = -7 + }, +/obj/item/device/multitool{ + pixel_x = 4; + pixel_y = -8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/engineering) "tIT" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -41826,13 +37618,22 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_2) "tJk" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 1; - icon_state = "flammable_pipe_3"; - pixel_x = -18 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 1 }, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/oob) +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 9 + }, +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "tJm" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -41859,16 +37660,31 @@ /obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "tJN" = ( /obj/structure/bed/chair, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "tKb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/telecomms/server{ + layer = 3.4; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/barricade/handrail{ + layer = 3.5 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/engineering) "tKe" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -41885,12 +37701,13 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "tKo" = ( -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - icon_state = "flammable_pipe_3"; - pixel_x = 17 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/oob) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/lone_buildings/engineering) "tKB" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -41913,13 +37730,10 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) "tKR" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) "tKS" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, @@ -41967,20 +37781,24 @@ /area/lv522/indoors/a_block/security) "tLJ" = ( /obj/structure/cargo_container/horizontal/blue/bottom, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_east_street) "tLL" = ( /obj/structure/curtain/medical, /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan3, /area/lv522/indoors/a_block/medical) -"tLQ" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) "tLX" = ( -/turf/open/floor/almayer/w_y0/north, -/area/lv522/oob/w_y_vault) +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/barricade/handrail, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/engineering) "tMk" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/bridges/dorms_fitness) @@ -42031,9 +37849,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"tMV" = ( -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) "tNc" = ( /obj/structure/prop/ice_colony/ground_wire, /turf/open/auto_turf/shale/layer1, @@ -42054,9 +37869,12 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) "tNS" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/prison, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "tOe" = ( /obj/structure/platform{ dir = 8 @@ -42078,8 +37896,14 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) "tOt" = ( -/turf/closed/wall/strata_outpost, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "tOv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -42094,11 +37918,13 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "tOM" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" }, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "tOV" = ( /obj/structure/cargo_container/watatsumi/leftmid, /turf/open/asphalt/cement/cement1, @@ -42163,12 +37989,9 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) "tQe" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper A-Block Corporate Office Airlock" - }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, +/obj/structure/window_frame/strata, +/obj/item/shard, +/turf/open/floor/plating, /area/lv522/indoors/a_block/corpo) "tQi" = ( /turf/open/floor/plating/plating_catwalk/prison, @@ -42178,9 +38001,8 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/lone_buildings/outdoor_bot) "tQw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) +/turf/open/asphalt/cement/cement12, +/area/lv522/indoors/lone_buildings/engineering) "tQF" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "Sec-Corpo-Bridge-Lockdown" @@ -42211,9 +38033,11 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "tRS" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/indoors/lone_buildings/engineering) "tSb" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -42257,6 +38081,7 @@ dir = 4; pixel_y = -5 }, +/obj/structure/largecrate/supply/supplies/metal, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "tTb" = ( @@ -42264,26 +38089,14 @@ /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "tTl" = ( -/obj/structure/prop/almayer/computers/sensor_computer3{ - layer = 2.9 - }, -/obj/structure/machinery/door_display/research_cell{ - id = "Reactor_entry_1"; - pixel_x = 5; - pixel_y = -7; - req_access = null - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/browncorner/west, +/area/lv522/atmos/cargo_intake) "tTr" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -13 }, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) -"tTv" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/atmos/way_in_command_centre) +/area/lv522/outdoors/nw_rockies) "tTD" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/east_central_street) @@ -42312,6 +38125,22 @@ }, /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_east_street) +"tUa" = ( +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/fence{ + layer = 2.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/nw_rockies) "tUe" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname, @@ -42343,10 +38172,6 @@ "tUM" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"tVa" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) "tVj" = ( /obj/structure/largecrate/random/barrel/white, /turf/open/floor/prison/floor_marked/southwest, @@ -42392,7 +38217,7 @@ /area/lv522/indoors/c_block/mining) "tWC" = ( /obj/structure/closet/firecloset/full, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "tWE" = ( /obj/structure/pipes/standard/manifold/hidden/green, @@ -42400,7 +38225,7 @@ /area/lv522/outdoors/colony_streets/north_east_street) "tWX" = ( /obj/item/storage/backpack, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) "tXa" = ( /obj/structure/surface/table/almayer, @@ -42422,7 +38247,7 @@ }, /obj/item/reagent_container/glass/rag, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "tXc" = ( /obj/structure/stairs/perspective{ @@ -42444,17 +38269,12 @@ layer = 2; name = "weak acid" }, -/turf/open/floor/plating/platingdmg1, +/turf/open/floor/platingdmg1, /area/lv522/indoors/a_block/admin) "tXg" = ( /obj/structure/barricade/wooden, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"tXp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/east_reactor/south) "tXG" = ( /obj/structure/bed/chair{ dir = 8 @@ -42520,9 +38340,11 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) "tZs" = ( -/obj/item/prop/alien/hugger, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/obj/structure/platform{ + dir = 1 + }, +/turf/open/asphalt/cement/cement12, +/area/lv522/indoors/lone_buildings/engineering) "tZF" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 @@ -42539,7 +38361,7 @@ pixel_y = 12 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "tZP" = ( /obj/item/prop/alien/hugger, @@ -42555,11 +38377,14 @@ "uad" = ( /obj/structure/closet/boxinggloves, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "uam" = ( -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo/glass) +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) "uar" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, @@ -42579,18 +38404,30 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms/glass) "uaY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/closed/wall/strata_outpost, -/area/lv522/outdoors/colony_streets/windbreaker/observation) +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating, +/area/lv522/indoors/lone_buildings/engineering) "ubd" = ( /obj/structure/closet/boxinggloves, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "ubv" = ( /obj/structure/target{ name = "punching bag" }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "ubw" = ( /obj/effect/decal/cleanable/dirt, @@ -42604,10 +38441,12 @@ /turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/fitness) "ubF" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison, -/area/lv522/atmos/sewer) +/turf/open/asphalt/cement/cement12, +/area/lv522/indoors/lone_buildings/engineering) "ubH" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -42615,9 +38454,11 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) "ubJ" = ( -/obj/structure/blocker/invisible_wall, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "uco" = ( /obj/structure/curtain/red, /turf/open/floor/prison/kitchen, @@ -42630,7 +38471,7 @@ dir = 4; pixel_y = -5 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "ucx" = ( /obj/effect/decal/cleanable/dirt, @@ -42645,26 +38486,10 @@ /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/kitchen) -"ucV" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/item/clothing/accessory/medal/gold{ - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/clothing/accessory/medal/gold{ - pixel_x = -6; - pixel_y = 7 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) "ucY" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/east_reactor/south) "udi" = ( /obj/structure/platform{ dir = 8 @@ -42672,13 +38497,9 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) "udv" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced, -/obj/item/reagent_container/food/drinks/golden_cup{ - pixel_y = 9 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) +/obj/effect/decal/cleanable/dirt, +/turf/open/asphalt/cement/cement12, +/area/lv522/indoors/lone_buildings/engineering) "udA" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 @@ -42686,56 +38507,30 @@ /turf/open/floor/plating, /area/lv522/landing_zone_2) "udK" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/structure/largecrate/random, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/central_streets) "udM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 }, -/turf/open/floor/plating/plating_catwalk/prison, +/turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) "udR" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/cargo_intake) -"udU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) -"uea" = ( -/obj/structure/surface/table/almayer, -/obj/structure/window/reinforced, -/obj/item/clothing/accessory/medal/bronze{ - pixel_x = -6; - pixel_y = 1 - }, -/obj/item/clothing/accessory/medal/bronze{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/west) "ueg" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/mining) "uep" = ( -/obj/structure/window/framed/strata/reinforced, +/obj/structure/reagent_dispensers/fueltank{ + layer = 2.9 + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/bridges/corpo_fitness) +/area/lv522/outdoors/colony_streets/north_street) "uet" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 @@ -42759,24 +38554,42 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/admin) "ueR" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/extinguisher, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/cable/heavyduty{ + icon_state = "1-4" }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/central_streets) "ueT" = ( -/obj/structure/bed/sofa/vert/white, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Reactor_entry_1" + }, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) "ueW" = ( -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/platform_decoration, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/central_streets) "ueX" = ( /obj/effect/decal{ icon = 'icons/mob/xenos/effects.dmi'; @@ -42801,6 +38614,7 @@ id = "LV_522_Hydro-Lockdown"; name = "\improper Storm Shutters" }, +/obj/effect/landmark/lv624/fog_blocker/short, /turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bridge) "ufs" = ( @@ -42814,17 +38628,20 @@ }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) -"ufA" = ( -/obj/structure/cargo_container/watatsumi/leftmid, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) "ufF" = ( -/obj/structure/bookcase{ - density = 0; - icon_state = "book-5" +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/platform, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/central_streets) "ufR" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 4 @@ -42845,20 +38662,34 @@ /turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/a_block/hallway) "ugi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/cable/heavyduty{ + icon_state = "0-8" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/cargo_intake) +/obj/structure/cable/heavyduty{ + icon_state = "1-2"; + pixel_y = -23 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/platform, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/central_streets) "ugn" = ( /obj/structure/prop/invuln/ice_prefab/roof_greeble{ icon_state = "vent2"; pixel_x = 4; pixel_y = 2 }, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_east_street) "ugo" = ( /obj/structure/stairs/perspective{ @@ -42866,27 +38697,11 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) -"ugu" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/cargo_intake) "ugG" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/tool, /turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2) -"ugN" = ( -/obj/item/storage/backpack/marine/satchel/scout_cloak, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) "ugR" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, @@ -42915,29 +38730,17 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "uhx" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/south) "uhF" = ( -/obj/structure/surface/table/woodentable/fancy, -/obj/item/weapon/pole/fancy_cane, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whiteyellowfull/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, /area/lv522/indoors/a_block/corpo) "uhP" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +/obj/structure/platform, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) "uhV" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -42977,9 +38780,15 @@ /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/hallway) "uii" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/whiteyellowfull/east, +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo) "uiu" = ( /obj/structure/surface/table/almayer, @@ -42988,18 +38797,26 @@ /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "uiK" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/colony_streets/central_streets) "uiM" = ( /turf/open/floor/prison, /area/lv522/landing_zone_1) "uiO" = ( /obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison, +/area/lv522/indoors/a_block/corpo) +"uiQ" = ( +/obj/structure/surface/table/reinforced/prison, /obj/item/folder/black_random, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, +/turf/open/floor/prison, /area/lv522/indoors/a_block/corpo) -"uiQ" = ( +"uiS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/lamp{ pixel_x = -7; @@ -43012,12 +38829,7 @@ pixel_y = 12 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"uiS" = ( -/obj/structure/window_frame/strata, -/obj/item/shard, -/turf/open/floor/plating, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo) "uja" = ( /obj/structure/prop/ice_colony/ground_wire{ @@ -43029,10 +38841,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"ujg" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/plating, -/area/lv522/atmos/east_reactor/south) "ujq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/prop/colony/canister{ @@ -43059,17 +38867,20 @@ pixel_x = 4; pixel_y = 3 }, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_east_street) "ukp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger, -/obj/effect/spawner/random/powercell, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 +/obj/item/shard{ + icon_state = "medium" }, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) +"uks" = ( +/obj/structure/platform/strata{ + dir = 1 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/oob) "ukt" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -43093,10 +38904,8 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/security/glass) "ukT" = ( -/obj/structure/closet/crate, -/obj/item/storage/pouch/pressurized_reagent_canister/revival_peri, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) +/turf/open/floor/prison/floor_marked, +/area/lv522/indoors/lone_buildings/engineering) "ulh" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "3" @@ -43134,8 +38943,11 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) "unt" = ( -/turf/closed/wall/mineral/bone_resin, -/area/lv522/atmos/north_command_centre) +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) "unC" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk/prison, @@ -43162,10 +38974,6 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) -"unU" = ( -/obj/structure/prop/dam/crane/damaged, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) "unX" = ( /obj/item/weapon/twohanded/folded_metal_chair, /obj/structure/pipes/standard/simple/hidden/green{ @@ -43192,15 +39000,11 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "uok" = ( -/obj/structure/prop/invuln{ - desc = "big pile energy."; - icon = 'icons/obj/structures/props/ice_colony/barrel_yard.dmi'; - icon_state = "pile_0"; - name = "barrel pile" +/obj/structure/barricade/deployable{ + dir = 1 }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/plating, -/area/lv522/indoors/c_block/cargo) +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor/south) "uol" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -43221,10 +39025,6 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bridge) -"upa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) "upc" = ( /obj/structure/machinery/suit_storage_unit{ pixel_x = -9 @@ -43295,9 +39095,15 @@ /turf/open/floor/plating, /area/lv522/indoors/a_block/admin) "uqt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut{ + icon_state = "platform_stair_alt" + }, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) "uqx" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -43331,12 +39137,9 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) "urp" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/largecrate/random, -/turf/open/asphalt/cement, -/area/lv522/outdoors/n_rockies) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/northeast, +/area/lv522/atmos/reactor_garage) "uru" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "66" @@ -43358,10 +39161,6 @@ "urY" = ( /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_street) -"usn" = ( -/obj/effect/landmark/static_comms/net_one, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/engineering) "usy" = ( /obj/structure/machinery/shower{ dir = 1 @@ -43395,8 +39194,10 @@ /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) "utd" = ( -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/corpo_fitness) +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/lv522/outdoors/colony_streets/north_street) "utm" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/head/hardhat/orange{ @@ -43411,10 +39212,19 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "utq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/item/stack/sheet/metal, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) +/obj/structure/catwalk/prison, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/central_streets) "utx" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/plastic{ @@ -43430,27 +39240,14 @@ }, /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) -"utH" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "utR" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/pen/blue, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/structure/platform/stair_cut, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) "uue" = ( /obj/structure/machinery/light, /obj/structure/machinery/disposal, @@ -43471,19 +39268,20 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) "uul" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/browncorner, -/area/lv522/atmos/east_reactor/south) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/brown, +/area/lv522/atmos/east_reactor) "uur" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) "uuA" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo) "uuB" = ( /obj/structure/bed/chair/comfy{ @@ -43502,17 +39300,18 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/hallway) "uuQ" = ( -/obj/item/shard, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) "uuW" = ( +/obj/item/shard, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/turf/open/floor/strata/white_cyan1/east, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo) "uvg" = ( /obj/effect/decal/warning_stripes{ @@ -43529,12 +39328,9 @@ /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "uvt" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/corsat/browncorner, +/area/lv522/oob/w_y_vault) "uvC" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/buritto, @@ -43545,9 +39341,26 @@ /turf/open/floor/strata/white_cyan3/east, /area/lv522/indoors/a_block/medical/glass) "uwb" = ( -/obj/structure/machinery/light/double, -/turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/catwalk/prison, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/central_streets) "uwe" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/plating, @@ -43558,10 +39371,9 @@ /area/lv522/indoors/a_block/fitness) "uwn" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo) "uwF" = ( /turf/closed/wall/strata_ice/dirty, @@ -43575,10 +39387,11 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) "uwY" = ( -/obj/item/stack/rods, -/obj/item/shard, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo) "uxb" = ( /obj/structure/surface/table/reinforced/prison, @@ -43591,18 +39404,24 @@ /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical/glass) "uxd" = ( -/obj/effect/spawner/gibspawner/xeno, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/nw_rockies) +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) "uxf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/cargo_intake) +/obj/structure/platform_decoration, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/central_streets) "uxi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/cargo_intake) +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/central_streets) "uxn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/cobweb, @@ -43666,13 +39485,27 @@ /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel/far) "uzD" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_x = 4; - pixel_y = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/cable/heavyduty{ + icon_state = "1-2"; + layer = 2.1 + }, +/obj/structure/catwalk/prison, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/central_streets) "uzI" = ( /turf/closed/wall/solaris/reinforced/hull/lv522, /area/space) @@ -43700,11 +39533,16 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) "uAd" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/north_command_centre) +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) "uAm" = ( -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/north_command_centre) "uAv" = ( /obj/structure/window_frame/strata, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -43762,11 +39600,11 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) "uCr" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/central_streets) "uDb" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/security) @@ -43776,11 +39614,11 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/security) "uDC" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/east) +/turf/open/auto_turf/shale/layer2, +/area/lv522/outdoors/colony_streets/central_streets) "uDP" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -43794,13 +39632,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/bridge) -"uEl" = ( -/obj/structure/machinery/conveyor{ - dir = 10; - id = "cargo_container" - }, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/cargo_intake) "uEr" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -43838,7 +39669,7 @@ /turf/open/floor/plating, /area/lv522/landing_zone_forecon/UD6_Typhoon) "uEC" = ( -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) "uEE" = ( /obj/structure/bed/chair/comfy, @@ -43879,9 +39710,11 @@ }, /area/lv522/landing_zone_forecon/UD6_Typhoon) "uFe" = ( -/obj/structure/bed/sofa/vert/white/bot, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/lv522/atmos/way_in_command_centre) "uFo" = ( /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, @@ -43889,7 +39722,7 @@ /obj/structure/barricade/deployable{ dir = 1 }, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "uFp" = ( /obj/structure/platform_decoration{ @@ -43902,13 +39735,10 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) "uFA" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -7; - pixel_y = 7 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/pipes/vents/pump, +/obj/vehicle/powerloader, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/reactor_garage) "uFB" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 10; @@ -43920,9 +39750,6 @@ /obj/vehicle/train/cargo/trolley, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) -"uFG" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/command_centre) "uFL" = ( /obj/effect/decal/cleanable/generic, /turf/open/floor/wood, @@ -43934,8 +39761,8 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "uFT" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/cargo_intake) "uGa" = ( /obj/effect/decal/cleanable/dirt, /obj/item/storage/pill_bottle/tramadol/skillless{ @@ -43951,20 +39778,62 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) "uGj" = ( -/obj/structure/barricade/deployable{ - dir = 1 +/obj/structure/machinery/door/poddoor/almayer{ + id = "Marked_1"; + indestructible = 1; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/structure/machinery/door/poddoor/almayer{ + id = "Marked_2"; + indestructible = 1; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer{ + id = "Marked_3"; + indestructible = 1; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer{ + id = "Marked_6"; + indestructible = 1; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1 + }, +/obj/structure/machinery/door/poddoor/almayer{ + id = "Marked_7"; + indestructible = 1; + layer = 3.3; + name = "\improper Secure Blast Door"; + unacidable = 1 + }, +/turf/open/floor/corsat/marked, +/area/lv522/oob/w_y_vault) "uGl" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "uGK" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) +/obj/structure/surface/table/almayer, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = -8; + pixel_y = -3 + }, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "uGO" = ( /obj/structure/coatrack{ pixel_x = 11; @@ -43996,11 +39865,8 @@ /turf/open/floor/prison/darkpurple2/east, /area/lv522/indoors/a_block/dorms) "uHn" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/north_command_centre) "uHq" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/medium, @@ -44044,14 +39910,20 @@ /area/lv522/landing_zone_2) "uIo" = ( /obj/structure/pipes/vents/pump, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) "uIr" = ( /obj/structure/barricade/wooden{ dir = 1 }, /turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/colony_streets/central_streets) +/area/lv522/outdoors/colony_streets/north_west_street) +"uIx" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "mining_shutter_2" + }, +/turf/open/floor/corsat/plate, +/area/lv522/indoors/c_block/mining) "uIB" = ( /obj/structure/sign/nosmoking_2{ pixel_y = 28 @@ -44078,11 +39950,8 @@ /area/lv522/indoors/a_block/fitness/glass) "uIO" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) -"uIW" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/west_reactor) "uIY" = ( /obj/structure/platform_decoration, /turf/open/floor/plating, @@ -44099,7 +39968,7 @@ /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "uJl" = ( /obj/structure/filingcabinet{ @@ -44148,11 +40017,21 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/bridges/op_centre) "uKD" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/central_streets) "uKE" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 5 @@ -44185,23 +40064,29 @@ /turf/open/asphalt/cement, /area/lv522/landing_zone_1) "uLk" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/cargo_intake) +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + icon_state = "flammable_pipe_3"; + pixel_x = 17 + }, +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/oob) "uLp" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/bridges/corpo_fitness) +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) +"uLv" = ( +/turf/open/gm/river, +/area/lv522/indoors/c_block/mining) "uLw" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/platform{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/corpo_fitness) +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) "uLz" = ( /obj/effect/landmark/hunter_secondary, /obj/structure/machinery/landinglight/ds1{ @@ -44260,8 +40145,11 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges) "uMP" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/east) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 9 + }, +/turf/open/auto_turf/sand_white/layer0, +/area/lv522/outdoors/colony_streets/central_streets) "uMV" = ( /obj/structure/machinery/light, /obj/effect/decal/cleanable/dirt, @@ -44279,12 +40167,6 @@ "uNp" = ( /turf/open/floor/carpet, /area/lv522/indoors/c_block/casino) -"uNt" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/corpo_fitness) "uNu" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 9 @@ -44360,24 +40242,22 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/b_block/hydro) "uOL" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 + dir = 5 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/bridges/corpo_fitness) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "uOP" = ( /obj/effect/decal/cleanable/blood/xeno, /turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/north_street) -"uPc" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/west_reactor) "uPk" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "uPn" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/dirt, @@ -44388,12 +40268,18 @@ /turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1/ceiling) "uPv" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ - pixel_y = 3 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating, +/area/lv522/outdoors/colony_streets/central_streets) "uPy" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -44409,7 +40295,6 @@ /area/lv522/indoors/c_block/t_comm) "uPS" = ( /obj/structure/surface/table/almayer, -/obj/item/paper/janitor, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/mining) "uQf" = ( @@ -44422,16 +40307,14 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) "uQg" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/platform{ + dir = 8 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) -"uQi" = ( -/obj/item/clothing/suit/storage/marine/medium/smooth, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/obj/structure/prop/almayer/computers/sensor_computer2{ + layer = 2.0 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "uQn" = ( /obj/structure/platform{ dir = 1 @@ -44461,34 +40344,22 @@ /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "uQF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) -"uQI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "uRb" = ( /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/north_east_street) "uRt" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/manifold/hidden/green, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "uRx" = ( /obj/item/reagent_container/glass/rag, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) "uRB" = ( /obj/structure/bed{ @@ -44516,7 +40387,7 @@ icon_state = "S" }, /turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_street) +/area/lv522/outdoors/colony_streets/north_east_street) "uRR" = ( /obj/structure/platform{ dir = 4 @@ -44527,20 +40398,8 @@ /turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/north_west_street) "uSo" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_west_street) -"uSv" = ( -/obj/effect/acid_hole, -/turf/closed/wall/strata_outpost, -/area/lv522/indoors/a_block/corpo) +/turf/open/asphalt/cement, +/area/lv522/outdoors/nw_rockies) "uSw" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/objective_landmark/close, @@ -44558,11 +40417,16 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) "uSY" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/stair_cut/alt, +/turf/open/floor/prison, +/area/lv522/indoors/c_block/cargo) "uSZ" = ( /obj/item/toy/beach_ball/holoball{ pixel_x = 7; @@ -44585,17 +40449,14 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"uTj" = ( -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/north_command_centre) "uTv" = ( -/obj/structure/window_frame/strata, -/turf/open/floor/plating, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper A-Block Corporate Office Airlock" + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/corpo) -"uTy" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) "uTI" = ( /obj/structure/machinery/light{ dir = 8 @@ -44616,7 +40477,7 @@ pixel_y = 16 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, +/turf/open/floor/strata/white_cyan2, /area/lv522/indoors/a_block/executive) "uTV" = ( /obj/structure/surface/table/almayer, @@ -44662,11 +40523,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms/glass) -"uVa" = ( -/obj/effect/landmark/monkey_spawn, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) "uVj" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, @@ -44722,7 +40578,7 @@ /obj/structure/bed/chair/comfy{ dir = 1 }, -/turf/open/floor/strata/white_cyan1/east, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo/glass) "uWx" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -44789,7 +40645,7 @@ pixel_y = 5 }, /obj/item/toy/plush/farwa, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness/glass) "uYi" = ( /obj/effect/decal/cleanable/blood, @@ -44809,10 +40665,6 @@ /obj/structure/machinery/floodlight/landing, /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1) -"uZf" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown/southeast, -/area/lv522/atmos/west_reactor) "uZC" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ @@ -44827,15 +40679,18 @@ "uZO" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "uZV" = ( -/turf/open/floor/prison/cell_stripe/west, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "vae" = ( /obj/item/prop/colony/used_flare, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "val" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/woodentable/fancy, @@ -44849,7 +40704,7 @@ /obj/effect/decal/cleanable/dirt, /obj/item/stack/rods, /obj/item/stack/sheet/metal, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "vaA" = ( /obj/structure/surface/table/almayer, @@ -44868,21 +40723,11 @@ pixel_x = -10; pixel_y = 25 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) -"vbm" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/item/clothing/mask/facehugger{ - desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; - icon_state = "facehugger_impregnated"; - layer = 3; - name = "????"; - stat = 2 - }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/central_streets) "vbu" = ( /turf/open/floor/prison, /area/lv522/landing_zone_1/ceiling) @@ -44940,15 +40785,10 @@ /turf/closed/shuttle/dropship3/tornado/typhoon, /area/lv522/landing_zone_forecon/UD6_Typhoon) "vcF" = ( -/obj/structure/stairs/perspective{ - dir = 5; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/effect/decal/cleanable/blood/oil, +/obj/item/tool/weldingtool, +/turf/open/floor/plating, +/area/lv522/indoors/lone_buildings/engineering) "vcH" = ( /obj/structure/barricade/wooden, /obj/effect/decal/cleanable/dirt, @@ -44963,16 +40803,6 @@ /obj/structure/largecrate/random/mini/med, /turf/open/floor/prison, /area/lv522/landing_zone_2/ceiling) -"vda" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) "vdf" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 10 @@ -45084,6 +40914,14 @@ icon_state = "2" }, /area/lv522/landing_zone_forecon/UD6_Typhoon) +"vfq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "mining_shutter_1" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "vfC" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -45154,36 +40992,32 @@ /turf/open/floor/plating, /area/lv522/indoors/a_block/admin) "vgI" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/indoors/a_block/bridges/corpo_fitness) +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) "vgM" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "vhd" = ( /obj/structure/platform_decoration{ dir = 8 }, /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) -"vhr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/area/lv522/outdoors/nw_rockies) "vht" = ( /obj/structure/closet/emcloset, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness/glass) "vhA" = ( -/obj/item/prop/colony/used_flare, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/browncorner/north, +/area/lv522/oob/w_y_vault) "vhC" = ( /turf/closed/shuttle/dropship3/tornado/typhoon{ icon_state = "4" @@ -45200,11 +41034,12 @@ }, /area/lv522/landing_zone_forecon/UD6_Typhoon) "vir" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/machinery/power/reactor/colony, +/obj/structure/machinery/camera/autoname, +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/prison/darkyellowfull2/east, +/turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) "viA" = ( /obj/item/lightstick/red/spoke/planted{ @@ -45215,7 +41050,7 @@ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "viC" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -45233,30 +41068,24 @@ /turf/open/floor/strata/cyan2/east, /area/lv522/indoors/a_block/medical) "viE" = ( -/obj/structure/platform/strata{ - dir = 1 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) +/obj/structure/machinery/power/terminal, +/turf/open/floor/plating, +/area/lv522/indoors/lone_buildings/engineering) "viG" = ( /obj/effect/decal/cleanable/cobweb, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/east_central_street) "viH" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Generator Room"; + welded = 1 }, -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/east_reactor/south) -"viI" = ( -/obj/structure/pipes/vents/pump, -/obj/vehicle/powerloader, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/corsat/marked, +/area/lv522/indoors/lone_buildings/engineering) "viN" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "viR" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/light{ @@ -45264,9 +41093,6 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) -"vjl" = ( -/turf/closed/wall/mineral/bone_resin, -/area/lv522/atmos/east_reactor/south) "vjn" = ( /obj/structure/surface/rack, /turf/open/floor/prison/darkbrownfull2, @@ -45277,10 +41103,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"vju" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/reactor_garage) "vjv" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "69" @@ -45336,8 +41158,11 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) "vjW" = ( -/turf/open/auto_turf/shale/layer2, -/area/lv522/outdoors/n_rockies) +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "vkj" = ( /obj/structure/bed/bedroll{ dir = 5 @@ -45348,25 +41173,17 @@ /area/lv522/indoors/a_block/admin) "vkC" = ( /obj/effect/decal/cleanable/cobweb, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/fitness) "vkD" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/generic, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"vkG" = ( -/obj/structure/window/reinforced, -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/indoors/a_block/fitness) "vlp" = ( /obj/item/pipe, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"vlq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) "vlv" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/radio/off{ @@ -45377,15 +41194,34 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) "vlN" = ( -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/bridges/corpo_fitness) +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_street) "vlT" = ( /turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/east_central_street) "vlX" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/bridges/corpo_fitness) +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 16 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 16 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "vmg" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/structure/barricade/wooden{ @@ -45397,7 +41233,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "vmG" = ( /obj/structure/surface/table/gamblingtable, @@ -45426,22 +41262,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"vne" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/floor3/east, -/area/lv522/outdoors/colony_streets/north_west_street) -"vni" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/bridges/corpo_fitness) "vnp" = ( /obj/structure/curtain/medical, /turf/open/floor/strata/white_cyan3/west, @@ -45453,9 +41273,9 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/bridges/op_centre) "vnX" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) "voi" = ( /obj/effect/decal/cleanable/blood, /obj/structure/bed/chair{ @@ -45501,22 +41321,13 @@ }, /turf/open/asphalt/cement/cement2, /area/lv522/outdoors/colony_streets/central_streets) -"voX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/prop/alien/hugger, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "vpa" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 +/obj/item/ammo_magazine/smg/nailgun{ + current_rounds = 0 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_street) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/engineering) "vpe" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -45528,59 +41339,40 @@ /obj/structure/flora/bush{ pixel_y = 9 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "vpk" = ( +/obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) +/area/lv522/atmos/way_in_command_centre) "vpp" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/plating, /area/lv522/landing_zone_2/ceiling) "vpq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) +"vpB" = ( +/obj/effect/landmark/objective_landmark/far, +/obj/structure/surface/table/almayer, /turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) -"vpB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 1; - pixel_y = 26 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) "vpD" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/garage) "vpO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/prison/floor_plate, +/area/lv522/indoors/a_block/corpo/glass) "vpU" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "70" }, /area/lv522/landing_zone_forecon/UD6_Tornado) "vqe" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 16 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 16 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/oob/w_y_vault) +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/atmos/east_reactor/south) "vqk" = ( /obj/vehicle/train/cargo/trolley, /obj/structure/machinery/light, @@ -45611,7 +41403,7 @@ /obj/structure/machinery/light{ dir = 1 }, -/turf/open/floor/strata/white_cyan1/east, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo/glass) "vqW" = ( /obj/structure/barricade/wooden, @@ -45625,7 +41417,7 @@ /area/lv522/indoors/a_block/dorms/glass) "vrd" = ( /obj/item/prop/colony/used_flare, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/outdoors/colony_streets/north_east_street) "vrf" = ( /obj/structure/machinery/light{ @@ -45639,22 +41431,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) -"vrE" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/mineral/gold{ - amount = 60; - pixel_y = 6 - }, -/obj/item/stack/sheet/mineral/gold{ - amount = 60; - pixel_y = 12 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/oob/w_y_vault) -"vrV" = ( -/obj/structure/window/framed/corsat/hull, -/turf/open/floor/corsat/marked, -/area/lv522/oob) "vrW" = ( /obj/structure/stairs/perspective{ dir = 6; @@ -45673,22 +41449,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/kitchen, /area/lv522/indoors/a_block/kitchen) -"vsh" = ( -/obj/structure/fence{ - layer = 2.9 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/south_west_street) "vsj" = ( -/obj/structure/reagent_dispensers/fueltank/gas, -/obj/item/tool/weldpack{ - layer = 3.1; - pixel_x = -5; - pixel_y = 13 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 6 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/engineering) "vsk" = ( /obj/structure/coatrack{ pixel_x = -6; @@ -45709,20 +41475,14 @@ /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/south_east_street) "vsy" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/structure/machinery/fuelcell_recycler/full, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) "vsG" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "vsI" = ( /obj/structure/surface/rack, @@ -45733,15 +41493,8 @@ }, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) -"vsZ" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "vtc" = ( -/turf/open/auto_turf/shale/layer1, +/turf/closed/wall/strata_outpost/reinforced, /area/lv522/outdoors/nw_rockies) "vtl" = ( /obj/structure/machinery/power/apc/power/north{ @@ -45754,7 +41507,7 @@ pixel_y = 16 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan2/west, +/turf/open/floor/strata/white_cyan2, /area/lv522/indoors/a_block/executive) "vtA" = ( /obj/structure/surface/table/almayer, @@ -45797,12 +41550,6 @@ /obj/structure/largecrate, /turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1/ceiling) -"vuS" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 - }, -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) "vuY" = ( /obj/item/clothing/mask/facehugger{ desc = "It has some sort of a tube at the end of its tail. What the hell is this thing?"; @@ -45841,7 +41588,7 @@ "vwQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/firecloset/full, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "vxa" = ( /obj/structure/closet/crate, @@ -45858,7 +41605,7 @@ /area/lv522/indoors/c_block/mining) "vxe" = ( /obj/item/prop/colony/used_flare, -/turf/open/floor/prison/blue/southwest, +/turf/open/floor/prison/blue, /area/lv522/indoors/a_block/admin) "vxf" = ( /obj/item/pipe{ @@ -45871,23 +41618,20 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_east_street) "vxq" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/engineering) "vxv" = ( /obj/structure/surface/table/woodentable/fancy, /obj/effect/landmark/objective_landmark/close, /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) "vxD" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/prison/cell_stripe, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/cargo_intake) "vxG" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -45928,12 +41672,12 @@ /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical) "vzd" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/nailgun/empty{ + pixel_y = 5 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/engineering) "vzg" = ( /obj/item/stack/rods{ pixel_y = -2 @@ -45947,7 +41691,7 @@ pixel_x = 13; pixel_y = 25 }, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "vzn" = ( /obj/item/clothing/shoes/jackboots{ @@ -46008,28 +41752,18 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan4/west, /area/lv522/indoors/a_block/medical) -"vAi" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/west_reactor) "vAn" = ( /obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) -"vAu" = ( -/obj/item/fuel_cell{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor) "vAW" = ( /turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_1/ceiling) "vAX" = ( -/obj/structure/bed/chair/comfy, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 10 + }, +/turf/open/floor/corsat/brown/southwest, /area/lv522/atmos/east_reactor/south) "vBa" = ( /obj/structure/girder/displaced, @@ -46073,12 +41807,8 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) "vBI" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/way_in_command_centre) "vBK" = ( /obj/structure/platform_decoration{ dir = 4 @@ -46091,10 +41821,14 @@ /turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/north_street) "vBM" = ( -/obj/structure/barricade/handrail{ +/obj/structure/closet/crate, +/obj/item/tank/emergency_oxygen/double, +/obj/item/tank/emergency_oxygen/double, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ dir = 8 }, -/turf/open/floor/prison/cell_stripe/west, +/turf/open/floor/prison/floor_marked, /area/lv522/indoors/lone_buildings/storage_blocks) "vBN" = ( /obj/structure/bed/chair, @@ -46175,12 +41909,10 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) "vDw" = ( -/obj/item/ammo_magazine/rifle/heap{ - current_rounds = 0 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/metal, -/turf/open/floor/corsat, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "vDL" = ( /obj/structure/prop/ice_colony/dense/planter_box{ @@ -46205,11 +41937,15 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/admin) "vDV" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/nailgun/empty{ + pixel_x = -6; + pixel_y = 12 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) +/obj/item/clothing/head/beret/eng, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/lone_buildings/engineering) "vEf" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 8 @@ -46217,18 +41953,13 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) "vEw" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -9; - pixel_y = 20 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 7; - pixel_y = 20 +/obj/structure/pipes/standard/simple/hidden/green, +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/east) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/indoors/lone_buildings/engineering) "vEB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/bed/roller, @@ -46256,17 +41987,6 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) -"vFD" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform, -/obj/structure/platform_decoration{ - dir = 10; - layer = 3.51 - }, -/turf/open/gm/river, -/area/lv522/atmos/sewer) "vFH" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/item/lightstick/red/spoke/planted{ @@ -46288,11 +42008,7 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) "vGb" = ( -/obj/structure/machinery/colony_floodlight{ - density = 0; - layer = 4.3; - pixel_y = 17 - }, +/obj/structure/machinery/colony_floodlight, /obj/structure/platform{ dir = 8 }, @@ -46321,7 +42037,8 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) "vGP" = ( -/turf/open/floor/prison/floor_marked/southwest, +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) "vHd" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -46333,11 +42050,9 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_street) "vHo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/darkyellowfull2/east, +/obj/structure/machinery/power/terminal, +/obj/item/clothing/head/welding, +/turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) "vHw" = ( /obj/structure/barricade/wooden{ @@ -46359,7 +42074,7 @@ pixel_x = -8; pixel_y = 8 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "vHG" = ( /obj/effect/decal/cleanable/dirt, @@ -46407,7 +42122,7 @@ "vIb" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/gloves/boxing, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "vId" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -46420,7 +42135,7 @@ /obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "vIg" = ( /obj/structure/machinery/door/airlock/almayer/generic{ @@ -46431,20 +42146,17 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/dorms) "vIy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) "vIS" = ( -/turf/open/floor/corsat/brown/west, -/area/lv522/atmos/east_reactor/south) -"vIU" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/west) "vJb" = ( -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/fitness) "vJj" = ( /obj/structure/machinery/landinglight/ds1{ @@ -46468,17 +42180,9 @@ /turf/open/floor/plating, /area/lv522/landing_zone_2) "vJu" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/boxing, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) -"vJw" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/sewer) +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/engineering) "vJD" = ( /obj/structure/window/framed/strata/reinforced, /obj/structure/curtain/red, @@ -46511,10 +42215,9 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "vKF" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) +/obj/structure/closet/secure_closet/atmos_personal, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) "vKJ" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ name = "\improper Marshal Office Armory" @@ -46537,15 +42240,11 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "vKP" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) -"vKR" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 + dir = 9 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/north_west_street) +/turf/open/floor/prison, +/area/lv522/indoors/lone_buildings/engineering) "vLf" = ( /obj/structure/surface/table/almayer, /obj/item/tool/kitchen/tray{ @@ -46558,10 +42257,11 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "vLu" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/gloves/boxing/yellow, -/turf/open/floor/prison/greenfull/east, -/area/lv522/indoors/a_block/fitness) +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/north_street) "vLA" = ( /obj/structure/pipes/standard/manifold/visible{ dir = 1 @@ -46624,9 +42324,11 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) "vMM" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 + }, +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) "vMX" = ( /obj/structure/surface/rack, /obj/structure/machinery/light, @@ -46645,18 +42347,13 @@ "vNk" = ( /turf/closed/wall/strata_outpost, /area/lv522/indoors/c_block/casino) -"vNr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor) "vNy" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/bed/roller, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "vNO" = ( /obj/structure/barricade/wooden{ dir = 4 @@ -46687,11 +42384,13 @@ /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/indoors/lone_buildings/storage_blocks) "vOj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "vOt" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -46699,27 +42398,17 @@ /turf/open/asphalt/cement/cement4, /area/lv522/outdoors/colony_streets/south_street) "vOA" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) -"vOP" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1; + pixel_y = -1 }, -/obj/item/prop/alien/hugger, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/command_centre) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "vOT" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/c_block/bridge) -"vOY" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) "vOZ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 6 @@ -46733,13 +42422,6 @@ }, /turf/open/floor/corsat/marked, /area/lv522/landing_zone_2/ceiling) -"vPk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/nw_rockies) "vPl" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -46772,15 +42454,11 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "vQn" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/brown, +/obj/structure/largecrate/random/case, +/turf/open/floor/corsat/brown/northeast, /area/lv522/atmos/east_reactor) "vQL" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/whiteyellowfull/east, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/corpo/glass) "vQO" = ( /obj/structure/machinery/light{ @@ -46805,7 +42483,7 @@ /obj/structure/barricade/handrail{ dir = 4 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "vRh" = ( /obj/structure/surface/table/almayer, @@ -46823,7 +42501,7 @@ "vRv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate/random/mini/wooden, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "vRQ" = ( /obj/structure/surface/table/almayer, @@ -46850,11 +42528,6 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/c_block/mining) -"vSJ" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/north_command_centre) "vSM" = ( /obj/structure/tunnel, /turf/open/auto_turf/shale/layer1, @@ -46869,10 +42542,7 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/central_streets) "vSO" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 - }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "vSU" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -46905,11 +42575,9 @@ /turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/north_east_street) "vTK" = ( -/obj/structure/prop/vehicles{ - icon_state = "van_damaged" - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/reactor_garage) +/obj/structure/surface/table/almayer, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "vTO" = ( /obj/structure/machinery/landinglight/ds1{ dir = 1 @@ -46973,7 +42641,7 @@ dir = 8 }, /obj/item/stack/sheet/metal, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "vUX" = ( /obj/structure/powerloader_wreckage/ft, @@ -47014,10 +42682,11 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/b_block/bar) "vVx" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, /turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) +/area/lv522/atmos/east_reactor/south) "vVS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -47049,7 +42718,7 @@ dir = 4 }, /turf/open/asphalt/cement/cement4, -/area/lv522/outdoors/colony_streets/north_west_street) +/area/lv522/outdoors/nw_rockies) "vWI" = ( /obj/structure/largecrate/random, /turf/open/floor/prison, @@ -47161,9 +42830,8 @@ /turf/open/floor/prison/blue/west, /area/lv522/indoors/a_block/admin) "vZP" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) +/turf/closed/wall/strata_outpost, +/area/lv522/atmos/command_centre) "vZS" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -47216,37 +42884,21 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/admin) "wbi" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - id = "West LZ Storage"; - name = "Emergency Lockdown" - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/darkyellowfull2/east, +/area/lv522/indoors/lone_buildings/engineering) "wbj" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - density = 0; - pixel_x = 13; - pixel_y = 11 - }, -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - density = 0; - pixel_x = -13; - pixel_y = 11 - }, -/turf/open/floor/prison, +/obj/structure/machinery/recharge_station, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/engineering) "wbo" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) "wbt" = ( -/obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "wbC" = ( /obj/structure/filingcabinet{ density = 0; @@ -47267,15 +42919,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/garage) -"wbL" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - dir = 1; - name = "\improper Workshop Storage"; - req_access_txt = "100"; - req_one_access = null - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) "wbP" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/light/small{ @@ -47285,50 +42928,53 @@ }, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/lone_buildings/chunk) -"wbR" = ( -/turf/open/floor/plating, -/area/lv522/atmos/filt) "wbX" = ( /obj/structure/curtain/medical, /obj/effect/decal/cleanable/dirt, /turf/open/floor/strata/white_cyan3/west, /area/lv522/indoors/a_block/medical/glass) "wcp" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 5 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/floor/almayer/w_y0, +/area/lv522/atmos/way_in_command_centre) "wcq" = ( -/obj/structure/machinery/light{ +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo/glass) +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "wcM" = ( /obj/structure/largecrate/random/secure, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/mining) "wcO" = ( -/obj/structure/machinery/light{ +/obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper A-Block Corporate Office Airlock" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/way_in_command_centre) "wcR" = ( /obj/item/tool/crowbar, /turf/open/asphalt/cement/cement15, /area/lv522/outdoors/colony_streets/north_west_street) "wcT" = ( -/obj/item/storage/firstaid/toxin/empty, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 + }, +/obj/structure/platform_decoration, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo/glass) "wcX" = ( /obj/structure/pipes/standard/simple/hidden/green, @@ -47354,6 +43000,7 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/security/glass) "wdj" = ( +/obj/item/prop/alien/hugger, /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) "wdy" = ( @@ -47369,14 +43016,10 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/landing_zone_1) -"wea" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) "wee" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo/glass) "weh" = ( /obj/structure/closet/secure_closet/freezer/fridge/full, @@ -47488,8 +43131,8 @@ /area/lv522/outdoors/colony_streets/central_streets) "wfK" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/plating/plating_catwalk/prison, +/area/lv522/atmos/way_in_command_centre) "wfP" = ( /turf/open/floor/plating, /area/lv522/landing_zone_1/tunnel) @@ -47505,14 +43148,21 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "wgn" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison, -/area/lv522/outdoors/n_rockies) +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "wgH" = ( /obj/structure/largecrate/random, /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) +"wgP" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "mining_shutter_1" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "wgR" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/prison, @@ -47578,10 +43228,6 @@ /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/prison/darkbrownfull2, /area/lv522/landing_zone_2) -"whK" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) "whR" = ( /obj/item/newspaper, /obj/effect/decal/cleanable/dirt, @@ -47641,12 +43287,8 @@ /turf/open/floor/carpet, /area/lv522/indoors/c_block/casino) "wjy" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/west) "wjE" = ( /obj/structure/platform_decoration{ dir = 8 @@ -47671,12 +43313,9 @@ /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) "wjP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/oob/w_y_vault) +/obj/structure/machinery/colony_floodlight, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) "wke" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -47711,9 +43350,20 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/cargo) "wky" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 3; + pixel_y = -1 + }, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform, +/obj/structure/platform_decoration{ + dir = 6 + }, +/turf/open/asphalt/cement, +/area/lv522/indoors/lone_buildings/engineering) "wkC" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -47753,7 +43403,7 @@ "wms" = ( /obj/structure/cargo_container/wy/left, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "wmI" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -47769,7 +43419,7 @@ "wnu" = ( /obj/structure/cargo_container/wy/right, /turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "wny" = ( /obj/structure/window_frame/strata, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -47806,9 +43456,11 @@ /turf/open/floor/plating, /area/lv522/indoors/c_block/cargo) "wov" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/closed/wall/solaris/reinforced/hull/lv522, -/area/lv522/oob) +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/cargo) "woy" = ( /obj/structure/largecrate/random{ pixel_x = 5 @@ -47828,19 +43480,9 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"woG" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/filt) -"woR" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/gm/river, -/area/lv522/atmos/filt) "woU" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) +/turf/open/floor/corsat/brown/northwest, +/area/lv522/atmos/east_reactor/south) "wpa" = ( /obj/structure/prop/server_equipment{ icon_state = "rackframe_broken" @@ -47876,7 +43518,7 @@ /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "wpF" = ( /turf/open/floor/corsat/squares, @@ -47910,12 +43552,6 @@ /obj/structure/machinery/vending/hydroseeds, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) -"wrc" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/reactor_garage) "wrg" = ( /obj/structure/coatrack{ pixel_x = 10; @@ -47931,6 +43567,13 @@ }, /turf/open/floor/strata/white_cyan1, /area/lv522/indoors/lone_buildings/chunk) +"wrp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "mining_shutter_1" + }, +/turf/open/floor/corsat/marked, +/area/lv522/indoors/c_block/mining) "wrz" = ( /obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 @@ -47996,10 +43639,6 @@ }, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) -"wtH" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) "wtI" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -48044,8 +43683,12 @@ /turf/open/floor/carpet, /area/lv522/indoors/c_block/casino) "wuY" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/plating, +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin/wy{ + pixel_y = 8 + }, +/obj/item/tool/pen/clicky, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo) "wvd" = ( /obj/structure/prop/dam/crane/damaged, @@ -48060,21 +43703,25 @@ /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/outdoor_bot) "wvB" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "wvO" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"wvV" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) +"wvP" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -10; + pixel_y = -2 + }, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_west_street) "wvX" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ name = "\improper A-Block Shared Dorms Airlock" @@ -48096,45 +43743,16 @@ /obj/structure/pipes/standard/manifold/fourway/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/dorms) -"wwi" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/west) -"wwn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/shovel/etool/folded, -/obj/item/tool/soap/deluxe{ - pixel_x = 4; - pixel_y = 13 - }, -/obj/effect/landmark/objective_landmark/science, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) "wwy" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "map_corpo"; - indestructible = 1; - name = "Emergency Blast Door"; - unacidable = 1; - use_power = 0 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - id = "map_corpo2"; - indestructible = 1; - name = "Emergency Blast Door"; - unacidable = 1; - use_power = 0 - }, -/turf/open/floor/corsat/marked, -/area/lv522/oob) -"wwG" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/emergency, -/turf/open/floor/plating/plating_catwalk/prison, +/obj/structure/bed/chair/comfy, +/turf/open/floor/prison/floor_plate, /area/lv522/atmos/way_in_command_centre) +"wwG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor/south) "wwJ" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -48142,11 +43760,7 @@ /turf/open/asphalt/cement/cement3, /area/lv522/outdoors/colony_streets/central_streets) "wwM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/space_heater/radiator/red{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, +/turf/open/floor/prison, /area/lv522/indoors/a_block/corpo/glass) "wwO" = ( /obj/effect/decal/cleanable/dirt, @@ -48209,23 +43823,14 @@ /obj/item/ammo_magazine/rifle/boltaction, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/c_block/t_comm) -"wyv" = ( -/turf/open/floor/corsat/brown/southwest, -/area/lv522/atmos/command_centre) "wyy" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/northwest, /area/lv522/indoors/b_block/hydro) "wyA" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/item/weapon/gun/rifle/m41a{ - current_mag = null - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/browncorner/east, +/area/lv522/atmos/east_reactor) "wyE" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/medium, @@ -48301,22 +43906,15 @@ }, /area/lv522/landing_zone_forecon/UD6_Tornado) "wAB" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) -"wAE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/cargo_intake) "wAM" = ( /obj/structure/cargo_container/horizontal/blue/middle, /obj/structure/largecrate/supply/floodlights{ layer = 3.1; pixel_y = 9 }, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_east_street) "wBp" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -48334,22 +43932,9 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"wBG" = ( -/obj/structure/shuttle/engine/heater{ - dir = 8; - pixel_x = -4 - }, -/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ - dir = 8; - icon_state = "flammable_pipe_3"; - pixel_x = -3 - }, -/turf/closed/wall/mineral/bone_resin, -/area/lv522/atmos/west_reactor) "wBR" = ( -/obj/structure/powerloader_wreckage, /turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) +/area/lv522/atmos/cargo_intake) "wCr" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "64" @@ -48370,7 +43955,7 @@ density = 0; pixel_y = 16 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "wCC" = ( /turf/open/asphalt/cement/cement15, @@ -48381,7 +43966,7 @@ /area/lv522/indoors/b_block/bar) "wCM" = ( /obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 + dir = 4 }, /obj/structure/bed/bedroll{ dir = 1 @@ -48419,9 +44004,6 @@ "wDa" = ( /turf/open/floor/prison, /area/lv522/landing_zone_2) -"wDh" = ( -/turf/open/floor/prison/blue/northwest, -/area/lv522/indoors/a_block/admin) "wDj" = ( /turf/closed/wall/strata_outpost, /area/lv522/outdoors/colony_streets/windbreaker/observation) @@ -48472,13 +44054,6 @@ }, /turf/open/floor/prison/floor_marked/southwest, /area/lv522/landing_zone_2) -"wEz" = ( -/obj/structure/prop/server_equipment/yutani_server{ - density = 0; - pixel_y = 16 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/nw_rockies) "wEE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -48507,20 +44082,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) -"wFv" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"wFA" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/outdoor) "wFB" = ( /obj/structure/window/framed/strata/reinforced, /turf/open/floor/corsat/marked, @@ -48536,10 +44097,6 @@ /obj/structure/surface/table/almayer, /turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) -"wFU" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/prison/blue/southeast, -/area/lv522/indoors/a_block/admin) "wGc" = ( /obj/item/device/m56d_post, /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, @@ -48549,13 +44106,9 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) "wGq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = -1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "wGE" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/computer/PC{ @@ -48572,16 +44125,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen/glass) -"wGH" = ( -/obj/item/prop/colony/usedbandage{ - dir = 5; - pixel_y = 8 - }, -/obj/item/prop/colony/usedbandage{ - dir = 10 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) "wGJ" = ( /obj/item/stack/sheet/wood, /turf/open/floor/prison, @@ -48672,17 +44215,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"wIx" = ( -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "wIE" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/organic/grass, @@ -48735,7 +44267,7 @@ /obj/structure/platform{ dir = 4 }, -/turf/open/shuttle/dropship/can_surgery/light_grey_middle, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "wKR" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -48762,9 +44294,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) -"wLp" = ( -/turf/closed/wall/mineral/bone_resin, -/area/lv522/atmos/east_reactor/west) "wLw" = ( /obj/structure/prop/invuln/overhead_pipe{ dir = 8; @@ -48835,23 +44364,13 @@ "wNF" = ( /obj/item/stack/rods, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "wNX" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"wOo" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) -"wOu" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/n_rockies) "wOC" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/objective_landmark/close, @@ -48866,12 +44385,6 @@ /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) -"wPL" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 - }, -/turf/closed/wall/strata_ice/dirty, -/area/lv522/oob) "wPN" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = 11; @@ -48883,26 +44396,28 @@ /turf/open/floor/wood/wood_broken6, /area/lv522/indoors/b_block/bar) "wPV" = ( -/obj/structure/closet/crate, -/obj/item/storage/xeno_tag_case, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/structure/barricade/handrail{ + dir = 1 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, /turf/open/floor/prison/floor_plate, -/area/lv522/indoors/lone_buildings/storage_blocks) +/area/lv522/indoors/lone_buildings/engineering) "wQa" = ( /turf/open/auto_turf/shale/layer1, /area/lv522/landing_zone_2) -"wQs" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/corsat/brown/northeast, -/area/lv522/atmos/east_reactor/south) "wQy" = ( /turf/open/floor/prison/floor_marked/southwest, /area/lv522/indoors/c_block/mining) "wRa" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/emcloset, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "wRd" = ( /obj/item/prop/alien/hugger, @@ -48910,12 +44425,12 @@ /turf/open/floor/prison/darkpurple2/southwest, /area/lv522/indoors/a_block/dorms) "wRf" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/pipes/standard/simple/hidden/green{ +/obj/item/ammo_magazine/m56d, +/obj/structure/pipes/standard/manifold/hidden/green{ dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "wRk" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -48948,7 +44463,7 @@ name = "Lifting weights" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "wRL" = ( /turf/closed/shuttle/dropship3/tornado{ @@ -48959,17 +44474,14 @@ /obj/structure/window/framed/strata/reinforced, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/bridges/garden_bridge) -"wSb" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor) "wSr" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/obj/structure/platform, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "wSt" = ( /obj/effect/decal/cleanable/blood/gibs, /turf/open/floor/prison, @@ -48996,26 +44508,19 @@ /area/lv522/indoors/lone_buildings/chunk) "wTn" = ( /obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo) -"wTq" = ( -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/south) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "wTr" = ( /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/kitchen) "wTu" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"wTv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/west_reactor) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "wTx" = ( /obj/structure/cargo_container/kelland/left, /turf/open/floor/prison/darkbrownfull2, @@ -49043,15 +44548,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/lv522/indoors/c_block/garage) -"wTJ" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) "wTV" = ( -/obj/structure/prop/vehicles, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/reactor_garage) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/cargo_intake) "wUj" = ( /obj/structure/closet/crate/miningcar/yellow, /obj/item/ore/coal, @@ -49063,12 +44563,8 @@ /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) "wUp" = ( -/obj/structure/stairs/perspective{ - dir = 4; - icon_state = "p_stair_full" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/oob) "wUx" = ( /obj/structure/barricade/deployable{ dir = 8 @@ -49076,15 +44572,15 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/admin) "wUL" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plating, -/area/lv522/oob) -"wVf" = ( -/obj/structure/machinery/power/apc/power/north{ - start_charge = 20 +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_x = -1; + pixel_y = 3 }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/west_reactor) +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "wVo" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -9; @@ -49095,28 +44591,6 @@ }, /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/south_east_street) -"wVF" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "map_corpo2"; - pixel_x = -6; - pixel_y = 26 - }, -/obj/structure/machinery/door_control/brbutton{ - id = "map_corpo"; - pixel_x = 6; - pixel_y = 26 - }, -/obj/structure/surface/rack, -/obj/item/storage/fancy/crayons{ - pixel_y = 12 - }, -/turf/open/floor/plating, -/area/lv522/oob) -"wWc" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/browncorner/west, -/area/lv522/atmos/east_reactor/south) "wWe" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, @@ -49144,10 +44618,6 @@ }, /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/hydro) -"wXA" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) "wXQ" = ( /turf/open/floor/prison/floor_marked/southwest, /area/lv522/outdoors/colony_streets/north_east_street) @@ -49217,7 +44687,7 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/plating, +/turf/open/floor/prison, /area/lv522/indoors/c_block/cargo) "wZw" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -49337,9 +44807,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/hallway) -"xce" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/atmos/command_centre) "xci" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -49376,9 +44843,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/mining) -"xcU" = ( -/turf/open/floor/corsat/plate, -/area/lv522/oob) "xcX" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -49418,19 +44882,18 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) +"xdx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/maintenance_jack, +/turf/open/floor/prison, +/area/lv522/outdoors/colony_streets/windbreaker/observation) "xdD" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/item/shard{ - icon_state = "medium" - }, -/turf/open/floor/plating/plating_catwalk/prison, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, /area/lv522/indoors/lone_buildings/engineering) "xdF" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/command_centre) +/turf/open/floor/corsat, +/area/lv522/atmos/north_command_centre) "xdX" = ( /obj/item/lightstick/red/spoke/planted{ pixel_x = -8; @@ -49448,9 +44911,6 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges) -"xei" = ( -/turf/closed/wall/strata_ice/dirty, -/area/space) "xen" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -49467,9 +44927,6 @@ /obj/structure/bed/sofa/south/grey/right, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"xeG" = ( -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/cargo_intake) "xfp" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/plating/plating_catwalk/prison, @@ -49501,22 +44958,12 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) -"xgl" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) "xgA" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/c_block/bridge) -"xgE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) "xgH" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -49561,9 +45008,6 @@ }, /turf/open/asphalt/cement/cement9, /area/lv522/outdoors/colony_streets/north_street) -"xho" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/north_command_centre) "xhq" = ( /obj/structure/closet, /turf/open/floor/prison/darkpurplefull2, @@ -49594,10 +45038,6 @@ /obj/effect/decal/cleanable/generic, /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) -"xhW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/indoors/lone_buildings/storage_blocks) "xic" = ( /turf/closed/shuttle/dropship3/tornado/typhoon{ icon_state = "32" @@ -49619,10 +45059,6 @@ }, /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms) -"xiY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/west) "xje" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -49697,8 +45133,15 @@ /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/bridges/op_centre) "xkB" = ( -/turf/open/floor/prison/floor_marked/southwest, -/area/lv522/atmos/outdoor) +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/cargo_intake) +"xkJ" = ( +/obj/effect/landmark/lv624/fog_blocker/short, +/turf/open/asphalt/cement, +/area/lv522/outdoors/colony_streets/south_west_street) "xkO" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/indoors/toilet) @@ -49763,33 +45206,31 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) -"xmj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/nw_rockies) "xmk" = ( /obj/structure/pipes/vents/pump, /obj/structure/bed/alien, /obj/item/pipe{ pixel_x = -6 }, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "xmD" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor/west) "xmN" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 1 - }, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) +/turf/open/floor/prison/cell_stripe, +/area/lv522/atmos/way_in_command_centre) "xmT" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat, +/obj/structure/shuttle/engine/heater{ + dir = 4; + pixel_x = 4 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 4; + icon_state = "flammable_pipe_3"; + pixel_x = 2 + }, +/turf/open/floor/corsat/marked, /area/lv522/atmos/west_reactor) "xni" = ( /obj/structure/bed/chair{ @@ -49798,12 +45239,9 @@ /turf/open/floor/prison/floor_plate, /area/lv522/landing_zone_1/ceiling) "xnk" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/whiteyellowfull/east, -/area/lv522/indoors/a_block/corpo) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/cell_stripe, +/area/lv522/atmos/way_in_command_centre) "xno" = ( /obj/item/weapon/gun/smartgun{ current_mag = null @@ -49851,30 +45289,17 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security/glass) "xnP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 6 - }, -/obj/item/storage/toolbox/electrical, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/lv522/indoors/a_block/corpo) -"xnX" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/obj/structure/platform_decoration{ - dir = 1 +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8 }, +/obj/structure/machinery/light, /turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) +/area/lv522/atmos/way_in_command_centre) "xoj" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/solaris/reinforced/hull/lv522, -/area/lv522/indoors/lone_buildings/storage_blocks) +/area/lv522/oob) "xoC" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; @@ -49883,9 +45308,6 @@ /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/hallway) -"xpg" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/lv522/outdoors/nw_rockies) "xpu" = ( /obj/structure/platform, /turf/open/floor/prison/floor_plate, @@ -49904,11 +45326,11 @@ /obj/structure/barricade/deployable{ dir = 8 }, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_east_street) "xqd" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "xqj" = ( /obj/effect/landmark/yautja_teleport, @@ -49925,7 +45347,7 @@ dir = 4; pixel_y = -5 }, -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Typhoon) "xqV" = ( /obj/structure/cargo_container/kelland/right, @@ -49940,17 +45362,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) -"xrA" = ( -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) "xrB" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/shiva/radiator_tile2, /area/lv522/indoors/c_block/cargo) "xrF" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/west_reactor) "xrH" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -49976,8 +45394,8 @@ /turf/open/floor/plating, /area/lv522/landing_zone_2) "xsE" = ( -/turf/open/floor/prison, -/area/lv522/atmos/sewer) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor/south) "xsN" = ( /obj/structure/largecrate/random/barrel, /obj/effect/decal/cleanable/dirt, @@ -50002,13 +45420,13 @@ /obj/item/prop/colony/usedbandage{ dir = 5 }, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "xtH" = ( /obj/effect/spawner/gibspawner/human, /obj/item/device/defibrillator/compact, /turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/w_rockies) +/area/lv522/outdoors/nw_rockies) "xtO" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -50036,30 +45454,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/kitchen, /area/lv522/indoors/b_block/bar) -"xuD" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin/wy{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = -8; - pixel_y = 10 - }, -/obj/item/tool/pen, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) -"xuQ" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) "xuU" = ( -/turf/open/floor/corsat/brown/northwest, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/west_reactor) "xva" = ( /obj/structure/cargo_container/watatsumi/right, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_west_street) "xvj" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ @@ -50113,9 +45513,8 @@ /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) "xwZ" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/brown/west, +/area/lv522/atmos/east_reactor/west) "xxk" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 1 @@ -50164,13 +45563,6 @@ /obj/structure/cargo_container/seegson/right, /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_west_street) -"xxW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) "xyi" = ( /obj/structure/closet/emcloset, /turf/open/floor/prison/darkpurplefull2, @@ -50180,7 +45572,7 @@ /turf/open/floor/prison/darkyellowfull2/east, /area/lv522/indoors/lone_buildings/outdoor_bot) "xyu" = ( -/turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "xyC" = ( /obj/structure/machinery/landinglight/ds2/delaythree, @@ -50194,16 +45586,9 @@ "xyN" = ( /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/central_streets) -"xzj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2/east, -/area/lv522/indoors/lone_buildings/engineering) "xzn" = ( -/turf/open/floor/prison, -/area/lv522/atmos/outdoor) +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/command_centre) "xzp" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy{ @@ -50213,11 +45598,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) -"xzu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) "xzK" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/south_east_street) @@ -50232,6 +45612,10 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "mining_shutter_1" + }, /turf/open/floor/corsat/marked, /area/lv522/indoors/c_block/mining) "xAF" = ( @@ -50246,23 +45630,14 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/garage) -"xAN" = ( -/obj/structure/pipes/standard/simple/hidden/green{ +"xAO" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/boxing, +/obj/structure/window/reinforced{ dir = 4 }, -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/outdoors/colony_streets/north_west_street) -"xAO" = ( -/turf/open/gm/river, -/area/lv522/indoors/a_block/fitness/glass) +/turf/open/floor/prison/greenfull, +/area/lv522/indoors/a_block/fitness) "xAP" = ( /obj/vehicle/train/cargo/engine, /turf/open/floor/prison, @@ -50295,16 +45670,8 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) "xBi" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper A-Block Corporate Office Airlock"; - req_access_txt = "100" - }, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/indoors/a_block/corpo/glass) +/turf/open/floor/prison, +/area/lv522/atmos/way_in_command_centre) "xBo" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 1 @@ -50317,11 +45684,12 @@ /turf/open/floor/prison, /area/lv522/indoors/c_block/t_comm) "xBL" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/power/apc/power/north{ + start_charge = 20 }, -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/n_rockies) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "xBS" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -50332,7 +45700,7 @@ /obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/strata/white_cyan1/east, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo/glass) "xCN" = ( /obj/item/clothing/under/shorts/blue{ @@ -50342,9 +45710,8 @@ /turf/open/floor/carpet, /area/lv522/indoors/a_block/executive) "xCS" = ( -/obj/structure/machinery/light, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/brown/southeast, +/area/lv522/atmos/east_reactor) "xCT" = ( /turf/open/floor/prison, /area/lv522/indoors/a_block/dorm_north) @@ -50366,8 +45733,15 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) "xDu" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/indoors/a_block/corpo/glass) +/obj/item/ammo_magazine/rifle/heap{ + current_rounds = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/way_in_command_centre) "xDC" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1; @@ -50400,7 +45774,7 @@ /area/lv522/indoors/a_block/kitchen) "xDL" = ( /obj/structure/cargo_container/kelland/left, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_west_street) "xDM" = ( /obj/structure/surface/table/almayer{ @@ -50434,12 +45808,15 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/north_west_street) "xEk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/cargo_intake) +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "xEp" = ( /obj/structure/cargo_container/kelland/right, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_west_street) "xEB" = ( /obj/structure/bed/chair/comfy{ @@ -50449,30 +45826,23 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "xED" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Reactor_entry_1" +/obj/structure/pipes/standard/simple/hidden/green{ + dir = 4 }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "xEH" = ( /obj/structure/machinery/landinglight/ds1{ dir = 1 }, /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1) -"xFg" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 10 - }, -/turf/open/asphalt/cement/cement1, -/area/lv522/outdoors/colony_streets/north_street) "xFp" = ( /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) "xFt" = ( -/obj/structure/pipes/standard/manifold/hidden/green, -/turf/open/floor/corsat/browncorner/north, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/east_reactor) "xFv" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -50537,18 +45907,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison/darkbrownfull2, /area/lv522/indoors/c_block/mining) -"xGR" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) "xGX" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/item/tool/warning_cone{ + pixel_x = -10; + pixel_y = 11 + }, /turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) +/area/lv522/atmos/east_reactor/west) "xHr" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/camera/autoname, @@ -50558,10 +45923,7 @@ /turf/open/floor/wood, /area/lv522/indoors/c_block/casino) "xHz" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - name = "\improper Corporate Liaison Office " - }, -/turf/open/floor/corsat/marked, +/turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/corpo) "xHO" = ( /obj/structure/girder, @@ -50600,10 +45962,6 @@ /obj/structure/machinery/light, /turf/open/floor/strata/blue1, /area/lv522/outdoors/colony_streets/windbreaker/observation) -"xJt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/way_in_command_centre) "xJB" = ( /obj/structure/largecrate/random/barrel/red, /turf/open/floor/prison, @@ -50632,17 +45990,13 @@ /area/lv522/indoors/b_block/bridge) "xJL" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/green{ + dir = 8 }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/admin) "xJX" = ( -/obj/effect/decal/cleanable/generic, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/prison/darkyellowfull2/east, +/turf/open/floor/plating, /area/lv522/indoors/lone_buildings/engineering) "xKc" = ( /obj/structure/barricade/handrail{ @@ -50679,14 +46033,8 @@ /turf/open/floor/prison, /area/lv522/indoors/a_block/dorms) "xLi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) -"xLm" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/north) +/turf/open/floor/corsat/brown/southwest, +/area/lv522/atmos/east_reactor/south) "xLn" = ( /obj/structure/surface/table/almayer, /obj/item/tool/kitchen/tray{ @@ -50709,18 +46057,24 @@ /turf/open/floor/prison, /area/lv522/outdoors/colony_streets/north_west_street) "xLr" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + id = "map_corpo"; + indestructible = 1; + name = "Emergency Blast Door"; + unacidable = 1; + use_power = 0 }, -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/sewer) -"xLU" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + id = "map_corpo2"; + indestructible = 1; + name = "Emergency Blast Door"; + unacidable = 1; + use_power = 0 }, -/turf/open/auto_turf/shale/layer1, -/area/lv522/outdoors/colony_streets/central_streets) +/turf/open/floor/corsat/marked, +/area/lv522/oob) "xLY" = ( /obj/structure/prop/invuln/ice_prefab{ dir = 1 @@ -50748,10 +46102,6 @@ /obj/structure/machinery/disposal, /turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) -"xME" = ( -/obj/structure/surface/table/almayer, -/turf/open/floor/corsat/browncorner/east, -/area/lv522/atmos/east_reactor/south) "xMO" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -50786,9 +46136,8 @@ /turf/open/floor/prison, /area/lv522/indoors/b_block/hydro) "xNt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/brown/north, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/east_reactor) "xNG" = ( /obj/structure/machinery/computer/crew/colony{ density = 0; @@ -50802,7 +46151,7 @@ /area/lv522/indoors/b_block/hydro) "xOb" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness/glass) "xOw" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -50893,16 +46242,6 @@ }, /turf/open/floor/carpet, /area/lv522/indoors/a_block/executive) -"xPY" = ( -/obj/structure/fence, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/outdoor) -"xQc" = ( -/turf/closed/wall/r_wall/biodome/biodome_unmeltable, -/area/lv522/atmos/east_reactor/south) "xQi" = ( /obj/structure/closet/firecloset/full, /turf/open/floor/prison/darkredfull2, @@ -50919,8 +46258,8 @@ /area/lv522/indoors/a_block/medical) "xQq" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/wood/ship, -/area/lv522/atmos/way_in_command_centre) +/turf/closed/wall/mineral/bone_resin, +/area/lv522/oob) "xQw" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin{ @@ -50992,7 +46331,7 @@ /turf/open/floor/prison/blue_plate/north, /area/lv522/indoors/a_block/admin) "xRE" = ( -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_west_street) "xRG" = ( /obj/structure/surface/table/almayer, @@ -51002,8 +46341,9 @@ /turf/open/floor/prison/darkpurplefull2, /area/lv522/indoors/a_block/dorms/glass) "xRK" = ( -/turf/open/asphalt/cement/cement2, -/area/lv522/outdoors/colony_streets/north_street) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/lv522/atmos/reactor_garage) "xRM" = ( /obj/structure/machinery/door/airlock/dropship_hatch/two{ dir = 8 @@ -51013,7 +46353,7 @@ id = "UD6 East"; indestructible = 1 }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down, /area/lv522/landing_zone_forecon/UD6_Tornado) "xRQ" = ( /obj/structure/surface/table/woodentable/fancy, @@ -51043,24 +46383,14 @@ /turf/open/auto_turf/shale/layer1, /area/lv522/outdoors/colony_streets/central_streets) "xSE" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/cell_stripe/east, -/area/lv522/atmos/way_in_command_centre) -"xSL" = ( -/obj/structure/bed/chair/comfy{ - dir = 4 - }, -/turf/open/floor/corsat/brown/northwest, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, /area/lv522/atmos/east_reactor/south) "xSN" = ( -/turf/open/floor/corsat/marked, -/area/lv522/atmos/filt) +/obj/structure/largecrate/random/secure, +/turf/open/auto_turf/shale/layer1, +/area/lv522/outdoors/colony_streets/north_east_street) "xSP" = ( -/obj/structure/pipes/standard/manifold/hidden/green{ - dir = 8 - }, /obj/structure/surface/table/almayer, /obj/item/paper_bin{ pixel_x = 6; @@ -51090,7 +46420,7 @@ /area/lv522/indoors/c_block/mining) "xTs" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/whitegreenfull/southwest, +/turf/open/floor/prison/whitegreenfull, /area/lv522/indoors/a_block/fitness) "xTJ" = ( /obj/item/tool/kitchen/utensil/pknife{ @@ -51127,12 +46457,15 @@ /turf/open/floor/prison/floor_plate, /area/lv522/indoors/b_block/bar) "xUq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat, -/area/lv522/atmos/reactor_garage) +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "xUx" = ( -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/corsat/squares, +/area/lv522/atmos/east_reactor) "xUJ" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/dirt, @@ -51146,27 +46479,33 @@ /turf/closed/wall/strata_outpost_ribbed, /area/lv522/indoors/lone_buildings/engineering) "xVq" = ( -/obj/structure/blocker/forcefield/vehicles, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/east_reactor/south) +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + pixel_y = 6 + }, +/obj/effect/decal/hefa_cult_decals/d96{ + desc = "You think you can make out the iconography of a Xenomorph?" + }, +/turf/open/floor/corsat/brown/southwest, +/area/lv522/oob/w_y_vault) "xVz" = ( /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_west_street) -"xVB" = ( -/obj/structure/machinery/deployable/barrier, -/turf/open/floor/shiva/radiator_tile2, -/area/lv522/atmos/way_in_command_centre) "xVG" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/xeno_egg/alpha{ + pixel_x = -4; + pixel_y = 18 }, -/turf/open/floor/corsat, -/area/lv522/atmos/cargo_intake) +/obj/item/xeno_egg/alpha{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/structure/closet/crate, +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) "xVH" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -51194,9 +46533,8 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_west_street) "xWc" = ( -/obj/structure/pipes/standard/simple/hidden/green, -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/north_command_centre) "xWf" = ( /turf/open/floor/prison/floor_plate, /area/lv522/indoors/a_block/bridges/dorms_fitness) @@ -51204,10 +46542,6 @@ /obj/structure/machinery/door/airlock/almayer/generic, /turf/open/floor/corsat/marked, /area/lv522/indoors/toilet) -"xWz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/filt) "xWA" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -51228,7 +46562,7 @@ pixel_y = 11 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "xWL" = ( /obj/structure/pipes/standard/simple/hidden/green{ @@ -51258,12 +46592,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/a_block/kitchen/glass) -"xXv" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 5 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) "xXz" = ( /obj/structure/foamed_metal, /obj/effect/decal/cleanable/dirt, @@ -51284,22 +46612,18 @@ /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/north_street) "xXR" = ( -/obj/structure/machinery/colony_floodlight{ - density = 0; - layer = 4.3; - pixel_y = 17 - }, +/obj/structure/machinery/colony_floodlight, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_street) "xXV" = ( -/turf/open/asphalt/cement/cement3, -/area/lv522/outdoors/nw_rockies) +/turf/open/floor/corsat, +/area/lv522/atmos/cargo_intake) "xXX" = ( /obj/structure/target{ name = "punching bag" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/prison/greenfull/east, +/turf/open/floor/prison/greenfull, /area/lv522/indoors/a_block/fitness) "xYn" = ( /obj/structure/surface/table/woodentable/fancy, @@ -51318,11 +46642,11 @@ /turf/open/floor/plating, /area/lv522/landing_zone_2) "xYD" = ( -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/east_reactor/south) +/turf/closed/wall/r_wall/biodome/biodome_unmeltable, +/area/lv522/atmos/east_reactor) "xZw" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat/marked, +/area/lv522/atmos/north_command_centre) "xZy" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/landmark/objective_landmark/close, @@ -51334,18 +46658,11 @@ /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/corpo) "xZE" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/prison, -/area/lv522/atmos/way_in_command_centre) +/turf/closed/wall/strata_outpost/reinforced, +/area/lv522/atmos/east_reactor/south) "xZL" = ( -/obj/structure/machinery/conveyor{ - dir = 5; - id = "cargo_container" - }, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/cargo_intake) +/turf/open/floor/corsat, +/area/lv522/atmos/west_reactor) "xZP" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -51354,11 +46671,8 @@ /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_east_street) "xZS" = ( -/obj/item/clothing/gloves/yellow, -/obj/structure/machinery/space_heater/radiator/red{ - pixel_y = 26 - }, -/turf/open/floor/prison/darkyellowfull2/east, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/lone_buildings/engineering) "yae" = ( /obj/structure/surface/table/almayer, @@ -51379,16 +46693,8 @@ }, /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) -"yai" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/plate, -/area/lv522/atmos/east_reactor/south) "yaj" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/corsat, +/turf/open/floor/corsat/marked, /area/lv522/atmos/east_reactor/south) "yak" = ( /obj/structure/machinery/portable_atmospherics/canister/empty/oxygen, @@ -51409,19 +46715,11 @@ /turf/open/floor/strata/floor3/east, /area/lv522/landing_zone_2/ceiling) "yaw" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/corsat/marked, -/area/lv522/atmos/reactor_garage) +/turf/open/floor/corsat/squares, +/area/lv522/atmos/cargo_intake) "yaC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/way_in_command_centre) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor/south) "yaF" = ( /obj/effect/spawner/gibspawner/xeno, /obj/structure/pipes/standard/simple/hidden/green{ @@ -51430,28 +46728,15 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/north_east_street) "yaH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk/prison, -/area/lv522/atmos/sewer) +/obj/item/clothing/suit/storage/marine/M3S, +/turf/open/floor/corsat, +/area/lv522/atmos/east_reactor/south) "yba" = ( /obj/structure/largecrate/random{ layer = 2.9 }, /turf/open/floor/plating/platebot, /area/lv522/indoors/c_block/cargo) -"ybd" = ( -/obj/structure/blocker/forcefield/vehicles, -/obj/structure/machinery/door/poddoor/almayer{ - id = "E_B_Door"; - name = "\improper Emergency Blast Door"; - unacidable = 1 - }, -/obj/structure/blocker/invisible_wall, -/turf/open/floor/corsat/squares, -/area/lv522/oob) "ybj" = ( /obj/item/prop/alien/hugger, /turf/open/auto_turf/sand_white/layer0, @@ -51499,9 +46784,8 @@ /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/kitchen) "ycw" = ( -/obj/structure/girder/reinforced, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/colony_streets/north_east_street) +/turf/open/floor/prison, +/area/lv522/atmos/cargo_intake) "ycE" = ( /turf/open/floor/carpet, /area/lv522/indoors/b_block/bar) @@ -51525,11 +46809,12 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/indoors/b_block/bridge) "ycV" = ( +/obj/effect/landmark/monkey_spawn, /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/asphalt/cement/cement15, -/area/lv522/outdoors/n_rockies) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/command_centre) "ydb" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/wood, @@ -51556,6 +46841,14 @@ /obj/item/ammo_box/magazine/shotgun/buckshot/empty, /turf/open/floor/prison/darkredfull2, /area/lv522/indoors/a_block/security) +"ydO" = ( +/obj/structure/barricade/handrail, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/lv522/indoors/c_block/mining) "ydS" = ( /obj/structure/pipes/standard/simple/hidden/green, /turf/open/floor/corsat/marked, @@ -51572,7 +46865,7 @@ dir = 1; flipped = 1 }, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "yeD" = ( /obj/item/ammo_magazine/pistol/m1911{ @@ -51583,13 +46876,8 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/floor/prison/floor_marked/southwest, +/turf/open/floor/prison/floor_marked, /area/lv522/outdoors/colony_streets/north_west_street) -"yeH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/turf/open/floor/prison, -/area/lv522/outdoors/colony_streets/windbreaker/observation) "yeM" = ( /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 @@ -51604,9 +46892,6 @@ }, /turf/open/floor/prison/floor_plate, /area/lv522/outdoors/colony_streets/north_west_street) -"yeS" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/north_command_centre) "yfu" = ( /turf/open/floor/prison, /area/lv522/indoors/lone_buildings/storage_blocks) @@ -51654,10 +46939,6 @@ }, /turf/open/floor/prison, /area/lv522/indoors/c_block/casino) -"ygu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, -/turf/open/floor/corsat/brown/east, -/area/lv522/atmos/east_reactor/west) "ygw" = ( /obj/structure/pipes/standard/simple/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -51666,6 +46947,10 @@ "ygD" = ( /turf/open/floor/corsat/marked, /area/lv522/outdoors/colony_streets/windbreaker/observation) +"ygJ" = ( +/obj/effect/landmark/lv624/fog_blocker/short, +/turf/closed/wall/strata_ice/dirty, +/area/lv522/oob) "yhi" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/prison, @@ -51690,14 +46975,6 @@ /obj/effect/landmark/objective_landmark/science, /turf/open/floor/strata/white_cyan1/east, /area/lv522/indoors/a_block/medical/glass) -"yhz" = ( -/obj/structure/window_frame/corsat, -/obj/effect/spawner/gibspawner/xeno, -/obj/effect/decal/cleanable/blood/xeno{ - icon_state = "xgib3" - }, -/turf/open/floor/corsat, -/area/lv522/atmos/east_reactor/south) "yhG" = ( /obj/structure/bed/chair{ dir = 8 @@ -51722,11 +46999,8 @@ /obj/structure/pipes/standard/simple/hidden/green{ dir = 4 }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) -"yiu" = ( -/turf/open/floor/corsat/squares, -/area/lv522/atmos/east_reactor/south) +/turf/open/floor/corsat/brown/north, +/area/lv522/atmos/command_centre) "yiH" = ( /obj/structure/window_frame/strata, /obj/effect/spawner/gibspawner/xeno, @@ -51754,26 +47028,17 @@ /turf/open/floor/corsat/marked, /area/lv522/indoors/a_block/bridges/op_centre) "yje" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/turf/open/floor/prison/floor_plate, -/area/lv522/atmos/sewer) -"yjg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor/glass/colony, -/turf/open/floor/corsat/marked, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/corsat, /area/lv522/atmos/east_reactor/south) "yjm" = ( /obj/structure/largecrate/random, /turf/open/asphalt/cement, /area/lv522/outdoors/colony_streets/north_street) "yjp" = ( -/obj/structure/machinery/colony_floodlight{ - layer = 4.3 - }, -/turf/open/asphalt/cement, -/area/lv522/outdoors/colony_streets/north_street) +/turf/closed/wall/strata_outpost, +/area/lv522/atmos/way_in_command_centre) "yjq" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/item/clothing/shoes/marine, @@ -51808,6 +47073,18 @@ }, /turf/open/floor/plating/plating_catwalk/prison, /area/lv522/indoors/a_block/bridges/corpo) +"yjs" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/green, +/turf/open/floor/prison/floor_plate, +/area/lv522/outdoors/colony_streets/north_west_street) "yjy" = ( /obj/effect/decal/cleanable/blood/splatter, /obj/item/prop{ @@ -51828,8 +47105,8 @@ /turf/open/auto_turf/sand_white/layer0, /area/lv522/outdoors/colony_streets/south_east_street) "yjL" = ( -/turf/open/floor/prison/whitegreenfull/southwest, -/area/lv522/oob) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/east_reactor) "yjP" = ( /obj/structure/surface/table/almayer, /obj/item/device/radio/off{ @@ -51866,7 +47143,7 @@ /area/lv522/indoors/a_block/bridges/op_centre) "yke" = ( /obj/structure/machinery/vending/snack, -/turf/open/floor/prison/blue_plate/north, +/turf/open/floor/prison/blue_plate, /area/lv522/indoors/a_block/admin) "ykj" = ( /turf/open/shuttle/dropship/can_surgery/light_grey_bottom_right, @@ -51915,15 +47192,12 @@ /turf/open/floor/prison/greenfull/east, /area/lv522/landing_zone_1/ceiling) "yld" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 4 - }, -/obj/effect/alien/resin/sticky, -/turf/open/floor/corsat/squares, +/turf/open/floor/corsat/brown, /area/lv522/atmos/east_reactor/south) "ylm" = ( -/turf/open/asphalt/cement/cement12, -/area/lv522/outdoors/n_rockies) +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/corsat/plate, +/area/lv522/atmos/command_centre) "ylo" = ( /turf/closed/wall/shiva/prefabricated/reinforced, /area/lv522/indoors/lone_buildings/storage_blocks) @@ -51938,11 +47212,8 @@ /turf/open/asphalt/cement/cement1, /area/lv522/outdoors/colony_streets/east_central_street) "ylC" = ( -/obj/structure/pipes/standard/simple/hidden/green{ - dir = 6 - }, -/turf/open/auto_turf/sand_white/layer0, -/area/lv522/outdoors/n_rockies) +/turf/open/floor/corsat/plate, +/area/lv522/atmos/west_reactor) "ylY" = ( /obj/structure/pipes/standard/manifold/hidden/green, /obj/effect/decal/cleanable/dirt, @@ -52162,27 +47433,6 @@ bMX bMX bMX bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX "} (2,1,1) = {" bMX @@ -52388,43 +47638,11 @@ cpy cpy cpy cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy bMX "} (3,1,1) = {" bMX cpy -abo -abS -ajM -abo -cpy -cpy -cpy -cpy -cpy -cpy -cpy cpy cpy cpy @@ -52469,16 +47687,6 @@ cpy cpy cpy cpy -auG -auG -vtc -vtc -vtc -vtc -vtc -cpy -cpy -cpy cpy cpy cpy @@ -52641,10 +47849,6 @@ bMX (4,1,1) = {" bMX cpy -abo -acJ -akl -abo cpy cpy cpy @@ -52695,23 +47899,6 @@ cpy cpy cpy cpy -vtc -vtc -vtc -vtc -vtc -vtc -vtc -nTa -vtc -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy cpy cpy cpy @@ -52869,18 +48056,6 @@ bMX bMX cpy cpy -adI -akM -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy cpy cpy cpy @@ -52894,6 +48069,7 @@ cpy cpy cpy cpy +dvO cpy cpy cpy @@ -52903,10 +48079,6 @@ cpy cpy cpy cpy -dvO -orm -orm -wPL cpy cpy cpy @@ -52921,15 +48093,9 @@ cpy cpy cpy cpy -lvN -lvN -lvN -lvN cpy cpy cpy -vtc -vtc cpy cpy cpy @@ -53095,10 +48261,6 @@ bMX (6,1,1) = {" bMX cpy -abo -adN -akM -abo cpy cpy cpy @@ -53112,6 +48274,7 @@ cpy cpy cpy cpy +dvO cpy cpy cpy @@ -53129,16 +48292,9 @@ cpy cpy cpy cpy -dvO -hJq -kiT -tfO -viE cpy cpy cpy -auG -auG cpy cpy cpy @@ -53148,15 +48304,6 @@ cpy cpy cpy cpy -auG -vtc -vtc -vtc -vtc -cpy -cpy -cpy -cpy cpy cpy cpy @@ -53179,12 +48326,10 @@ cpy cpy cpy cpy +wbt cpy cpy -sRA -cpy -cpy -sRA +wbt rWS rWS rWS @@ -53322,15 +48467,6 @@ bMX (7,1,1) = {" bMX cpy -abo -afp -alJ -abo -abo -abo -abo -abo -abo cpy cpy cpy @@ -53356,36 +48492,13 @@ cpy cpy cpy cpy -hJq -qZf -wGH cpy -viE cpy cpy -vtc -vtc -vtc -vtc cpy cpy cpy cpy -auG -auG -vtc -vtc -vtc -vtc -vtc -vtc -uWO -uWO -uWO -lQS -gsZ -gOj -han cpy cpy cpy @@ -53403,19 +48516,6 @@ cpy cpy cpy cpy -rWS -rWS -rWS -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA cpy cpy cpy @@ -53429,6 +48529,28 @@ cpy cpy cpy cpy +rWS +wbt +wbt +wbt +wbt +wbt +wbt +wbt +wbt +wbt +wbt +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy cpy cpy cpy @@ -53441,6 +48563,8 @@ cpy cpy cpy cpy +lpe +lpe cpy cpy cpy @@ -53549,15 +48673,6 @@ bMX (8,1,1) = {" bMX cpy -abo -afp -akM -arh -abo -bby -bzD -bUJ -abo cpy cpy cpy @@ -53582,41 +48697,11 @@ cpy cpy cpy cpy -aVg -adl cpy cpy -pOK -rQL cpy -auG -vtc -vtc -vtc -vtc -vtc cpy cpy -vtc -vtc -vtc -vtc -vtc -vtc -vtc -vtc -uWO -pit -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -vtc -vtc cpy cpy cpy @@ -53625,27 +48710,6 @@ cpy cpy cpy cpy -rWS -rWS -rWS -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -ePl cpy cpy cpy @@ -53670,6 +48734,45 @@ cpy cpy cpy cpy +wbt +wbt +wbt +wbt +wbt +wbt +wbt +wbt +wbt +wbt +wbt +wbt +wbt +wbt +ePl +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +sHp +goo +rtI +rQL +cpy cpy cpy cpy @@ -53777,14 +48880,6 @@ bMX bMX cpy cpy -afp -ann -asI -aDZ -akM -bAo -bVG -abo cpy cpy cpy @@ -53809,71 +48904,14 @@ cpy cpy cpy cpy -aVg -tCa cpy -qIu -viE cpy cpy -auG -vtc -vtc -vtc -vtc -vtc -rXr -vtc -vtc -vtc -vtc -vtc -uWO -uWO -vtc -vtc -vtc -vtc -uWO -uWO -uWO -uWO -uWO -pit -uWO -uWO -vtc -vtc -auG -vtc cpy cpy cpy cpy cpy -rWS -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA cpy cpy cpy @@ -53901,6 +48939,50 @@ cpy cpy cpy cpy +wbt +wbt +wbt +wbt +wbt +wbt +wbt +wbt +wbt +wbt +wbt +wbt +wbt +wbt +wbt +wbt +wbt +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +sHp +qUQ +ruv +rME +rNm +lpe +cpy +cpy +cpy +cpy cpy cpy cpy @@ -54003,15 +49085,7 @@ bMX (10,1,1) = {" bMX cpy -abo -abS -ajM cpy -abo -bce -bBF -bWq -abo cpy cpy cpy @@ -54036,72 +49110,12 @@ cpy cpy cpy cpy -aVg cpy -cJA cpy -viE cpy -jXp -vtc -vtc -vtc -vtc -vtc -vtc -rXr -vtc -uWO -uWO -uWO -uWO -uWO -uWO -uWO -vtc -vtc -vtc -vtc -vtc -uWO -uWO -uWO -uWO -uWO -uWO -uWO -vtc -vtc -vtc -auG cpy cpy cpy -rWS -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -rGg -sbG -dlC -tbl -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -sRA -rWS cpy cpy cpy @@ -54131,6 +49145,53 @@ cpy cpy cpy cpy +wbt +wbt +wbt +wbt +rGg +sbG +dlC +tbl +wbt +wbt +wbt +wbt +wbt +wbt +wbt +wbt +wbt +rWS +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cvA +qUQ +rmA +rza +osc +rNm +lpe +cpy +cpy +cpy +cpy +cpy +cpy +cpy cpy cpy cpy @@ -54234,11 +49295,6 @@ cpy cpy cpy cpy -abo -abo -abo -abo -abo cpy cpy cpy @@ -54263,58 +49319,42 @@ cpy cpy cpy cpy -hGJ -kFP cpy -pOK -rQL cpy -sNk -vtc -vtc -uWO -gxN -hIZ -hIZ -jiW -hSi -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -vtc -vtc -vtc -vtc -uWO -uWO -uWO -uWO -uWO -uWO -uWO -vtc -vtc -vtc -jrT cpy cpy -sRA -sRA -sRA -sRA -sRA -rWS +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy qjs qFs qSP -sRA -sRA +wbt +wbt rBU sci sFS @@ -54326,8 +49366,8 @@ sfZ vcu kor rWS -uiK -uiK +uWO +uWO rWS ePl cpy @@ -54344,13 +49384,13 @@ cpy cpy cpy cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy +ltw +qVN +qZf +qZf +rBz +rCu +lpe cpy cpy cpy @@ -54491,56 +49531,35 @@ cpy cpy cpy cpy -hGJ -mTE -rQL cpy cpy -vtc -uWO -uWO -uWO -gEB -uWO -ooe -ooe -lPY -hIZ -hIZ -mAW -hIZ -hIZ -hIZ -hIZ -hIZ -hIZ -hIZ -jXT -jXT -jXT -jXT -jXT -dQr -jXT -jXT -hIZ -ivz -hIZ -hIZ -hSi -vtc cpy cpy -rWS -sRA -sRA -sRA -rWS +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy pRK qmM qGQ qTh -rjP +bmR qzp nfq fDg @@ -54551,11 +49570,11 @@ sci sFS tcz vfl -uiK +uWO rWS rWS -sRA -uiK +wbt +uWO rWS cpy cpy @@ -54570,13 +49589,13 @@ cpy cpy cpy cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy +lpe +ltw +qYy +cIS +rzq +uks +qZf cpy cpy cpy @@ -54722,52 +49741,31 @@ cpy cpy cpy cpy -auG -vtc -uWO -uWO -uWO -gEB -uWO -gOJ cpy -lQS -uWO -uWO -mwp -uWO -uWO -uWO -dHR -dJJ -eXV -uWO -gcY -uWO -uWO -vtc -vtc -auG -auG -vtc -vtc -vtc -vtc -vtc -lMH -vtc cpy cpy -rWS -rWS -sRA -sRA +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy obe pRM qnk qHA qWk -rgn +rhB sbj uJf kbq @@ -54778,10 +49776,10 @@ fDg sGc nfq vga -sRA -sRA +wbt +wbt rWS -sRA +wbt kor cpy cpy @@ -54796,14 +49794,14 @@ cpy cpy cpy cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy +lpe +lpe +qPq +osc +roM +esO +uks +lpe cpy cpy cpy @@ -54949,41 +49947,20 @@ cpy cpy cpy cpy -auG -vtc -uWO -uWO -uWO -gEB -uWO -uWO cpy -uWO -mgJ -mwp -uWO -uWO -aRH -vPk -vPk -vPk -vPk -vPk -gfL -uWO -uWO -uWO -vtc -vtc -vtc -dXa -auG -vtc -vtc -vtc -lMH -jrT -vtc +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy cpy cpy cpy @@ -55005,19 +49982,11 @@ tSJ scw uEr vgM -uiK -uiK -sRA -sRA -sRA -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy +uWO +uWO +wbt +wbt +wbt cpy cpy cpy @@ -55031,6 +50000,14 @@ cpy cpy cpy cpy +lpe +qZf +qTH +qZB +osc +rBz +bkg +lpe cpy cpy cpy @@ -55177,40 +50154,19 @@ cpy cpy cpy cpy -vtc -uWO -uWO -uWO -gEB -uWO -uWO -rXr -uWO -uWO -uWO -uWO -aRH -cKF -bIJ -bIJ -bIJ -bIJ -bIJ -dek -bsz -uWO -cJy -uWO -uWO -vtc -jus -eXO -emm -vtc -vtc -lMH -vtc -uWO +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy cpy cpy cpy @@ -55219,7 +50175,7 @@ pys jvF pBz iGk -qJl +sbj qUf riE ruj @@ -55227,15 +50183,15 @@ rDu xKc fwh pBQ -rjP -rus -rjP +bmR +tTb +bmR uEt kor -sRA -sRA -sRA -sRA +wbt +wbt +wbt +wbt rWS ePl cpy @@ -55251,12 +50207,12 @@ cpy cpy cpy cpy -cpy -cpy -cpy -cpy -cpy -cpy +qZf +qZf +qTH +rqT +rCu +lpe cpy cpy cpy @@ -55380,13 +50336,13 @@ saC saC saC saC -fTs -fTs -fTs -bSM -fTs -dWE -dWE +saC +saC +saC +saC +saC +saC +saC saC saC saC @@ -55403,42 +50359,21 @@ cpy cpy cpy cpy -vtc -vtc -vtc -uWO -uWO -gEB -idH -uWO -rXr -uWO -uWO -uWO -uWO -aTA -bIJ -bIJ -fXS -dsq -eHX -bIJ -bIJ -sLZ -sLZ -sLZ -sLZ -hQU -iOi -jCb -fTi -ksf -kPO -jYu -hvE -sLZ -sLZ -sLZ +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy cpy cpy pqZ @@ -55459,9 +50394,9 @@ tSU rhB uEz vhd -sRA -sRA -sRA +wbt +wbt +wbt rEP ien cpy @@ -55479,8 +50414,11 @@ ien cpy cpy ien -cpy -cpy +qZf +flN +ien +lpe +lpe ien cpy cpy @@ -55493,13 +50431,10 @@ cpy ien cpy cpy -ien cpy cpy -ien cpy cpy -ien cpy cpy ien @@ -55606,13 +50541,13 @@ saC saC saC saC -uIW -uIW -uIW -uIW -dxU -uIW -uIW +saC +saC +saC +saC +saC +saC +saC saC saC saC @@ -55630,43 +50565,22 @@ cpy cpy cpy cpy -auG -vtc -vtc -uWO -uWO -gEB -uWO -ttf cpy cpy -uWO -uWO -uWO -aTA -bIJ -cMq -nZF -nZF -nZF -eIn -gVd -hoq -hKG -uWO -uWO -ieW -iOY -jCc -gjV -iJJ -kzl -llX -lMH -vtc -vtc -vtc -vtc +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy cpy cpy rWS @@ -55686,8 +50600,8 @@ sdE sIx rFp vhC -uiK -uiK +uWO +uWO jmN ebe ien @@ -55723,6 +50637,11 @@ ien ien ien ien +cpy +cpy +cpy +cpy +cpy ien ien ien @@ -55731,12 +50650,7 @@ ien ien ien ien -ien -ien -ien -ien -ien -spo +udK umf vXc vXc @@ -55832,16 +50746,16 @@ saC saC saC saC -uIW -uIW -uIW -uIW -uIW -dxU -uIW -uIW -kkc -kkc +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC saC saC saC @@ -55858,51 +50772,30 @@ cpy cpy cpy cpy -cKG -auG -vtc -vtc -gEB -uWO -lfS cpy cpy cpy -uWO -uWO cpy -bIJ -ddo -eaE -eaE -eaE -cQS -gXE -htu -uWO -uWO -uWO -iff -iTS -iTS -iTS -kBv -jbI -lnL -lMH -ibu +cpy +cpy +cpy vtc vtc vtc +vtc +jXT +uWO +uWO +cpy cpy cpy rWS -sRA +wbt pUc qst qLz qVl -rjP +bmR shh rFp sdE @@ -55913,8 +50806,8 @@ xic qOi tbl vhJ -uiK -sRA +uWO +wbt dtU ien ien @@ -55934,7 +50827,7 @@ iSf iSf yhK yhK -vKR +raH ien wEP hJZ @@ -55944,26 +50837,26 @@ sjY ien lSg pwR -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -ylo -dbc -ylo -ylo -ylo -ylo -ylo -ylo -rMF -spo +spn +hJZ +hJZ +sjY +sjY +ien +ien +cpy +cpy +cpy +ien +ien +ien +teE +jZe +tDQ +tDQ +tHC +tQw +vXc vXc vXc vXc @@ -56058,18 +50951,18 @@ saC saC saC saC -uIW -uIW -uIW -uIW -uIW saC saC -uIW -iJA -uIW -uIW -kkc +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC saC saC saC @@ -56085,52 +50978,31 @@ cpy cpy cpy cpy -lqb -xXV -xXV -xXV -gJD -xXV -nNL -xpg cpy cpy cpy cpy cpy -bIJ -cQS -eaE -eaE -eaE -fhY -gVd -hoq -hKG -uWO -uWO -uWO -cPi -uWO -uWO -vtc +cpy +cpy vtc +iTW +fFw vtc -mnr -jXT -jXT jXT -noL +uWO +uWO +aEL cpy cpy cpy -sRA -sRA +wbt +wbt qtc qME qWZ -sRA -sRA +wbt +wbt rGg xic guR @@ -56141,7 +51013,7 @@ sIK uEX vhO hPM -uiK +uWO xtH ien sON @@ -56161,7 +51033,7 @@ lIR dTJ dTJ akV -eUt +rla clY vJO hJZ @@ -56170,27 +51042,27 @@ woA hJZ hJZ hJZ -sus -ylo -sCP -tfZ -wHi -pYf -udK -wHi -nly -miW -ylo -ylo -dbc -bOX +hJZ +hJZ +hJZ +clY +clY +sjY +ien +cpy +cpy +cpy +cpy +cpy +ien +teE jZe wky wPV tyl -ylo -rMF -spo +tJk +tRS +vXc vXc vXc vXc @@ -56284,26 +51156,26 @@ saC saC saC saC -uIW -uIW -uIW -uIW -uIW saC saC -uIW -uIW -uIW -uIW -uIW -kkc -kkc saC -kkc -kkc saC saC -hnD +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC saC saC saC @@ -56312,52 +51184,31 @@ tiQ tiQ tiQ tiQ -lqb -lqb -lqb -lqb -gYM -lqb -lqb -xpg -cpy -cpy -cpy -cpy -cpy -bIJ -bIJ -nZF -nZF -nZF -bIJ -gXE -htu -uWO -uWO -cPi -uWO -uWO -uWO -ibu +tiQ +tiQ +tiQ +tiQ +exZ +tiQ +tiQ vtc vtc +auG +fYP +jXT uWO uWO +aGg uWO -vtc -vtc -lMH -vtc wms cpy -sRA -sRA -sRA -sRA -sRA -sRA -sRA +wbt +wbt +wbt +wbt +wbt +wbt +wbt rBU sec sIK @@ -56396,28 +51247,28 @@ gRs hJZ hJZ hJZ -gHz -gKO -ylo -xhW -hYf -wHi -pYY -hYf -wHi -jUk -ouI -arP -ylo +hJZ +clY +clY +sjY +clY +clY +sjY +ien +cpy +cpy +cpy +cpy +cpy xoj -ylo -erS +tfO +lpt abe ukT ofS -ylo -rMF -spo +tKb +tZs +vXc vXc vXc vXc @@ -56510,93 +51361,72 @@ saC saC saC saC -uIW -uIW -uIW -uIW -uIW -uIW -uIW -dxU -uIW -uIW -uIW -uIW -uIW -uIW -uIW -uIW -uIW -dxU -uIW -uIW -doP -hnD +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC saC saC saC saC tiQ -tiQ -tiQ -tiQ -bzC -kBq -oiW -niU -ljq -bzC -xpg -cpy -cpy -cpy -cpy -cpy -cpy -bIJ -bIJ -dRn -bIJ -bIJ -nru -cjE -uWO -uWO -uWO -uWO -uWO -uWO -uWO vtc +iTW +auG +gat +jXT uWO uWO -vtc uWO uWO -vtc -mnr -jXT nYM -kVG -bWt +rWS +rWS +wbt +wbt +wbt +wbt +wbt +wbt wbt wbt wbt -kXe -sRA -sRA -sRA -sRA -sRA cpy cpy cpy rWS -sRA -sRA -sRA -sRA -sRA +wbt +wbt +wbt +wbt +wbt ien sON xRE @@ -56620,31 +51450,31 @@ hJZ hJZ clY aTP -hJZ -hJZ -hJZ -uwb ylo ylo -gZJ -wHi -hYf -pYY -oVb -hYf -xhW -hYf -hYf ylo -xoj ylo +ylo +ylo +ylo +sjY +clY +clY +ien +ien +cpy +cpy +cpy +ien +xoj +ien lpt gJL -wHi +ukT cAW -ylo -ylo -spo +tKo +uaY +ueR vXc vXc vXc @@ -56737,93 +51567,72 @@ saC saC saC saC -uIW -uIW -uIW -uIW -uIW -uIW -uIW -dxU -uIW -uIW -uIW -uIW -uIW -uIW -uIW -uIW -uIW -dxU -uIW -uIW -uIW -doP -hnD +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC saC saC saC tiQ -tiQ -tiQ -tiQ -bzC -oiW -oiW -niU -oiW -bzC -xpg -cKG -rtI -ncS -mWc -cpy -csU -cpy -bQG -bQG -bQG -bQG -cjE vtc vtc -vtc -uWO -uWO -uWO +auG +gat +jXT uWO uWO uWO -cPi -auG -vtc -vtc uWO -vtc -vtc -vtc wnu -nvB -sRA -sRA -sRA -sRA -kXo -sRA +wbt +wbt +wbt +wbt +wbt +wbt +wbt cpy cpy -sRA -sRA +wbt +wbt jHa cpy rWS rWS -sRA -sRA -sRA -sRA -sRA +wbt +wbt +wbt +wbt +wbt ien sON eiZ @@ -56845,38 +51654,38 @@ rbV wRz wBA wBA -wBA -yhK -yhK -vKR -sjY -oNQ -iPD -yfu +kYm +ylo +ylo vBM -wHi -hYf +ssn +sxU hLl fcd -hYf -hLl -wHi -hYf ylo -dbc ylo -emt -hYf -wHi +clY +clY +ien +cpy +cpy +cpy +cpy +cpy +ien +tfZ +lpt +ttf +tDR tIS -yfu -ylo -spo -vXc +tLX +tZs +ueW +unt vXc vXc -umf -umf +uxf +uCr vXc wdy rMF @@ -56893,7 +51702,7 @@ nJv nJv nJv fnA -hpq +cxv tZh ofi max @@ -56964,92 +51773,71 @@ saC saC saC saC -uIW -iJA -uIW -dnQ -fzL -fzL -fzL -dMu -fzL -fzL -fzL -fzL -fzL -fzL -ssn -uIW -uIW -pgy -uIW -uIW -uIW -uIW -hTh +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC saC saC saC tiQ tiQ tiQ -bzC -bzC -oiW -oiW -niU -kBq -bzC -xpg -pMT -rJI -xmj -mWc -uWO -uWO -uWO -uWO -uWO -uWO -uWO -vtc -vtc -vtc -uWO -uWO -uWO -uWO -vtc vtc +iod +gat +jXT uWO uWO -auG -vtc -vtc uWO uWO -vtc -vtc cpy cpy -sRA +wbt rWS -sRA -sRA +wbt +wbt iXI cpy cpy cpy cpy -sRA +wbt nvB abt rWS -sRA -sRA -sRA -sRA -sRA +wbt +wbt +wbt +wbt +wbt ien ien ien @@ -57073,51 +51861,51 @@ hJZ hJZ nlz oRU -hJZ -clY -eUt -sjY -oNQ -iPD +ylo wHi -qvY -yfu -yfu -yfu -yfu -yfu -yfu -bZd +rus +saQ yfu -bOX -xoj +saQ +sHy +sNk ylo -yfu -bZd -yfu -bZd -bZd -iPD -spo -vXc -vXc -vXc +clY +clY +ien cpy -umf +cpy +cpy +cpy +bOX +xoj +tfZ +tqh +tyU +wdj +xdD +tOt +ubF +ufF +uqt +uuQ +uuQ +uxi +uDC yiM fXx nJv xVd vGP -usn +vGP nJv nJv rCa -rCa +vsy +nJv nJv bbi -bbi -bbi +vKF xVd nJv hpq @@ -57191,92 +51979,71 @@ saC saC saC saC -uIW -uIW -uIW -hTh -uPc -uPc -kcb -kcb -mTd -mTd -uPc -uPc -kmd saC -bco -uIW -uIW -dxU -uIW -uIW -uIW -uIW -doP -hnD -fop +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC saC tiQ -tiQ -bzC -bzC -bzC -oiW -ljq -niU -oiW -bzC -xpg -pPt -eqE -xmj -mWc -uWO -vtc vtc vtc +fFA +gat +jXT uWO uWO uWO uWO -vtc -uWO -uWO -uWO -uWO -uWO -vtc -vtc -vtc -uWO -uWO -vtc -vtc -auG uWO -vtc -vtc -sRA cpy cpy -sRA -bBB +wbt +joK rWS gtS -sRA +wbt cpy cpy cpy cpy -sRA -sRA -sRA -sRA -uiK -sRA -sRA -sRA +wbt +wbt +wbt +wbt +uWO +wbt +wbt +wbt rWS ien isc @@ -57300,52 +52067,52 @@ mLV hJZ nlV nzZ -hJZ -hJZ -iPu -wBA -sKU oOh icE djm pCn qJK -icE -qJK -qJK -qJK -cQB -bZd -ylo -xoj -bOX -yfu -tNS -bZd -bZd yfu -iPD -spo -vXc -vXc +sDf +sNQ +ylo +sjY +clY +ien +ien cpy cpy -umf -yiM -fXx -nJv +cpy +ien +xoj +xoj +she +tNS +tEW +tEW +tOM +udv +ugi +utq +uwb +uwb +uzD +uKD +uPv +uPv nJv vGP -vGP -qZJ -otM -wdj -qOa +vcF +viE +udM nJv +sXM +rwM +vxq bzL -qmA -qmA -bbi +xdD +rwM +wbi nJv hpq ofi @@ -57418,92 +52185,71 @@ saC saC saC saC -uIW -uIW -uIW -hTh -uPc -tKo -wBG -tiQ -mTd -mTd -tKo -naC +saC +saC +saC +saC +saC +uLk +saC tiQ saC saC -uIW -uIW -kkc -kkc -uIW -uIW -uIW -uIW -doP -fop -fop +uLk +saC tiQ +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +saC +xXV +xXV +xXV +saC +saC +saC +saC +saC +saC tiQ -bzC -bzC -bzC -nvd -bgc -mjs -nvd -bzC -xpg -pPt -sDS -xmj -mWc -uWO -uWO -vtc -vtc -uxd -uWO -aNw -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO -vtc vtc +iTW +auG +gat +jXT uWO uWO uWO -vtc -auG uWO uWO -vtc -sRA cpy cpy -sRA +wbt bQq rWS -jGh -sRA -sRA +wnu +wbt +wbt cpy cpy rWS -sRA -uiK -uiK -uiK -uiK +wbt +uWO +uWO +uWO +uWO nCt -sRA -sRA +wbt +wbt rWS ien qFE @@ -57524,55 +52270,55 @@ gAO edQ sFL mLW +rsM +rGi hJZ -hJZ -hJZ -hJZ -hJZ -slO -hJZ -oNQ iPD +hYf +spI +suS +dGK yfu -yfu -yfu -bZd -bZd -yfu -yfu -yfu -bDr -bZd +sDf +sPH ylo -dbc -bOX -eYT -bZd -yfu -bZd -yfu -iPD -spo -vXc -vXc +sjY +clY +ien cpy -vXc -vXc -yiM -fAA -nJv -vir +cpy +cpy +cpy +cpy +ien +she +she +nKj +nKj +she +she +tQw +uhP +utR +uxd +uxd +uAd +uLw +yiM +fAA +nJv +vir xJX vHo udM -nEY -sQD -nsd nJv +sQD +rwM +vzd cNO -qmA -mdp -bbi +rwM +xdD +wbj nJv gpB ofi @@ -57646,54 +52392,46 @@ saC saC saC saC -dxU -dxU -lcP +saC +saC +saC tiQ tiQ tiQ tiQ -dpg -dpg +saC +saC tiQ tiQ tiQ tiQ saC saC -kkc -kkc -kkc -uIW -uIW -uIW -uIW -uIW -uIW -fop -fop -xmT -fTS -fTS -fTS -fTS -fTS -hkT -fTS -bzC -xpg -xpg -eqE -xmj -mWc -uWO -uWO -uWO -uWO -uWO -uWO -uWO -uWO +saC +saC +saC +saC +saC +saC +saC +saC +saC +xXV +xXV +xXV +xXV +xXV +saC +saC +saC +saC +saC +tiQ +vtc +vtc +fFA +gat +jXT uWO uWO uWO @@ -57701,36 +52439,23 @@ uWO uWO uWO uWO +wbt +dcR +wbt +wbt uWO uWO +rWS +rWS +wbt uWO uWO uWO uWO -vtc -vtc uWO -vtc -sRA -uiK -uiK -sRA -dcR -sRA -bKq -goY -rsF -rWS -rWS -sRA -uiK -uiK -uiK -uiK -uiK cpy -sRA -sRA +wbt +wbt ien ien ien @@ -57747,59 +52472,59 @@ oqQ wqa wqa wqa -bZF -bZF -bZF -bZF -bZF -bZF -bZF -bZF -bZF -xAN -bZF -bZF +sIS +sIS +sIS +sIS +sIS +sIS +sIS ylo hYf -pwJ +rSs qpc dGK -qpc -qpc -qpc -yfu -bDr -yfu -hjE -dbc +sCP +sKU +sRx ylo +clY +clY +ien +ien +cpy +ien +cpy +ien +ien +tjg +nKj nKj -dGK -qpc she -egj -ylo -spo -vXc -vXc -vXc -vXc +she +jnr +yiM +uiK +uur yiM yiM +uiK +uur +yiM taj nJv cfd vIy vIy -oTp -knT -sEa -nky nJv +nJv +sEa +xZS +vDV rZg -mwC +xZS kIs -bbi +nJv nJv gpB ofi @@ -57851,7 +52576,7 @@ wfP wfP eYM sRM -hTe +pxG hTe eYM cpy @@ -57873,50 +52598,29 @@ saC saC saC saC -uIW -uIW -hTh -uPc -dUS -saQ +saC +saC +bJE +lhD +bXq +xmT tiQ -mTd -mTd -tJk -saQ +xrF +saC +hAk +xmT tiQ saC saC saC saC -kkc -kkc -kkc -uIW -uIW -uIW -uIW -uIW -fop -fop -xmT -tKb -jRZ -xuU -hAk -kyb -hkT -bzC -bzC -bzC -xpg -eqE -xmj -mWc -uWO -uWO -lfS -xXV +saC +saC +saC +saC +saC +saC +saC xXV xXV xXV @@ -57925,27 +52629,27 @@ xXV xXV xXV xXV +saC +saC +tiQ +tiQ +tiQ +vtc +fFA +gat +jXT +uWO +orE +uWO +uWO +bBB +nFO +uWO uWO -iTW -cPi uWO -xXV -xXV -xXV uWO uWO -vtc -vtc -vtc uWO -prT -sRA -tTr -pUR -uiK -uiK -uiK -uiK ruH goY goY @@ -57956,10 +52660,10 @@ goY goY goY rsF -sRA -sRA -sRA -clY +wbt +wbt +wbt +haY sjY clY clY @@ -57981,35 +52685,35 @@ hJZ hJZ hJZ hJZ -hJZ -hJZ -slO -hJZ -uwb ylo ylo cOA sOm jUk -cOA -jUk -jUk -hYf -sIS -yfu -bOX -xoj +sDf +sLZ ylo ylo -gFy +sIS +sIS +ien +ien +ien +ien +ien +xoj +xoj +ien +tso +hsz hsz jnr -ylo -ylo -spo -vXc -vXc -vXc +yiM +yiM +yiM +yiM +yiM +yiM yiM yiM yiM @@ -58017,14 +52721,14 @@ fXx nJv nJv lHu -pwT +xdD fSv -wbj +nJv rIn -wOo +xdD ooh -qOa -vIy +vJu +rwM pCT jYy xvQ @@ -58079,7 +52783,7 @@ nxF eYM sRM hTe -hTe +ixL eYM cpy cpy @@ -58099,94 +52803,73 @@ saC saC saC saC -uIW -uIW -uIW -doC -uPc -uPc -uPc -kmd -eow -mTd -uPc -uPc -kmd -uPc +xuU +xuU +xuU +bJN +lhD +lhD +lhD +loD +cfg +xrF +lhD +lhD +loD +lhD saC saC saC saC saC -gFG -fzL -fzL -fzL -fzL -fop -fop -fop -xmT -jqz -fTS -xeG -xZw -kxm -hkT -fTS -bzC -xpg -xpg -mGH -xmj -mWc -aNw -uWO -bdX -bIJ -bIJ -qmD -qmD -abV -ugu -abV -qmD -qmD -uWO -uWO -uWO +saC +saC +saC +xXV +xXV +xXV +xXV +xXV +xXV +xXV +xXV +xXV +xXV +saC +saC +saC +tiQ +vtc +vtc +fFE +gat +jXT uWO -ilK -bIJ -bIJ uWO uWO -vtc -vtc -vtc uWO -sRA -sRA -uiK -uiK +kRf +lhb +lhb +ckK hKE hKE jsM -uiK +uWO hRu -uiK -uiK +uWO +uWO nCt -uiK -uiK +uWO +uWO tTr hKE hKE viA -sRA -sRA -sRA -sjY +wbt +wbt +wbt +haY sjY clY clY @@ -58209,33 +52892,33 @@ hJZ hJZ hJZ hJZ -hJZ -slO -hJZ -jqF -oOS -ylo -ylo -ylo -ylo -ylo -ylo -ylo -smR -wbi -smR -ylo -dbc -ylo -ylo ylo ylo +svW +sBH +svW ylo ylo -rMF -sql +hJZ +hJZ +hJZ +hJZ +hJZ +clY +clY +clY +clY +ien +umf vXc vXc +vXc +yiM +yiM +ien +ien +yiM +yiM yiM yiM yiM @@ -58243,15 +52926,15 @@ yiM fCU kvq izp -qWf -icy -wdj -wdj +xdD +xdD wdj -pCU +viH +vpa +xdD +rwM +rwM rwM -qOa -vIy eXU lKu xvQ @@ -58325,95 +53008,74 @@ saC saC saC saC -uIW -uIW -uIW -uIW -hTh -vAi -vAi -vAi -vAi -vAi -vAi -vAi -vAi -vAi -fTO -uIW +xuU +xuU +xuU +xuU +bJE +ylC +ylC +ylC +ylC +ylC +ylC +ylC +ylC +ylC +lgf +xuU saC saC saC saC saC -uIW -uIW -uIW -uIW -fop -fop -fop -xmT -fop -fTS -xeG -xZw -xrA -kOE -lgf -bzC -xpg -pPC -eqE -xmj -mWc -uWO +xXV +xXV +xXV +xXV +xXV +xXV +xXV +xXV +xXV +xXV +xXV +xXV +xXV +saC +saC +tiQ +vtc +fkB +fFA +gat +jXT uWO -bdX -bIJ -eaE -eaE -eaE -eaE -eaE -eaE -eaE -eaE -ilK uWO -aNw -iTW uWO uWO -bIJ +kSR +lBE +lBE +oOD uWO uWO uWO -vtc -vtc uWO -uiK -sRA -uiK -uiK -uiK -uiK -uiK -uiK hRu -uiK -uiK -uiK -uiK +uWO +uWO +uWO +uWO orE -uiK -uiK -uiK +uWO +uWO +uWO hRu -uiK -sRA -sRA -sjY +uWO +wbt +wbt +haY clY clY clY @@ -58436,33 +53098,33 @@ clY mwX mwX mwX +sMA +hJZ hJZ slO hJZ hJZ -jqF -qFE -tbJ +ssh thI -xyN -xyN -xyN -lwv -xyN -cnN -xyN -xyN -kXc -lwv -xyN -xyN -xyN -xyN -xyN -sql +hJZ +hJZ +hJZ +hJZ +clY +clY +clY +clY +ien +umf +vXc vXc yiM yiM +ien +ien +ien +yiM +yiM yiM yiM yiM @@ -58472,14 +53134,14 @@ xvQ sXM ukp xdD -oPc +xdD nEY -sQD -flC -nJv +vsj +xZS +vEw xZS rbc -vIy +vKP pXk xvQ hpq @@ -58551,98 +53213,77 @@ saC saC saC saC -uIW -uIW -uIW -uIW -uIW -hTh -uPc -mTd -mTd -mTd -vAi -vAi -mTd -mTd -mTd -uPc -uIW -mTd -giF -saC +xuU +xuU +xuU +xuU +xuU +bJE +lhD +xrF +xrF +xrF +ylC +ylC +xrF +xrF +xrF +lhD +xuU +xrF +xrF saC saC +xXV +xXV +xXV +xXV +xXV +xXV +xXV +xXV +xXV +xXV +xXV +xXV +xXV +xXV saC saC -uIW -fop -fop -fop -fop -chm -fop -fTS -xeG -xZw -xrF -fTS -fTS -bzC -xpg -xpg -sDS -xmj -mWc +tiQ +vtc +vtc +auG +gat +jXT uWO uWO -bdX -hzM -eaE -fXS -fXS uWO -fXS -fXS -fXS -hNZ -fXS -fXS uWO +kTn +fiB +cwN +cJm uWO uWO uWO uWO +hRu +pit uWO uWO uWO uWO -vtc -vtc -sRA -sRA -rWS -uiK -uiK -uiK -uiK -uiK -hRu -rGi -uiK -uiK -uiK -uiK -uiK -uiK -sRA +uWO +uWO +wbt rtr goY -wbt -wov -wov -wov -yhK +cqW +ien +ien +ien +fDr yhK qKq yhK @@ -58664,31 +53305,31 @@ wBA wBA wBA vFH -lyg -wBA -vEf wBA wBA osd -tBC -rwE -rwE -rwE -rwE -rwE -hWI -yiM -kXc -kXc -kXc -vXc -vXc -vXc -umf +hJZ +hJZ +tbJ +thI +hJZ +hJZ +hJZ +hJZ +hJZ +clY +clY +ien +ien +ien umf vXc yiM yiM +ien +ien +yiM +yiM yiM yiM yiM @@ -58700,7 +53341,7 @@ xVd kfi ebR jkL -xzj +nJv pWW qLa nJv @@ -58778,98 +53419,77 @@ saC saC saC saC -uIW -uIW -uIW -uIW -uIW -hTh -uPc -uPc -uPc -uPc -vAi -vAi -uPc -uPc -uPc -uPc -uIW -mTd -dWT -dWT -vAi -saC +xuU +xuU +xuU +xuU +xuU +bJE +lhD +lhD +lhD +lhD +ylC +ylC +lhD +lhD +lhD +lhD +xuU +xrF +ylC +ylC +ylC +xXV +xXV +xXV +xXV +xXV +xXV +xXV saC saC saC +xXV +xXV +xXV +xXV saC -fop -fop -fop -chm -chm -hLT -xeG -xZw -xrA -fTS -bzC -bzC -bzC -xpg -eqE -xmj -mWc -uWO +tiQ +tiQ +tiQ +vtc +fFA +gat +jXT uWO -bdX -hzM -enS -fXS -dmG -dQs -gFp -eaE -eaE -eaE -eaE -fXS uWO uWO uWO +kUJ +mDw +cqe +iOt +wbt uWO uWO uWO +hRu uWO uWO uWO uWO -vtc -bBB -nFO -uiK -uiK -sRA -uiK -uiK -uiK -hRu -uiK -uiK -uiK -uiK keb -uiK -sRA +uWO +wbt kor vae -uiK -uiK -sRA -clY -clY +uWO +hRu +wbt +haY clY +wvP xGc lvb hJZ @@ -58889,7 +53509,7 @@ xVz xVz gsS hJZ -gHz +nLF ydA ydA ydA @@ -58899,17 +53519,14 @@ ydA tbJ uIr jPv -yiM -yiM -yiM -yiM -yiM -yiM -yiM -kXc -vXc -vXc -vXc +hJZ +hJZ +hJZ +hJZ +hJZ +hJZ +hJZ +ien vXc vXc vXc @@ -58921,8 +53538,11 @@ yiM yiM yiM yiM -fXx -gbB +yiM +yiM +yiM +pUv +rVa nJv xvQ gcX @@ -58935,7 +53555,7 @@ xvQ xvQ xvQ nJv -kmq +wjP xVV max max @@ -59006,97 +53626,76 @@ saC saC saC saC -uIW -uIW -uIW -uIW -hTh -uPc -mTd -mTd -mTd -vAi -vAi -mTd -mTd -mTd -uPc -uIW -mTd -vAi -dWT -vAi -vAi +xuU +xuU +xuU +xuU +bJE +lhD +xrF +xrF +xrF +ylC +ylC +xrF +xrF +xrF +lhD +xuU +xrF +ylC +ylC +ylC +ylC +xXV +xXV +xXV +xXV +xXV saC saC saC saC saC -fop -chm -chm -chm +xXV +xXV +xXV +saC saC -kih -uQI -pLj -kOJ -lhD -bzC -xpg -xpg -eqE -hQh -mWc +tiQ +vtc +vtc +fFA +gbQ +jXT uWO uWO -bdX -hzM -eaE -cyl -doj -eaE -gSw -eaE -nTO -gge -eaE -fXS -ilK uWO uWO +nro +irF +wbt +wbt +wbt +wbt uWO uWO -mWc +hRu uWO -vtc uWO uWO uWO -kRf -lhb -lhb -ckK -sRA -sRA -uiK -uiK -hRu -uiK -uiK -uiK -uiK nCt -sRA -asn -sRA +wbt +cpy +wbt iWo -uiK -uiK -uiK -wKj -clY -clY +uWO +rtr +goY +yjs +yhK +ldM hJZ slO xVz @@ -59115,8 +53714,8 @@ hJZ hJZ clY clY -gHz -gKO +nLF +jyf nLm nLm nLm @@ -59125,18 +53724,16 @@ lmI nLm nLm nLm -rMF +oOS jPv -yiM -yiM -yiM -yiM -yiM -yiM -kXc -vXc -vXc -vXc +hJZ +hJZ +hJZ +hJZ +hJZ +hJZ +ien +umf vXc vXc vXc @@ -59149,6 +53746,8 @@ yiM yiM yiM yiM +yiM +yiM pUv xyN xyN @@ -59232,96 +53831,75 @@ saC saC saC saC -uIW -uIW -uIW -uIW -uIW -hTh -vAi -vAi -vAi -vAi -fTO -vAi -iMx -vAi -bXq -fvo -fFS -mTd -vAi -vAi -bXq -vAi -mTd -uIW +xuU +xuU +xuU +xuU +xuU +bJE +ylC +ylC +ylC +ylC +lgf +ylC +jsD +ylC +ncS +cAp +cCQ +xrF +ylC +ylC +ncS +ylC +xrF +xuU +xXV +xXV +saC saC saC saC -chm -chm -chm tiQ saC -kiD -jsD -tCh -kOQ -lhD -bzC -xpg -pPt -sDS -ncS -sGt +xXV +xXV +xXV +saC +saC +tiQ +vtc +iTW +auG +nkv +goK uWO uWO -bdX -hzM -eaE -cFv -fsQ -dTs -eaE -eaE -gbH -hPd -eaE -fXS -eaE +orE uWO uWO -iTW +wbt +wbt +wbt +rWS +wbt +wbt uWO -mWc -vtc -vtc -vtc +hRu uWO uWO -kSR -lBE -lBE -oOD -rWS -sRA -sRA -uiK -hRu -uiK -uiK orE -sRA -sRA -sRA -uiK -uiK +wbt +wbt +wbt +uWO +uWO viN -rGi -uiK -uiK -hJZ +pit +uWO +uWO +haY clY hJZ hJZ @@ -59342,7 +53920,7 @@ clY clY clY clY -oNQ +miW nLm nLm bwy @@ -59353,17 +53931,16 @@ fEW jOr nLm nLm -spo -yiM -yiM -yiM -yiM -yiM -kXc -kXc -kXc -vXc -vXc +rvI +hJZ +hJZ +hJZ +hJZ +hJZ +ien +ien +ien +umf vXc vXc yiM @@ -59376,6 +53953,7 @@ yiM yiM yiM yiM +yiM dwd qQi qQi @@ -59458,95 +54036,74 @@ saC saC saC saC -uIW -uIW -uIW -uIW -iJA -uIW -hTh -uPc -mTd -mTd -mTd -eoZ -vAi -mTd -mTd -mTd -uPc -gmt -mTd -vAi -vAi -vAi -vAi -mTd -uIW -uIW -saC +xuU +xuU +xuU +xuU +smK +xuU +bJE +lhD +xrF +xrF +xrF +cfv +ylC +xrF +xrF +xrF +lhD +lqb +xrF +ylC +ylC +ylC +ylC +xrF +xuU +xuU +xXV +xXV saC saC -chm saC tiQ saC -oJS -oJS -tCh -isu -lhD -bzC -xpg -xpg -rJI -ncS -sGt -uWO -uWO -bdX -iGK -eaE -cYF -gge -jsQ +xXV +xXV +xXV +saC +saC +tiQ +vtc +vtc +iod +nkv +bzW +goY +goY +goY +goY +goY +kbg +kbg +kbg +sux +bwW +kbg +kbg +rvh uWO -cWf -gwt -eaE -eaE -fXS -eaE uWO +rWS +wbt +wbt uWO uWO -gcY -nkv uWO -vtc -vtc uWO uWO -kTn -fiB -cwN -cJm -rWS -rWS -kQW wbt -rvh -uiK -uiK -rWS -asn -sRA -uiK -uiK -asn -uiK -uiK -sRA ien ien ien @@ -59556,20 +54113,20 @@ slO hJZ hJZ hJZ -gHz +nLF ydA ydA wMe ydA hAE -hiK +jPv sjY clY clY clY clY sjY -oNQ +miW nLm nWK jfZ @@ -59580,21 +54137,22 @@ tHJ jfZ ftA nLm -spo -yiM -yiM -yiM -yiM -yiM -wdy -kXc +rvI +hJZ +hJZ +hJZ +hJZ +hJZ +nLF +ien iPR iPR iPR iPR -jPv -vXc -vXc +tEY +yiM +yiM +yiM yiM yiM yiM @@ -59604,9 +54162,8 @@ rwE rwE rwE rwE -rwE -rwE -rwE +rXb +rXb rXb rXb pnE @@ -59685,32 +54242,32 @@ saC saC saC saC -uIW -uIW -uIW -uIW -uIW -uIW -hTh -uPc -uPc -uPc -uPc -epb -vAi -uPc -uPc -uPc -uPc -gmt -mTd -mTd -mTd -mTd -mTd -mTd -uIW -uIW +xuU +xuU +xuU +xuU +xuU +xuU +bJE +lhD +lhD +lhD +lhD +cil +ylC +lhD +lhD +lhD +lhD +lqb +xrF +xrF +xrF +xrF +xrF +xrF +xuU +xuU saC saC saC @@ -59718,61 +54275,40 @@ saC saC tiQ tiQ -oJS -oJS -oJS -oJS -bzC -bzC -bzC -xpg -rJI -bkE -sGt -uWO -oTX -bdX -iGK -eaE -fXS -doF -gFp -uWO -fkB -uWO -eaE -eaE -fXS -eaE -eaE -uWO -uWO +xXV +xXV +xXV +saC +tiQ +tiQ +tiQ +vtc iod +gcn +boy +orE uWO uWO -uWO -vtc +ien uWO uWO -kUJ -mDw -cqe +wbt +wbt +wbt +jOG +wbt ien -sRA -sRA -kXo -sRA rWS -asn +rWS ien -asn -asn +rWS +rWS ien -asn -uiK +wbt +uWO ien -uiK -uiK +uWO +uWO ien ien ien @@ -59782,7 +54318,7 @@ hJZ slO hJZ hJZ -gHz +nLF oOS nLm pMd @@ -59790,13 +54326,13 @@ qEU pMd nLm oOS -hiK +jPv sjY clY clY sjY sjY -oNQ +miW tgn vJT uOs @@ -59807,35 +54343,35 @@ tUM uOs kcS tgn -spo -yiM -yiM -yiM -yiM -wdy -gbB +rvI +hJZ +hJZ +hJZ +hJZ +nLF +jyf nLm pMd pMd pMd nLm rMF -jPv -vXc -vXc -yiM +tEY yiM yiM -wsY yiM yiM yiM +pWR +uMP yiM yiM yiM vXc vXc -wdy +vXc +vXc +iPR iPR iPR iPR @@ -59911,32 +54447,32 @@ saC saC saC saC -uIW -uIW -uIW -uIW -uIW -uIW -uIW -doC -uPc -mTd -mTd -mTd -vAi -vAi -mTd -mTd -mTd -uPc -gmt -uIW -gjm -uIW -uIW -uIW -uIW -uIW +xuU +xuU +xuU +xuU +xuU +xuU +xuU +bJN +lhD +xrF +xrF +xrF +ylC +ylC +xrF +xrF +xrF +lhD +lqb +xuU +cKC +xuU +xuU +xuU +xuU +xuU saC saC saC @@ -59945,49 +54481,28 @@ saC tiQ tiQ tiQ -oJS -oJS -oJS -oJS -bzC -bzC -xpg -xpg -rLB -bkE -wEz -uWO -uWO -bdX -iGK -eaE -fXS -doF -eaE -gSw -gFp -eaE -gIv -eaE -img -eaE -eaE -uWO -uWO +xXV +xXV +xXV +xXV +tiQ +tiQ +vtc +vtc ioA +gcn +gqg uWO uWO -uWO -uWO -uWO -uWO -ien ien ien ien +hUY +hUY +hUY +hUY +tUa ien -clY -eUt ien ien ien @@ -60008,7 +54523,7 @@ hJZ hJZ slO hJZ -gHz +nLF oOS nLm nLm @@ -60034,12 +54549,12 @@ fjP uOs avp kwo -rMF -iPR -iPR -iPR -iPR -rMF +oOS +ydA +ydA +ydA +ydA +oOS nLm nLm fmH @@ -60048,19 +54563,19 @@ qnY nLm nLm rVa -jPv -vXc -vXc -vXc +tEY yiM -wsY yiM yiM yiM +wsY +yiM yiM yiM vXc vXc +vXc +vXc wdy rMF mBF @@ -60137,85 +54652,64 @@ saC saC saC saC -uIW -uIW -uIW -uIW -uIW -uIW -uIW -uIW -hTh -vAi -vAi -vAi -vAi -vAi -vAi -vAi -fTO -vAi -fwj -fGh -fTs -fTs -fTs -fTs -fTs -fTs -eLV +xuU +xuU +xuU +xuU +xuU +xuU +xuU +xuU +bJE +ylC +ylC +ylC +ylC +ylC +ylC +ylC +lgf +ylC +cAy +cDh +pRT +pRT +pRT +pRT +pRT +pRT +xZL saC saC saC saC saC tiQ -jqz +egV tiQ -isu -oJS -oJS -oJS -bzC -bzC -bzC -xpg -rJI -bkE -mWc -uWO +gFp +xXV +xXV +xXV +tiQ +tiQ +tiQ +vtc +iod +gcn +gsZ uWO -bdX -hzM -enS -fXS -dqr -eaE -egV -eaE -eaE -gJm -eaE -fXS -eaE -eaE -aNw -kQS uWO uWO +ien uWO uWO uWO -ien -ien -ien -sjY -hJZ -ien -clY +wbt +wbt +jOG clY -rnG -kYm +ien hJZ hJZ ien @@ -60234,8 +54728,8 @@ hJZ hJZ hJZ slO -gHz -gKO +nLF +jyf nLm nLm pOA @@ -60276,19 +54770,19 @@ wEQ nLm nLm rMF -jPv -vXc -vXc +tEY +yiM +yiM umf xTV umf yiM -yiM -yiM +vXc +vXc vXc vXc wdy -gbB +rVa mBF mBF mBF @@ -60363,86 +54857,65 @@ tiQ saC saC saC -uIW -uIW -uIW -uIW -uIW -uIW -uIW -uIW -uIW -hTh -uPc -uPc -uPc -kmd -mTd -mTd -uPc -uPc -kmd -uPc -nDz -uIW -uIW -uIW -uIW -uIW -uIW -eLV -eLV +xuU +xuU +xuU +xuU +xuU +xuU +xuU +xuU +xuU +bJE +lhD +lhD +lhD +loD +xrF +xrF +lhD +lhD +loD +lhD +cDo +xuU +xuU +xuU +xuU +xuU +xuU +xZL +xZL saC saC saC saC tiQ -xZL -jSR -pyo -xuU -oJS -oJS -oJS -bzC -xpg -xpg -eqE -ncS -mWc -uWO -uWO -bdX -hzM -eaE -cZM -dBC -dTv -eaE +dwG jsQ -eaE -heB -eaE -nZF -nZF -nZF -nZF +doF +pwA +xXV +xXV +saC +tiQ +vtc +vtc +fFA +nkv +gsZ uWO uWO uWO +ien uWO uWO uWO uWO -ien -hmz -nfU -hJZ -vne -clY -clY -clY -slO +wbt +rnG +yhK +kYm hJZ hJZ hJZ @@ -60458,10 +54931,10 @@ ydA ydA ydA ydA -hiK +jPv xGk slO -oNQ +miW nLm nLm oAJ @@ -60510,7 +54983,7 @@ vXc wYa vXc vXc -yiM +vXc vXc umf wdy @@ -60590,82 +55063,61 @@ tiQ saC saC saC -uIW -uIW -uIW -uIW -uIW -uIW -uIW -uIW -uIW -hTh -uPc -tKo -naC +xuU +xuU +xuU +xuU +xuU +xuU +xuU +xuU +xuU +bJE +lhD +uLk +mwf tiQ -mTd -mTd -tKo -naC +xrF +xrF +uLk +mwf tiQ -wVf -nDz -uIW -uIW -uIW -eLV -uIW -eLV -eLV -eLV -eLV +lhD +cDo +xuU +xuU +xuU +xZL +xuU +xZL +xZL +xZL +xZL saC saC saC tiQ -jsy -loD -lSs -uLk -mwf -kOU -oJS -bzC -xpg -pPC -sDS -ncS -mWc -uWO -uWO -bdX -iGK -eaE -fXS -eaE -eaE bex -eaE -gFp -eaE +dJJ +enT +enT hZZ iUj -eaE -eaE -eaE +saC +tiQ +vtc +fkB +auG +nkv +gsZ uWO uWO -ilK -vtc +ien +ien +ien uWO uWO uWO -ien -hmM -clY -hJZ -vne clY clY clY @@ -60688,7 +55140,7 @@ foT rvI tPv slO -oNQ +miW nLm oAJ vJT @@ -60735,7 +55187,7 @@ vXc vXc vXc wYa -cpy +vXc vXc vXc vXc @@ -60817,84 +55269,63 @@ tiQ tiQ saC saC -ssn -uIW -iJA -uIW -chm -chm +dxU +xuU +smK +xuU +xZL +xZL saC -uIW -uIW -hTh +xuU +xuU +bJE tiQ tiQ tiQ tiQ -mTd -mTd +xrF +xrF tiQ tiQ tiQ tiQ -dgI -dxU -dxU -smK -eLV -eLV -eLV -eLV -eLV -eLV +cEw +xuU +xuU +xuU +xZL +xZL +xZL +xZL +xZL +xZL saC saC tiQ tiQ -isu -iWZ -xZw -xZw -xrA -fTS -oJS -bzC -xpg -xpg -eqE -xmj -mWc -uWO -uWO -bdX -hzM -eaE -liD -eaE -dYK gFp -eaE -eaE -eaE -hUZ -fXS -enS -eaE -eaE -uWO -uWO -vtc +dJN +yaw +yaw +oXk +wBR +saC +tiQ vtc vtc +fFA +gat +gsZ +uWO pit +uWO ien -ien -ien -hAs +uWO +uWO +uWO +uWO hJZ -vne clY -hJZ clY slO hJZ @@ -60915,7 +55346,7 @@ jrQ rvI tPv slO -oNQ +miW pMd vRh fjP @@ -60962,11 +55393,11 @@ vXc vXc jue wYa -cpy -cpy +vXc +ien +vXc vXc vXc -yiM fXx rMF vVs @@ -61043,86 +55474,65 @@ cpy cpy tiQ saC -dWT -bIY -dwG +ylC +iJA dxU -chm -chm +xuU +xZL +xZL saC saC saC -uIW -hTh -wTv -tJk -saQ +xuU +bJE +lhD +hAk +xmT tiQ -mTd -mTd -tJk -rUX +xrF +xrF +hAk +cvP tiQ -fwo -nDz -uIW -uIW -eLV -eLV -eLV -uIW -uIW -eLV -eLV +cBi +cDo +xuU +xuU +xZL +xZL +xZL +xuU +xuU +xZL +xZL saC saC tiQ -xZL -pyo -iWZ -xZw -xZw -xrA -ldi -bzC -bzC -bzC -xpg -eqE -xmj -mWc -oTX -uWO -bdX -hzM -eaE -fXS -eaE -eaE +dwG doF -eaE -eaE -bex -eaE +dJN +yaw +yaw +oXk iso -eaE -jvf -eaE +tiQ +tiQ +tiQ +vtc +fFA +gat +gsZ uWO uWO -vtc -vtc -vtc +uWO +jVa +uWO uWO uWO -ien -prZ -pza -hJZ -vne hJZ hJZ clY +clY eUt hJZ hJZ @@ -61134,7 +55544,7 @@ xkO lUh clY clY -oNQ +miW gpp xRE tGy @@ -61142,7 +55552,7 @@ bdj rvI tPv slO -oNQ +miW pMd fcv xEB @@ -61188,12 +55598,12 @@ spo vXc vXc upz -tDd -wLh -cpy -yiM -yiM -yiM +wYa +ien +ien +ien +vXc +vXc fXx rMF vVs @@ -61270,86 +55680,65 @@ cpy cpy tiQ tiQ -dWT -vAi -bco -uIW -chm +ylC +ylC +asH +xuU +xZL saC saC saC saC -uIW -hTh -wTv -uPc -uPc -kmd -mTd -mTd -uPc -saC -saC -uPc -nDz -uIW -uIW -uIW -eLV -uIW -uIW -uIW -hTh -eLV -eLV -tiQ -tiQ -hhu +xuU +bJE +lhD +lhD +lhD loD -uEl -xZw -xZw xrF -kPG -lgf -bzC -xpg -xpg -eqE -xmj -mWc +xrF +lhD +saC +saC +lhD +cDo +xuU +xuU +xuU +xZL +xuU +xuU +xuU +bJE +xZL +xZL +tiQ +tiQ +gFp +dJJ +hfS +yaw +yaw +eoZ +iEq +eJw +tiQ +vtc +vtc +fFA +gat +gsZ uWO uWO -bdX -hzM -eaE -fXS -gSw -eaE -eaE -fvx -eaE -eaE -eaE -iEq -eaE -jFr -eaE uWO +jVa uWO -oTX -vtc -vtc uWO uWO -ien -qzy -eyM -gfi -vne hJZ hJZ clY +clY eUt clY hJZ @@ -61361,7 +55750,7 @@ sek qma clY hJZ -oNQ +miW vWJ isc ykR @@ -61387,14 +55776,14 @@ mZE mZE gSJ gSJ -nLm -nLm +ien +ien jFC trj uOs qsQ -nLm -nLm +ien +ien pTj drM vKA @@ -61415,12 +55804,12 @@ spo vXc vXc vXc -wth -wYa -yiM -yiM -yiM -yiM +sSv +vXc +ien +vXc +vXc +vXc fXx mBF mBF @@ -61482,7 +55871,7 @@ eYM jJF gXb jJF -jJF +sza eYM eYM cpy @@ -61498,83 +55887,62 @@ cpy cpy tiQ tiQ -vAi -bcP -ssn -uIW +ylC +iJA +dxU +xuU saC saC saC -chm -kkc -mjq -dWE -dWE -fTs -fTs -fTs -fTs -fTs -fTs -bSM -fTs -fGH -uIW -uIW -uIW -dxU -uIW -uIW -dnQ -fGJ -vAi +xZL +xuU +bKb +pRT +pRT +pRT +pRT +pRT +pRT +pRT +pRT +pRT +pRT +cEx +xuU +xuU +xuU +xuU +xuU +xuU +tfP +rTh +ylC tiQ tiQ -kgC -gCV -kfu -xZw -xZw -kQw -pRT -kQK -fTS -bzC -xpg -pPt -sDS -xmj -mWc -uWO +dJt +doF +dJN +yaw +yaw +hoN +epb +iPb +wBR +tiQ +vtc +iTW +auG +gat +gsZ uWO -bdX uWO uWO -iTW -eaE -eaE -eaE -eaE -eaE -eaE -eaE -iPb -eaE -jFG -eaE +jVa uWO -iTW uWO -aNw -vtc uWO -ien -ien -ien -pzo -hJZ -vne hJZ +clY qNh clY rnG @@ -61614,14 +55982,14 @@ nLm nLm nLm nLm -nLm +ien bvP byu gRw xPo qLy sLQ -nLm +ien nLm nLm nLm @@ -61643,11 +56011,11 @@ vXc umf vXc vaZ -wYa -yiM -yiM -yiM -yiM +vXc +ien +vXc +vXc +vXc fXx rMF vVs @@ -61725,82 +56093,60 @@ cpy cpy cpy tiQ -dWT -vAi -bcP -ssn -uIW -saC -chm -chm -chm -kkc -kkc -uIW -uIW -uIW -uIW -uIW -uIW -uIW -dxU -uIW -gmt -uIW -uIW +ylC +ylC iJA dxU -uIW -dnQ -fGJ -vAi -vAi -tiQ -fDS -gCV -gPQ -hry -kfF -kfF -xrA -kPG -lER -nCX -bzC -nDM -nDM -jII -aFA -ylm -tfP -tfP -tfP -tfP -bIe -tfP -tfP -eaE -eaE -eaE -tfP -jsQ -eaE -fXS -eaE -tfP -eaE -tfP -tfP -oeX -tfP -tfP -tfP +xuU +saC +xZL +xZL +xZL +xuU +xuU +xuU +xuU +xuU +xuU +xuU +xuU +xuU +xuU +xuU +lqb +xuU +xuU +smK +xuU +xuU tfP -ien -hJZ -hJZ +rTh +ylC +ylC +tiQ +dDF +doF +dJJ +hfS +yaw +yaw +oXk +iEq +eym +eJZ +tiQ +vtc +vtc +iod +gat +gsZ +uWO +uWO +uWO +jVa +uWO +uWO gHz -vne ydA ydA ydA @@ -61813,7 +56159,8 @@ ydA ydA ydA ydA -hiK +ydA +jPv hJZ hJZ clY @@ -61823,7 +56170,7 @@ wBA wBA wBA ldM -oNQ +miW nLm fcv aII @@ -61869,12 +56216,12 @@ spo vXc umf vXc -vXc wYa -umf -yiM -yiM -yiM +ien +ien +ien +vXc +vXc fXx rMF vVs @@ -61953,79 +56300,58 @@ cpy cpy tiQ tiQ -vAi -vAi -bcP -ssn -chm -chm -chm -chm -kkc -kkc -uIW -uIW -uIW +ylC +ylC +iJA +dxU +xZL +xZL +xZL +xZL +xuU +xuU +xuU +xuU +xuU saC saC -kkc -kkc -kkc -uIW -gmt -uIW -uIW -uIW -dxU -dnQ -fGJ -vAi -vAi -tiQ -tiQ -isu -gPQ -hry -kfF -kfF -saC -xrA -rAL -bzC -bzC -bzC -bzC -nDM -jII -aFA -ylm +xuU +xuU +xuU +xuU +lqb +xuU +xuU +xuU +xuU tfP +rTh ylC -qyG -qyG -qyG -qyG -qyG -hfS -hfS -hfS -hfS -hPO -hWV -jjg -hfS -hfS +ylC +tiQ +tiQ +gFp +dJJ hfS -qyG -qyG -qyG -qyG -gMc -tfP -uSY -ien -pAp -hJZ +yaw +yaw +saC +oXk +ihy +tiQ +tiQ +tiQ +tiQ +vtc +iod +gat +gsZ +uWO +uWO +uWO +jVa +uWO +uWO oNQ xtb xtb @@ -62050,7 +56376,7 @@ hJZ hJZ clY clY -oNQ +miW nLm qZh eJm @@ -62096,12 +56422,12 @@ spo vXc vXc vXc -xLU -pnE +wYa +vXc +ien +vXc +vXc vXc -umf -yiM -yiM fXx mBF mBF @@ -62154,7 +56480,7 @@ ofi gMQ veQ veQ -fnA +xkJ bPJ bPJ bPJ @@ -62181,78 +56507,57 @@ cpy cpy tiQ tiQ -vAi -vAi -bcP -fzL -chm -chm -chm -chm -kkc -dxU -dxU -saC -saC -uIW -uIW -dxU -uIW -uIW -gmt -uIW -uIW -dnQ -dMu -fGJ -vAi -vAi -uPc -tiQ +ylC +ylC +iJA +mKQ xZL -pyo -iWZ -xZw -kfF +xZL +xZL +xZL +xuU +xuU +xuU saC saC -xrA -lrG -rUl -aCR -lqb -lqb +xuU +xuU +xuU +xuU +xuU lqb -lUK -aFA -ylm -tfP -yim -bou -bcf -tfP -tfP -tfP -eaE -erw -eaE -eaE -eaE -hZZ -nZF -nZF -nZF -nZF -tfP -tfP -tfP -tfP -yim +xuU +xuU tfP -ien -ien -ien -pAp +mKQ +rTh +ylC +ylC +lhD +tiQ +dwG +doF +dJN +yaw +yaw +saC +saC +oXk +ijv +eyM +iTX +ePK +ePK +ePK +auG +gat +gsZ +uWO +uWO +uWO +jVa +uWO +uWO oNQ xtb qtE @@ -62292,8 +56597,8 @@ oJQ nLm nLm oJQ -nLm -nLm +ien +ien oJQ nLm nLm @@ -62304,8 +56609,8 @@ bNA nLm nLm jHy -nLm -nLm +ien +ien sKH nLm nLm @@ -62328,7 +56633,7 @@ vXc vXc vXc vXc -yiM +vXc fXx rMF mBF @@ -62360,7 +56665,7 @@ max max max max -ofi +max seX szo szo @@ -62381,7 +56686,7 @@ ofi ofi ofi ofi -osN +oAY bPJ xVH kEl @@ -62406,80 +56711,59 @@ cpy cpy cpy cpy -cpy -tiQ -vAi -bXq -vAi -vAi -chm -chm -saC -chm -uIW -uIW -uIW -uIW -uIW -uIW -eAg -cyO -eOn -eOn -fsf -uIW -dnQ -fGJ saC -tiQ -fIQ -pEw -pEw -tiQ -isu -xuU -iYs -xZw -rEV saC saC +ncS +ylC +ylC +xZL +xZL +saC +xZL +xuU +xuU +xuU +xuU +xuU +xuU bKk -hAk kQR -fTS -aCR -sWn -nbT -lUK -aFA -ylm -tfP -yim -tfP -tfP -tfP +kQR +kQR +cEM +xuU tfP -eaE -eaE +rTh +saC +tiQ +cVm +rOf +rOf +tiQ +gFp +heB +dKF +yaw eDt -bex -eaE -eaE -eaE -fXS -eaE -eaE -tfP -tfP -eFT -bcf -tfP -yim -tfP -tfP -ien -cwE -hJZ +saC +saC +tTl +wAB +ezp +wBR +iTX +eZq +fmv +auG +gat +gsZ +uWO +uWO +uWO +jVa +uWO +wbt oNQ xyL qxi @@ -62588,14 +56872,14 @@ max max max max +max +max ofi ofi ofi ofi ofi ofi -max -max ofi ofi max @@ -62608,7 +56892,7 @@ ofi ofi ofi ofi -osN +oAY aQH qaT eSW @@ -62633,80 +56917,59 @@ cpy cpy cpy cpy -cpy -tiQ -vAi -vAi -uPc -vAi -vAi saC saC -chm -uIW -uIW -uIW -uIW -uIW -uIW -gmt -kkc -kkc -iJA -dnQ -fzL -fGJ +saC +saC +lhD +ylC +ylC +saC +saC +xZL +xuU +xuU +xuU +xuU +xuU +xuU +lqb +xuU +xuU +smK +tfP +mKQ +rTh saC saC tiQ -fUT -uFG -nbD +cVy +sbm +dgq tiQ -hlp -xeG -iYy -xZw +dwI +uFT +dYK +yaw saC saC saC saC -xZw -kRa -hAk -kyb -lrh -ddy -lUK -aFA -ylm -tfP -yim -tfP -tfP -tfP -tfP -eaE -eaE -eDt -fFA -gzu -eaE -gFp -fXS -jqa -enS -tfP -tfP -tfP -tfP -tfP -yim -tfP -tfP -ien -clY -clY +yaw +ezU +wAB +eQf +geP +fol +auG +gat +gsZ +uWO +uWO +uWO +jVa +wbt +wbt dRK xtb bQl @@ -62719,11 +56982,11 @@ bQl xtb xWF uEC -pVx +vSO xqd -pVx -pVx -pVx +vSO +vSO +vSO xtb xWf imJ @@ -62815,14 +57078,14 @@ max ofi max max +max +ofi +ofi ofi ofi ofi ofi ofi -max -max -max ofi max max @@ -62835,7 +57098,7 @@ ofi ofi tZh ofi -osN +oAY bPJ fYD orA @@ -62861,79 +57124,58 @@ cpy cpy cpy cpy -tiQ -vAi -vAi -vAi -vAi -vAi saC saC +ylC +ylC +ylC +ylC saC -fzL -fzL -fzL -ssn -uIW -uIW -eQf -gFG -gFG -gFG -uZf +saC +saC +iJA +mKQ +mKQ +dxU +xuU +xuU +cqr +mKQ +mKQ +mKQ +rTh saC saC saC tiQ tiQ -pEw -pEw -hOI +rOf +rOf +bIe tiQ -isu -xeG -iYy -xZw -xZw +gFp +uFT +dYK +yaw +yaw saC saC saC -mKQ -kRp -xWc -rTh -nWl -dgJ -aaX -atV -wOu -qyG -rOf -bIe -tfP -eFT -tfP -dEc -eaE -eFt -eaE -gFp -eaE -eaE -fXS -hUZ -eaE -tfP -tfP -tfP -tfP -pjJ -yim -tfP -ien -ien -ien -clY +dXX +ezW +lEZ +eTZ +wTV +foO +fFS +gdJ +gqG +uWO +uWO +uWO +jVa +wbt +wbt bry pJb xOb @@ -62950,7 +57192,7 @@ xTs xTs uEC uEC -pVx +vSO pJb rZF tYZ @@ -63027,13 +57269,13 @@ max ofi ofi ofi -max ofi ofi ofi +ien ofi max -max +ien max ofi ofi @@ -63046,10 +57288,10 @@ ofi ofi ofi ofi -cpy -cpy -max -max +ofi +ofi +ofi +ofi max max max @@ -63062,7 +57304,7 @@ max ofi tZh ofi -osN +oAY bPJ bPJ bPJ @@ -63088,79 +57330,58 @@ cpy cpy cpy cpy +saC +saC +xZw +xZw +xZw +tiQ tiQ -cNV -vSJ -vSJ -vSJ -cNV -cNV saC saC saC -dWT -dWT -bcP -fzL -fzL -eTZ -dWT -dWT -dWT +ylC +ylC +iJA +mKQ +mKQ +cqP +ylC +ylC +ylC saC saC tiQ tiQ tiQ -hiB -uFG -hDa -uFG -hDy -isu -xeG -iYy -xZw -xZw -mKQ -saC -mKQ -mKQ -uHn -xZw -xrA -lrh -ddy -lUK -aFA xBL -tfP -tfP -tfP -tfP -tfP -bcf -dEM -dZM -liD -fXS -fXS -tfP -fXS -fXS -jtu -gSw -tfP -tfP -tfP -ylm -pjJ -yim -tfP -tfP -ien -clY -clY +sbm +mPe +sbm +vZP +gFp +uFT +dYK +yaw +yaw +dXX +saC +dXX +dXX +xED +yaw +oXk +geP +fol +auG +gat +gsZ +uWO +uWO +uWO +jVa +wbt +wbt jDc uwk fvk @@ -63256,14 +57477,15 @@ ofi ofi ofi ofi +ien +ien +ien +ien +ien +ien max ofi ofi -cpy -cpy -cpy -cpy -tZh ofi ofi ofi @@ -63272,11 +57494,10 @@ ofi ofi ofi ofi -max -cpy -cpy -max -max +ofi +ofi +ofi +ofi max max max @@ -63289,12 +57510,12 @@ max max ofi ofi -gMQ -veQ -cpy -cpy -cpy -cpy +cfO +nPf +ygJ +ygJ +ygJ +ygJ bPJ bPJ qxf @@ -63315,79 +57536,58 @@ cpy cpy cpy cpy +saC +saC +xdF +xdF +xdF +xdF tiQ -xho -xho -xho -xho -xho -cNV saC saC saC tiQ -dWT -bet -sHy -bet -eUs +ylC +ylC +ncS +ylC +crm tiQ tiQ saC saC saC tiQ -gxc -gYs -qml -hpy -wyv -uFG -hDy -isu -xeG -iYy -xZw -xZw -xZw -mKQ -mKQ -xZw -kRw -udR -pRT -lrh -ddy -lUK +cLb rnp -xBL -tfP -tfP -tfP -bIJ -tfP -tfP +kri +cWf +xzn +sbm +vZP +gFp +uFT dYK -eaE -eaE -bex -eaE -tfP -eaE -eaE -eaE -eaE -eFT -tfP -bIJ -ylm -pjJ -yim -tfP -tfP -ien -sjY -clY +yaw +yaw +yaw +dXX +dXX +yaw +eAg +sGF +epb +geP +fol +auG +gbQ +gsZ +uWO +uWO +uWO +jVa +rWS +wbt vWv xtb eAD @@ -63404,7 +57604,7 @@ tWX uEC uEC uEC -pVx +vSO xtb odZ imJ @@ -63481,16 +57681,16 @@ max ofi ofi tZh +ofi max max +ien max max -cpy -cpy -cpy -cpy -cpy -cpy +ien +max +max +ofi tZh ofi ofi @@ -63500,9 +57700,9 @@ ofi ofi ofi ofi -cpy -max -max +ofi +ofi +ofi max max max @@ -63521,10 +57721,10 @@ ofi cpy cpy cpy -cpy -cpy +ygJ +ygJ bPJ -evu +bYM nZP nZP nZP @@ -63543,78 +57743,57 @@ cpy cpy cpy tiQ -xho -yeS -xho -yeS -xho -cNV -saC -saC -saC +xdF +xdF +xdF +xdF +xdF saC -otQ -otQ -otQ -otQ -eVg -otQ saC saC saC saC -tiQ -gxl -gYT -hiV -hqD -iKN -uFG -hDy -isF -xeG -iYL xZw xZw xZw xZw -kQw -iyl -kRJ -aCR -aCR -lqb -ddy +kUs +xZw +saC +saC +saC +saC +tiQ wgn -eZv -xBL -tfP -tfP -tfP -bIJ -bIJ -tfP -abV -abV -eUf -fLz +idk +cTf +cWL +oim +sbm +vZP +dwP +uFT abV +yaw +yaw +yaw +yaw hoN -abV +dAG jmW -ugu -abV -tfP -bIJ -bIJ -ylm -pjJ -lCH -tfP -ien -ien -ien -sjY +iTX +iTX +ePK +fol +fGh +nkv +gsZ +uWO +uWO +uWO +jVa +wbt +rWS hip xyL vht @@ -63631,7 +57810,7 @@ xTs uEC uEC uEC -pVx +vSO xtb nTv oTc @@ -63713,22 +57892,22 @@ max max max max -cpy -cpy -cpy -cpy -cpy +max +max +max +max +max tZh ofi ofi -max ofi ofi ofi ofi ofi -max -max +ofi +ofi +ofi max max max @@ -63749,7 +57928,7 @@ cpy cpy cpy cpy -cpy +ygJ bPJ bPJ gfs @@ -63770,78 +57949,57 @@ cpy cpy cpy tiQ -xho -kwJ -faZ -kwJ -xho -cNV +xdF +xdF +xdF +xdF +xdF saC saC saC saC -xho -yeS -yeS -yeS -oEw -xho -yeS +saC +xWc +uAm +uAm +uAm +pRf +xWc +uAm saC saC saC tiQ -dAf -uFG -xdF -htX -hDh -jFa -hDy -iti -fKu -iZg -hHj -xZw -xZw -xZw -xrA -kPG -udU -aCR -lqb -lqb -lqb -jUq +lLA sbm -xBL -tfP +yim +cWZ bcf -tfP -tfP -tfP -tfP -cpy -inU -cpy -cpy -gGx -inU -inU -tfP -pjJ -inU -inU -inU -inU +dkC +vZP +dxJ +dDS +dKM +dOw +yaw +yaw +yaw +oXk +iEq +eAz +iTX +ePK +ePK +ePK +fGH bcU -pjJ -lCH -tfP -tfP -ien -sjY -clY +gsZ +uWO +uWO +uWO +jVa +rWS +wbt oNQ xtb qyI @@ -63881,20 +58039,20 @@ weR nLm its mZJ -nLm -weR +ien +xoj nLm nLm nLm jcH xno emb -nxb -nLm +bNA nLm nLm -weR nLm +xoj +ien eBA wwO nLm @@ -63941,20 +58099,20 @@ max max max max -cpy -cpy +max +max max ofi ofi ofi -max -max -max ofi -max ofi -max -max +ofi +ofi +ofi +ofi +ofi +ofi max max max @@ -63976,8 +58134,8 @@ cpy cpy cpy cpy -cpy -cpy +ygJ +ygJ bPJ bPJ fVC @@ -63997,78 +58155,57 @@ cpy cpy cpy tiQ -xho -kwJ -xho -kwJ -xho -cNV +xdF +xdF +xdF +xdF +aTK saC saC saC saC -xho -yeS -yeS -yeS -oEw -xho -yeS +saC +xWc +uAm +uAm +uAm +pRf +xWc +uAm saC saC saC tiQ tiQ -gZd -hjB -iKC -hDh -dFY -hDy -fBU -gat -gXR -hHj -xZw -xZw -xZw -xrA -rAL -bzC -bzC -bzC -bzC -nDM -gWI inU ycV -tfP -tfP -tfP -tfP -tfP -cpy -cpy -cpy -fgf -cpy -tfP -hzA +cXi +bcf +dkL +vZP +dya +dEk +dKO +dOw +yaw +yaw +yaw +oXk ihy -tfP -tfP -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -lCH -tfP -tfP -ien -sjY -clY +tiQ +tiQ +tiQ +tiQ +vtc +uSo +gdX +gtX +uWO +uWO +uWO +jVa +rWS +wbt oNQ xtb xtb @@ -64116,7 +58253,7 @@ oeL rIB dNm tUM -gDA +teh lTl nLm pTO @@ -64175,12 +58312,12 @@ max ofi ofi ofi -max -max -max -max -max -max +ofi +ofi +ofi +ofi +ofi +ofi max max max @@ -64204,8 +58341,8 @@ cpy cpy cpy cpy -cpy -cpy +ygJ +ygJ bPJ nZP nZP @@ -64224,78 +58361,57 @@ cpy cpy cpy tiQ -cNV -kwJ -xho -kwJ -cNV -cNV +xdF +xdF +xdF +aTK +aTK saC saC saC saC saC -uqt -uqt -uqt -qvQ +saC +xZw +xZw +xZw +kUs saC saC saC saC saC tiQ -gyn -hai -xdF -iKC -hDh -hPq -hDy -iMC -rBz -npD -xZw -xZw -xZw -kkr -kUs -lrG -lWa -fTS -bzC -nDM -nDM ylm -pjJ +vjW yim -tfP -tfP -tfP -tfP -tfP -tfP -cpy -cpy -cpy -cpy -cpy +cXi +bcf +dkP +vZP +dyl +dEL +dLq +yaw +yaw +yaw +egd hIp ijv -tfP -tfP -pjJ -kcL -pjJ -pjJ -pjJ -pjJ -lCH -tfP -ien -ien +eAF +wBR +tiQ +vtc +vtc +fGN +uWO +hRu +uWO +uWO +uWO ien -clY +wbt +wbt oNQ xtb xtb @@ -64312,7 +58428,7 @@ tXa uEC uEC xTs -pVx +vSO xtb tvO fjr @@ -64343,7 +58459,7 @@ eQV oot eAm oPu -gDA +teh vpi nLm nWn @@ -64395,18 +58511,18 @@ max max max xKk -vsh -vsh -vsh -vsh -vsh +rIj +rIj +rIj +rIj +rIj xKk ofi ofi -max -max -max -max +ofi +ien +ofi +ien max max max @@ -64432,7 +58548,7 @@ cpy cpy cpy cpy -cpy +ygJ bPJ bPJ nZP @@ -64451,78 +58567,57 @@ cpy cpy cpy tiQ -cNV -yeS -xho -yeS -cNV -cNV +xdF +xdF +xdF +xdF +xdF +tiQ saC saC tiQ tiQ -uTj -ksm -ksm -ksm -goK -ixD +bNE +kky +kky +kky +mcG +xdF saC tiQ tiQ saC tiQ -gzk -gYT -xdF -iKC -iKN -uFG -hDy -itz -iMv -tCh -xZw -xZw -jTi -kky -jTx -kyK -kSC -lgf -bzC -nDM -pRh -ylm -pjJ -lCH -tfP -tfP -tfP -tfP -tfP -pjJ -vjW -cpy -cpy -cpy -cpy -cpy -tfP -tfP -tfP -tfP -pjJ -pjJ -pjJ -pjJ -tfP +cMc +idk yim -tfP -tfP +cXi +oim +sbm +vZP +dzv +dFR +dLs +yaw +yaw +dZs +egt +eam +ept +eBi +eJw +tiQ +vtc +fpn +fGN +uWO +hRu +uWO +uWO ien -clY -clY +ien +ien +wbt oNQ xtb aYF @@ -64565,14 +58660,14 @@ pOd qvM uOs vJT -nLm +ien lwH pjM pJW rWu -gDA +teh dBa -nLm +ien nLm nLm nLm @@ -64630,11 +58725,11 @@ iee rIj max ofi -ofi -max -max -max -ofi +ien +ien +ien +ien +ien max max max @@ -64659,8 +58754,8 @@ cpy cpy cpy cpy -cpy -cpy +ygJ +ygJ bPJ nZP nZP @@ -64678,78 +58773,57 @@ cpy cpy cpy tiQ -cNV -kwJ -xho -kwJ -cNV -cNV -unt -ifi -gcn -xho -uAd -yeS -xho -xho -oEw -oML -saC -saC -otQ -dOK -tiQ -gzD -hai xdF -iKC -hBD -uFG -hDy +xdF +xdF +xdF +xdF +tiQ +aTK eCO xVG -vda -rEV -jtQ -jTx -kll -krj -xrA -hkT -fTS -bzC -nDM -nDM -ylm -pjJ -lCH -pjJ -tfP -pjJ -pjJ -tfP -pjJ -pjJ -vjW -cpy -cpy -cpy +xWc +uHn +uAm +xWc +xWc +pRf +cwq +saC +saC +xZw +cIW +tiQ +cMq vjW -inp -tfP -tfP -tfP -tfP -pjJ -pjJ -tfP -tfP yim -tfP -tfP +cXi +dbX +sbm +vZP +dAm +dFT +dLz +eDt +dUj +eam +egK +eof +oXk +oeX +wBR +tiQ +vtc +vtc +fGU +uWO +hRu +uWO +uWO +uWO ien -clY -clY +wbt +wbt oNQ xtb mjW @@ -64772,11 +58846,11 @@ xtb xtb xtb xtb -tEJ +noV fjr tPx nLm -iJS +oyM kRB nLm nMz @@ -64792,14 +58866,14 @@ fjP fjP fjP vJT -nLm -nLm +ien +ien pwg pJW tUM pgs -nLm -nLm +ien +ien iJS oFz nLm @@ -64857,12 +58931,12 @@ nye rIj max ofi -ofi max -ofi -ofi -ofi -ofi +ien +max +ien +max +max max max fni @@ -64885,9 +58959,9 @@ max max cpy cpy -cpy -cpy -cpy +ygJ +ygJ +ygJ bPJ ica nZP @@ -64905,78 +58979,57 @@ cpy cpy cpy tiQ -xho -kwJ -xho -kwJ -faZ -cNV -xho -dpj -otQ -xho -uAd -xho -kwJ -kwJ -vDV -oML -xho -otQ -otQ -fAG -tiQ tiQ -tiQ -hkE -hzq -hDy -hDy -hDy -hDy -fTS -xeG +xdF +xdF +xdF +xdF +xdF +xWc +bLh xZw +xWc +uHn +xWc +kyz +kyz +crX +cwq +xWc xZw -jUe -klx xZw -xrA -kTd -bzC -bzC -bzC -nDM -ylm -vjW -lCH -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -tfP -tfP -tfP -pjJ -cpy -pjJ -pjJ -tfP -yim -tfP -ien -ien +cIX +tiQ +tiQ +tiQ +lrr +cYF +vZP +vZP +vZP +vZP +dFY +uFT +yaw +yaw +ear +ehM +yaw +oXk +eBH +tiQ +tiQ +tiQ +vtc +fIe +uWO +hRu +uWO +uWO +wbt ien -clY +wbt +wbt oNQ xtb soS @@ -65004,7 +59057,7 @@ fjr tPx nLm kKc -hau +oML nLm npI kcS @@ -65085,11 +59138,11 @@ rIj max ofi ofi -ofi -ofi -tZh -cpy -cpy +max +max +max +max +max max max fni @@ -65112,7 +59165,7 @@ max max max max -osN +oAY bPJ bPJ bPJ @@ -65131,79 +59184,58 @@ cpy cpy cpy cpy +cpy tiQ -xho -kwJ -xho -kwJ -xho -cNV -xho -drS -dNd -xho -uAd -xho -kwJ -kwJ -vDV -oML -xho -otQ -otQ -fGN -tiQ -bvI -hai xdF -fXv -hup -msp -uFG -hDy +xdF +xdF +xdF +xdF +xWc +bLk qYk -xeG +xWc +uHn +xWc +kyz +kyz +crX +cwq +xWc +xZw xZw +cJh +tiQ +cNB +vjW +yim +cYQ +ddN +lqd +sbm +vZP +xkB +uFT +yaw saC saC saC -mKQ -xrA -hkT -fTS -bzC -nDM -nDM -ylm -vjW -eDS -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -tfP -tfP -cpy -cpy -cpy -pjJ -tfP -yim -tfP -tfP +dXX +oXk +oeX +wBR +tiQ +vtc +vtc +fJe +uWO +hRu +uWO +wbt ien -rzq -clY +ien +ien +wbt oNQ xtb rmt @@ -65223,7 +59255,7 @@ xTs vIb xtb xqd -pVx +vSO rKt xtb tvO @@ -65312,11 +59344,11 @@ xKk max max ofi -ofi -ofi -tZh -cpy -cpy +max +max +max +max +max max max omT @@ -65339,8 +59371,8 @@ max max max max -gMQ -fnA +cfO +xkJ bPJ bPJ fCb @@ -65358,79 +59390,58 @@ cpy cpy cpy cpy +cpy tiQ -xho -yeS -xho -yeS -xho -cNV -hAr -uCr -otQ -xho -uAd -xho -kwJ -kwJ -vDV -oML -xho -otQ -dtr -fGU -tiQ -gAJ -hbF -hky -hka -hwr -wyv -uFG -iwJ -fTS -xeG +xdF +xdF +xdF +xdF +xdF +xWc +ixf +xZw +xWc +uHn +xWc +kyz +kyz +crX +cwq +xWc xZw +gll +cJo +tiQ +cNQ +cPN +cTU +cZu +ddS +xzn +sbm +lbX +wBR +uFT +yaw saC saC saC -mKQ -xrA -kQK -fTS -bzC -nDM -pRh -ylm -vjW -eDS -pjJ -pjJ -bgV -sQu -sQu -mjR -sQu -sQu -sQu -sQu -sQu -sQu -oaa -pjJ -pjJ -pjJ -pjJ -cpy -pjJ -pjJ -tfP -yim -tfP -tfP +dXX +oXk +iPb +wBR +tiQ +vtc +fkB +jXT +uWO +hRu +uWO +wbt +wbt ien -puV -clY +jXT +wbt oNQ xyL qBe @@ -65542,8 +59553,8 @@ ofi ofi max max -tZh -cpy +max +max max max yjT @@ -65567,7 +59578,7 @@ max max max max -osN +oAY bPJ oeN rgS @@ -65585,79 +59596,58 @@ cpy cpy cpy cpy +cpy tiQ -xho -xho -xho -xho -xho -cNV -eZY -uCr -otQ -xho -uAd -yeS -xho -faZ -oEw -oML -xho -otQ -otQ -xho tiQ -gFD -hbH -vOP -hkw -hxV -hPz -ibT +xdF +xdF +xdF +xdF +xWc ixf -tLQ -jbs -ikr -saC -saC -saC -mKQ -xrA -hkT -nCX -bzC -nDM -nDM +xZw +xWc +uHn +uAm +xWc +cnA +pRf +cwq +xWc +xZw +xZw +xWc +tiQ gWI sQu msQ -sQu -sQu -gWI -iAv -bZB -iAv -iAv -iAv -iAv -iAv -iAv -iAv -ylm -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -tfP -tfP -yim -tfP -ien -ien -ien -clY +cZM +dbc +dli +dpz +jjW +cJy +dLZ +dOK +saC +saC +saC +dXX +oXk +oeX +eJZ +tiQ +vtc +vtc +uSo +bHA +gvk +bHA +bHA +bHA +fbV +jXT +wbt oNQ xyL xPA @@ -65668,7 +59658,7 @@ aiw rLq siT xTs -pVx +vSO pJb vIe uEC @@ -65676,7 +59666,7 @@ roT uEC xqd pJb -pVx +vSO gvT jLF xyL @@ -65770,8 +59760,8 @@ max max max max -ofi -tZh +max +max tZh yjT eUO @@ -65794,7 +59784,7 @@ max max max max -osN +oAY bPJ tXc fJr @@ -65812,82 +59802,61 @@ cpy cpy cpy cpy +cpy +cpy tiQ -cNV -vSJ -vSJ -vSJ -cNV -cNV -eGs -dtr -otQ -xho -uAd -yeS -yeS -saC -eEx -eOA -xho -otQ -otQ -xho tiQ -gGk -hcx -hkD -hye -hye -hRd -uFG -hDy -xxW -dsc -rov -saC -saC +xdF +xdF +xdF +xWc +gll +xZw +xWc +uHn +uAm +uAm saC -kzc +csy lit -cyu -bzC -bzC -bzC -nDM -gWI -gWI +xWc +xZw +xZw +xWc +tiQ +cNV +cPO bSU -gWI -iAv -iAv -iAv +dah +dah +dmG +sbm vZP -iAv -saC -saC +xkB +uFT +xED saC saC saC -iAv -ylm -pjJ -pjJ -tfP -pjJ -pjJ -tfP -tfP -tfP -yim -tfP -tfP -ien -clY -clY +yaw +eoZ +ihy +tiQ +tiQ +tiQ +vtc +uSo +uSo +gwk +uSo +uSo +uSo +fbV +jXT +wbt pPm xtb -xPA +jpm bID rSd bNf @@ -66021,7 +59990,7 @@ max max max max -osN +oAY aQH euT fJr @@ -66039,79 +60008,58 @@ cpy cpy cpy cpy +cpy +cpy +cpy tiQ -xho -xho -xho -xho -xho -cNV -eGs -otQ -otQ -xho -uAd -bXA -saC -saC -saC -ePK -fdR -otQ -otQ -xho tiQ -pNc -uFG -qml -uFG -uFG -dRS -hDy -hDy -fTS -xeG -jiY +xdF +xdF +xWc +xZw +xZw +xWc +uHn +cbB saC saC saC +cwE +cyv xZw -xrA -hkT -nCX -bzC -iAv -jUY -smr +xZw +xWc +tiQ smr +sbm kri -iAv -iAv -iAv -xzn -xzn -nrh -nrh +sbm +sbm +pkE +vZP +vZP +wBR +uFT +dOY saC saC -tjR -tjR -xPY -ylm +saC +yaw +oXk oeX -tfP -tfP -tfP -tfP -tfP -tfP -tfP -yim -tfP -uSY -ien -clY -clY +eJZ +tiQ +iAv +fpH +fKu +fKu +gxc +iAv +nPc +nPc +hIS +jXT +wbt pPm xtb xPA @@ -66248,7 +60196,7 @@ ofi max max max -osN +oAY bPJ kHW cJF @@ -66266,79 +60214,58 @@ cpy cpy cpy cpy +cpy +cpy +cpy tiQ -xho -xho -xho -kwJ -xho -cNV -eGs -uqt -uqt -xgl -dwP +tiQ +tiQ +xdF +xWc +xZw +xZw +xWc +uHn saC saC saC saC saC -cdP -xgl -xgl -hDy -hDy -hDy -hDy -hkE -hzq -hDy -hDy -hDy -fTS -fTS -xeG -ipB -xZw +crX +xWc +xWc +vZP +vZP +vZP +vZP +lrr +cYF +vZP +vZP +vZP +wBR +wBR +uFT +dPq +yaw saC -xZw -xZw -bKk -kQR -fTS -bzC -iAv +yaw +yaw +tTl +ezp +wBR +tiQ iAv -sTr -sTr -lrr iAv +fKt +fKt +gxN iAv -mWw -nmK -nrh -nrh -xzn -xzn -fLS -xzn -hHd -xPY -ylm -ylC -qyG -qyG -qyG -qyG -qyG -qyG -qyG -eeY -tfP -ien -ien -ien -clY +hcZ +uSo +uSo +kQW +wbt oNQ xyL xPA @@ -66347,7 +60274,7 @@ hLo hLo aiw cgB -siT +ktp uEC tlX xtb @@ -66358,7 +60285,7 @@ xtb xtb xtb jpa -pVx +vSO uEC xtb tvO @@ -66474,8 +60401,8 @@ aYO ofi ofi max -pAj -fnA +oaW +xkJ bPJ bPJ aRB @@ -66492,80 +60419,59 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy tiQ tiQ -xho -xho -uTj -cBi -xho -cNV -eGs -otQ -otQ -xho -uAd +xdF +xWc +xZw +xZw +xWc +uHn saC saC saC saC saC -goK -ksm -cBi -fTS -uxf -gHF -fTS -hkT -fTS -fTS -fTS -glj -fTS -xuU -txs -uHn -xZw -xZw -tZs -xZw -xZw mcG -aCR -bzC -iAv -iAv -tfW +kky +cFv +wBR +geP tfW -mBy +wBR +oeX +wBR +wBR +wBR +wBR +wBR +heB +qYM +xED +yaw +yaw +ehO +yaw +yaw +eEx +iTX +tiQ iAv +fpH +pGQ +pGQ +gyK iAv -saC -eYA -akp -hHd -mTo -xkB -xzn -xzn -hHd -xPY -ylm -yim -tfP -tfP -cpy -tfP -tfP -tfP -tfP -yim -pjJ -pjJ -ien -esw -clY +gXR +uSo +jXT +wbt +wbt oNQ xtb qBc @@ -66586,7 +60492,7 @@ iPV xtb wpA vmo -pVx +vSO xtb tvO fjr @@ -66701,7 +60607,7 @@ erA ofi ofi ofi -osN +oAY bPJ bPJ bPJ @@ -66718,81 +60624,60 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ tiQ -xho -xho -uTj -kkZ -oML -xho -cNV -eGs -otQ -otQ -xho -uAd -yeS +xWc +xZw +xZw +xWc +uHn +uAm saC saC saC saC -oEw -yeS -oML -fTS -lrh -gIH -hcV -hkY -hAk -hAk -hRj -kfA -ick -iMS -xWc -itp -xWc -xWc -xWc -krw -ahJ pRf -saC -bzC -iAv +uAm +cwq +wBR geP jqL -jqL +cPU rKz wAB -iAv -saC -saC -saC -hHd -mTo -mTo -xzn -hHd -xzn +wAB +dng +dqr +dqr +dGV +lEZ +dQg +lEZ +lEZ +lEZ jdv -ylm -yim -tfP -cpy -cpy -cpy -tfP -tfP -tfP -yim -pjJ -pjJ -ien -dWc -clY +epI +eFP +saC +tiQ +iAv +frH +qqJ +qqJ +gzu +gOj +gXR +rha +jXT +wbt +wbt oNQ xyL xPA @@ -66800,8 +60685,8 @@ hLo hLo hLo aiw -rLy -xTs +kqa +kwt xTs jXc xtb @@ -66928,7 +60813,7 @@ qdO uOd uOd uOd -fnA +xkJ cpy cpy bPJ @@ -66945,81 +60830,60 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -wtH -xho -uTj -ote -jJa -gTw -xho -cNV -eGs -dya -otQ -xho -uAd -yeS -saC -saC -saC -saC -fkb -dLs -fJe -tLQ -uxi -gLK -xWc -hlf -tso -tso -hRG kzc xZw xZw -xZw -iGc -xZw -xZw -xZw -xZw -mKQ +xWc +uHn +uAm saC saC -bzC -iAv +saC +saC +csy +cCC +cFP +cJy wTV hAD lEZ fNk -wAB -iAv +daq +daq +dnB +yaw +yaw +yaw +yaw +dQm +yaw +yaw +yaw +yaw +dXX saC saC -jPC -xzn -xkB -xkB -xzn -xzn -vZP -jdv -ylm -yim -tfP -cpy -cpy -cpy -cpy -tfP -tfP -lCH -pjJ -ien -ien -ien -clY +tiQ +iAv +frL +fLi +get +gAJ +gOj +gXR +gXR +jXT +wbt +wbt oNQ xtb xPA @@ -67039,8 +60903,8 @@ nSC jaY xtb xAO -xAO -xAO +mMr +mUh xtb tvO ugV @@ -67155,7 +61019,7 @@ bZV vLI vLI wIr -cpy +ygJ cpy cpy bPJ @@ -67172,81 +61036,60 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -vDV -uTj -ote -yeS -oML -xho -xho -cNV -eGs -dya -otQ -xho -uAd -yeS -saC -saC -saC -saC -oEw -fwX -oML -fTS -lrh -gMy -udR -iKw -udR -udR -udR xEk -iyl -iOl -xZw -uHn xZw xZw -xZw -mKQ +xWc +uHn +uAm saC saC saC -bzC -iAv -eTn +saC +uAm +cCH +cwq +wBR +geP gbo -bBJ -iuC -axS -iAv +sGF +lbt +sGF +sGF +sGF +sGF +dAG +vxD +yaw +xED +yaw +yaw +yaw +dXX saC -lqd -xzn -xzn -xzn -hHd -hHd -xzn -xzn -jdv -ylm -yim -tfP -cpy -cpy -cpy -cpy -tfP -pjJ -lCH -pjJ -pjJ -ien -nBs -clY +saC +saC +tiQ +iAv +frZ +fLA +oVO +gEB +gOJ +gXR +hdK +kQW +wbt +wbt oNQ xtb xPA @@ -67265,9 +61108,9 @@ xtb uco uco xtb -xAO -xAO -xAO +vSO +uEC +vSO xyL kxH ugV @@ -67382,7 +61225,7 @@ oaF aPu ycO wIr -wIr +nTF cpy bPJ bPJ @@ -67399,81 +61242,60 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -vDV -kmz -yeS -yeS -oML -xho -cNV -cNV -cNV -fsj -xho -xho -kmz +tiQ +tiQ +bMa +xWc +xWc +bZe saC saC saC saC -csK -fpH -dOw -gTw -fTS -lrh -gHF -fTS -hkT -fTS -fTS +cwO +kjU +kjU +cxu +wBR +geP +tfW +wBR +oeX +wBR +wBR saC saC saC -iOG -jci -uHn -xZw -xZw -xZw +jBY +dMb +xED +yaw +yaw +yaw saC saC saC saC -bzC -iAv -eTn -iEn -bBJ -iuC -kzG +tiQ iAv -saC -saC -hHd -xzn -hHd -hHd -xzn -xzn -xzn -jdv -ylm -yim -tfP -cpy -cpy -cpy -cpy -vjW -pjJ -lCH -pjJ -pjJ -ien -hmM -clY +frZ +jEX +oVO +gEB +gPq +gXR +hgy +wbt +wbt +wbt oNQ xtb xPA @@ -67484,7 +61306,7 @@ aiw rLq siT xTs -pVx +vSO xtb ucx usz @@ -67492,9 +61314,9 @@ xtb vkC vJb xtb -xAO -xAO -xAO +vSO +uEC +vSO xyL tvO ugV @@ -67609,8 +61431,8 @@ oqp pdR aPu vDL -wIr -wIr +nTF +nTF bPJ xsN nZP @@ -67626,81 +61448,60 @@ cpy cpy cpy cpy -tiQ -vDV -uAd -yeS -yeS -oML -xho -xho -uqt -xho -uTj -ksm -ksm -ote +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bet +xWc +bNE +kky +kky +cac saC saC saC saC -gyK -xgl -xgl -xgl -hDy -hDy -hDy -hDy -hkE -hzq -hDy -hDy -hDy -saC -saC -xeG -uHn -xZw -xZw +cwq +xWc +xWc +xWc +vZP +vZP +vZP +vZP +lrr +cYF +vZP +vZP +vZP saC saC +uFT +xED +yaw +yaw saC saC saC -bzC -iAv -gem -sjx -bBJ -iuC -jqL -iAv saC -hHd -nsv -jxI -jxI -jxI -jxI -jxI -jxI -nVW -bjT -rOf -cpy -cpy -cpy -cpy -cpy -cpy -pjJ -lCH -pjJ -ien -ien -ien -sjY +saC +tiQ +iAv +fsf +fLP +oVO +gEB +qqJ +gXR +hgM +wbt +wbt +rWS oNQ xyL qBe @@ -67719,11 +61520,11 @@ rrN xqd obb xtb -xAO -xAO -xAO +vSO +uEC +vSO xtb -tvO +npd ugV hNR ugV @@ -67837,8 +61638,8 @@ oLa qzQ hhI vDL -wIr -wIr +nTF +nTF nRY uwe nZP @@ -67853,81 +61654,60 @@ cpy cpy cpy cpy -tiQ -vDV -uAd -yeS -yeS -epI -cBi -xho -uqt -xho -uAd -yeS -yeS +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bet +xWc +uHn +uAm +uAm saC saC saC saC -yeS -jKu -xho -otQ -otQ -dyl +uAm +cwq +xWc +xZw +xZw +cJA tiQ -gNe -uFG -qml -uFG -uFG -msp -hDy -hDy -saC -dsc -rov -kzc +cOZ +sbm +kri +sbm +sbm +lqd +vZP +vZP saC +uFT +xED +yaw saC saC saC saC saC -bzC -iAv -eym -iEn -bBJ -iuC -jqL +saC +tiQ iAv -lqd -xzn -sQN -xkB -xkB -wFA -hHd -xzn -xzn -xPY -ylm -tfP -cpy -cpy -cpy -cpy -cpy -cpy -cpy -lCH -pjJ -pjJ -ien -fkD -clY +fsj +jEX +oVO +gEB +qqJ +gXR +hhJ +hoq +wbt +wbt oNQ xtb rmt @@ -67942,15 +61722,15 @@ xqd xyL xqd xTs -rKt +jLF uEC xqd -pnx -xAO -xAO -xAO -xyL -tvO +pJb +uEC +uEC +vSO +pJb +npx ugV hNR ugV @@ -68065,7 +61845,7 @@ oLa qzQ hhI lBd -wIr +nTF guh bQA nZP @@ -68080,82 +61860,61 @@ cpy cpy cpy cpy -cpn -aGg -dAm -dXq -ekt -eoH -eqU -cJo -fsV -cJo -dAm -dLs -afA +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bet +xWc +uHn +uAm +uAm saC saC saC saC -yeS -jKu -xho -otQ -otQ -dyl -tiQ -gGq -hcZ -hlJ -hAK -wyv -uFG -uFG -hDy -qYk -xeG -uHn +uAm +cwq +xWc +xZw xZw +cJA +tiQ +cPx +cQc +cTX +daL +xzn +sbm +sbm +vZP +xkB +uFT +xED +yaw saC saC saC saC saC saC -bzC -iAv -geP -iEn -bBJ -iuC -eTn +tiQ iAv -hHd -xzn -sQN -xkB -mTo -xkB -ufA -hHd -xzn -xPY -ylm -tfP -cpy -cpy -cpy -cpy -cpy -vjW -pjJ -lCH -pjJ -pjJ -ien +frH +jEX +oVO +gEB +frZ +gXR +gXR +hvE bHA -clY -oNQ +bHA +uSo xyL fwy fwy @@ -68168,18 +61927,18 @@ uEC qYv xyL xqd -xTs +gvT rsa -uEC -xqd -pnx -xAO -xAO -xAO -xyL -tvO -ugV -spe +lNA +oZC +uwk +uIO +uIO +cZN +uwk +npD +vwi +nNL uBs vwi vwi @@ -68292,7 +62051,7 @@ tkf qzQ hhI hLx -wIr +nTF oox mlv pXv @@ -68307,104 +62066,83 @@ cpy cpy cpy cpy -cpn -vDV -uAd -yeS -yeS -oML -cCC -xho -uqt -xho -aut -dOw -ajw -bRN +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +bet +xWc +bNT +kjU +kjU +cay saC saC saC -yeS -jKu -xho -otQ -otQ -xho +uAm +cwq +xWc +xZw +xZw +xWc tiQ -xce -oKN -xdF -iKC -hCv -wyv -uFG -iwJ -fTS -xeG -uHn -jwT +hij +cQB +yim +cXi +dci +xzn +sbm +lbX +wBR +uFT +xED +gBi saC saC saC saC saC saC -bzC -iAv -lwc -iEn -bBJ -iyS -eTn +tiQ iAv -xzn -klj -lbX -klj -klj -xzn -gBi -saC -hHd -xPY -ylm -pjJ -pjJ -pjJ -cpy -cpy -pjJ -pjJ -pjJ -lCH -pjJ -ien -ien -ien +fsC +jEX +oVO +gFD +frZ +gXR +hhQ +uSo +uSo +uSo uSo -oNQ xtb -pVx +vSO xqd qPT xqd -pVx +vSO vsG -pVx +vSO fwy qYv xyL -pVx +vSO wmk -jLF wmk -pVx +wmk +vSO xtb -xAO -xAO -xAO +mCQ +mMU xtb -tvO +xtb +nqB pOb ugV hNR @@ -68534,85 +62272,64 @@ cpy cpy cpy cpy -cpn -vDV -uAd -yeS -yeS -oML -xho -cNV -cNV -cNV -cCC -xho -vDV -uAd +cpy +cpy +cpy +cpy +cpy +cpy +cpy +tiQ +tiQ +tiQ +bOv +xWc +xWc +uHn saC saC -xho -yeS -jKu -xho -otQ -otQ -xho -tiQ -hTg -uFG -qPq -hxV -hFu -hSO -kck -ixf -tLQ -jbs -jtf -kgb +xWc +uAm +cwq +xWc +xZw xZw +xWc +tiQ +vTK +sbm +cUg +dbc +dek +pbi +bKn +jjW +cJy +dLZ +dQr +dUD +yaw saC saC saC saC saC -bzC -iAv -jqL -vTK -bBJ -iyS -eTn +tiQ iAv -pbi -bKn -jjW -bKn -bKn +qqJ +fNm +oVO +gFD +frZ iAv +hig +hAr +hAr +hAr iAv iAv iAv iAv -ylm -vjW -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -pjJ -lCH -pjJ -pjJ -ien -hJZ -hJZ -oNQ -xtb -xyL -xyL xtb xtb xtb @@ -68621,17 +62338,17 @@ fAY xtb xtb xtb -pVx -wmk -jLF +lko +uEC wmk -pVx +uEC +vSO xtb xtb xyL xtb -xtb -tEJ +xXR +wCC fjr ugV hNR @@ -68746,7 +62463,7 @@ tkf fTP aPu pfq -wIr +nTF rsD bQA nZP @@ -68761,105 +62478,84 @@ cpy cpy cpy cpy -cpn -vDV -uAd -yeS -yeS -oML -xho -xho -cNV -lxW -dCx -dtr -vDV -uAd -saC -saC -kwJ -xho -jKu -xho -otQ -otQ -xho +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -gxl -gYT -xdF -hBf -hFS -uFG -uFG -hDy +bxU +bOE gll -xeG +xWc uHn +saC +saC +kyz +xWc +cwq +xWc xZw xZw -klL +xWc +tiQ +wgn +idk +yim +dbi +del +sbm +sbm +vZP +dHc +uFT +xED +yaw +yaw +eil saC saC saC saC -bzC -iAv -gmb -iEn -fQi -iyS -jqL -iAv -kzG -jqL -qUz -jqL -jqL -gcr -skC -iAv -iAv +tiQ iAv +fsQ jEX -sQu -sQu -sQu -sQu -sQu -sQu -oaa -pjJ -lCH -vjW -pjJ -clY -hJZ -hJZ -jqF +geu +gFD +qqJ +iAv +gPq +pGQ +pGQ +pGQ +qqJ oxt -hhD -ahP -xyL +jri +iAv +jPk xWF -pVx +vSO roT uEC xqd lZO xtb -ucV -uEC -jLF -vkG -vJu -xyL +vSO +vSO +vSO +vSO +xtb +xtb ahP hhD hhD -hhD wCC fjr +fjr ugV hNR hkr @@ -68972,8 +62668,8 @@ oLa fTP aPu mOJ -wIr -wIr +nTF +nTF mlv nZP enB @@ -68988,84 +62684,63 @@ cpy cpy cpy cpy -cpn -vDV -uAd -yeS -yeS -epI -cBi -xho -cNV -fcV -dCx -otQ -vDV -uAd -saC -kwJ -kwJ -xho -jKu -xho -otQ -dtr -saC +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -oDU -uFG -hjB -hBB -uFG -dRS -hDy -hDy -gvs -hdR -uHn -xZw +bye +bOE xZw +xWc +uHn +saC kyz -mKQ +kyz +xWc +cwq +xWc +xZw +gll saC +tiQ +cPy +sbm +nWl +dbt +sbm +pkE +vZP +vZP +dHj +dMN +xED +yaw +yaw +ejo +dXX saC saC -bzC -iAv -jqL -iEn -bBJ -iyS -jqL -iAv -pkE -fzu -jMK -lEZ -lEZ -uFT -eTn -atO -iAv +saC +tiQ iAv -kdf -ciw -ciw -ciw -lPf qqJ jEX -ylm -pjJ -lCH -pjJ -pjJ -clY -clY -hJZ -hJZ -oxt -fjr +oVO +gFD +qqJ +iAv +hkD +hAs +get +get +get +ifi +frZ crH xyL rqd @@ -69075,13 +62750,13 @@ xTs gvT njW xtb -udv -uEC -rKt -vkG -vKF +xtb xyL -tvO +xyL +xtb +xtb +ahP +wCC fjr fjr fjr @@ -69199,7 +62874,7 @@ qzQ jJc vDL wIr -wIr +nTF evu nZP enB @@ -69215,85 +62890,64 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -aKK -uAd -yeS -yeS -yeS -oML -xho -cNV -saC -otQ -otQ -vDV -uAd -xgl -kwJ -ezU -xho -jKu -xho -otQ -saC -saC -tiQ -xce -xce -hkE -hzq -hDy -hDy -hDy -iyq -fTS -xeG +xdF +xZw +xZw +xWc uHn -jxu +xWc +kyz +cnN +xWc +cwq +xWc xZw -rEV -mKQ -saC saC saC -bzC -iAv -vsj +tiQ hij -bBJ -iuC -jqL -jjj -eTn -gbo +hij +lrr +cYF +vZP +vZP +vZP sFb -pNF -uFT -lrM +wBR uFT -eTn -iAv +xED +dUE +yaw +eDt +dXX +saC +saC +saC +xXV iAv -mnQ -rCu -rCu -eHE -aea mEG alx -ylm -vjW -lCH -pjJ -pjJ -clY -clY -clY -clY -oxt -fjr -crH +oVO +gEB +qqJ +nCa +frZ +fLA +hAs +hWI +ifi +iOY +ifi +frZ xyL qxp qPT @@ -69302,17 +62956,17 @@ xTs kMr nXl xtb -uea -pVx -vsG +fIr +fIr +fIr qfD vLu -xyL -tvO +wCC +fjr +fjr fjr fjr fjr -cpy sQA fjr tzM @@ -69425,8 +63079,8 @@ tsM aPu cDx wIr -wIr -qxf +nTF +nzw qxf nZP enB @@ -69442,108 +63096,87 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -vDV -uAd -yeS -yeS -yeS -oML -xho -saC -saC -otQ -otQ -apS -dAm -aDj -cJo -cJo -dLs -cfv -xho -otQ -saC -saC -tiQ -gxl -hai -hmD -iKN -hGU -hTd -hDy -iyC -xuU -txs +xdF +xZw +xZw +xWc uHn -jBy uAm -mKQ -saC -saC +xWc +xWc +uAm +cwq +xWc +xZw saC saC -uAm -iAv -bny -gbo -bBJ -iuC -jqL -jjj -jqL -gbo +tiQ +wgn +vjW +cUh +xzn +dfn +sgq +vZP aIM -bBJ +heB qYM -bBJ +xED jmX -mlR +xXV +dXX +saC +saC +saC +wBR +xXV iAv +fsV +fLA +oVO +gEB +qqJ +nCa +qqJ +fLA +oVO +oVO +ijE +oVO +jrT +jsy iAv -joJ -fBg -oDj -joJ iAv +kkc +krw +kwJ +kkc iAv -alx -ylm -vjW -hdu -nCa -nCa -yhK -yhK -yhK -iSf -oVO -nQx -crH -xtb -xtb -xtb -rMb -fAY -xtb -xtb -xtb -xtb -xtb -rMb -fAY -xtb -xtb +iAv +fIr +lpy +urY +lPf tvO fjr fjr -cpy -cpy -cpy +fjr +fjr +fjr +fjr +fjr fGw lHk -crH +nRK ksO qFc vBV @@ -69652,7 +63285,7 @@ uoA srk vLI wIr -bPJ +abJ wLw nZP nZP @@ -69669,108 +63302,87 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -vDV -uAd -yeS -yeS -yeS -oML -saC -saC -saC -saC -otQ -xho -uAd -dEk -yeS -yeS -yeS -oML -xho -saC -saC -saC -tiQ -gxl -gYT xdF -iKN -hDa -hTd -hDy -izY -xeG +xdF xZw +xWc uHn uAm uAm -klW -saC +uAm +uAm +cwq +xWc saC saC saC -uAm -lLA -qeJ -mQt +tiQ +wgn idk -cMW -hZO +yim +oim mPe sgq -lFa +vZP iLn -eZb -nQO -qAS -nQO -ahs +uFT +yaw +xED +xXV +xXV gJK -bzv -eLU +saC +saC oXk -bWQ -mjF -gXI -joJ +wBR +xXV +rKS +qqJ urp -gWI -sQu -sQu -sQu -sQu -ydA -ydA +gex +gFG +gTw +gYM +hkY +hAK +hIZ hiK -sjY -oxt -jDO +ijJ +iTS +ijJ sSn -hhD -hhD +jPz +kbu rxu lnK smY kwc -hhD -ahP +kPO +kkc qDL nqy uLp vlN -utd -qDL -tEJ +jBU +emH +emH +emH +tNr +fjr +fjr +fjr fjr -cpy -cpy -cpy -cpy -cpy gwH -sSn +hhD jYc hhD jYc @@ -69879,7 +63491,7 @@ owe oIu tOo bPJ -bPJ +abJ fZo nZP nZP @@ -69896,105 +63508,84 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -vDV -uAd -yeS -yeS -yeS -cCQ -saC -saC -saC -saC -saC -saC -aut -ejo -dOw -dOw -dOw -gTw +xdF +xdF +xdF +udR +bNT +kjU +kjU +kjU +kjU +cxu tiQ tiQ tiQ saC tiQ -gxl -hai -xdF -iKN -uFG -hTd -hDy -iBs -oQs -jcq -uHn -kib -kjU -saC -saC -saC -saC -mKN -lko -lLA -jqL -cBU -mvI -pZy -wAB -jUY -qUz -rtw -idk +wgn +vjW +yim +oim +sbm +sgq +vZP +dBe gNs mCx -ham -jqL +xED +dUS jeb -fBg -mEp -myz -smr -kri -kEj -ldy -joJ -gWI -gWI -oUq -oUq -tVa -tVa -oUq +saC +saC +saC +oXk +wBR +rvg +rKS +qqJ +qqJ +gfi +gGk +gOj +fpH +hlf +hBf +gex +hXA +ilU +iWc +qqJ +jFa +rqE +qeJ +kkR +iKo +kzd +kLc +kRw +kkc +uep +utd oUq oUq +lqY +lqY oUq oUq -jXQ -iKF -iKF -iKF -iKF -iKo -fjr -fjr +ahP +tNr fjr -crH -uep -utd -uLw -vlX -utd -uep -tvO fjr -cpy -cpy -cpy -cpy fjr nQL ugV @@ -70106,7 +63697,7 @@ jyM nax mnb ouj -bPJ +abJ pdp nZP nZP @@ -70123,109 +63714,88 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -cdP -dwP -dEk -dEk -saC -saC -saC -saC -saC -saC -saC -saC -saC +xdF +xdF +xdF +udR +udR saC -otQ -otQ -otQ -otQ +xZw +xZw +xZw +xZw saC saC saC saC tiQ -xce -hdd -xdF -hBD -nbD -xce -hDy -fTS -iOO -jdl -jRY -xZw -kqX +hij +jwx +yim +dbX +dgq +vZP +vZP +wBR +bag +dtR +dQs +yaw +ebP saC saC saC -xrA -mOl -uAm -lLA -ntL -jqL -jwx -qce +oXk +wBR +xXV +rKS +fuf +qqJ +gfu +gGq iAv iAv -viI -iOw -kzG -bag -dtR -eTn -mlR +uFA +bJy +gPq +hYg +iqb +frZ +jsy iAv iAv iAv -joJ -fBg -iby -joJ +kbJ +kkR +kzl +kkZ iAv iAv iAv oUq oUq -oAY -lDk -uFA -bJy -oUq +vlX +uQF +mqA +mEg oUq oUq -fjr -rxI -fjr -fjr -fjr -ugV -ugV -fjr -fjr -fjr -crH -uep -utd -uNt -vlX -utd -uep tvO fjr -cpy -cpy -cpy fjr fjr hNR ugV -xRK +nPV emH hNt aQf @@ -70350,109 +63920,88 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -vDV -uAd -yeS -yeS -bXA -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -yeS +xdF +xdF +udR +udR saC saC saC +nqe +udR +udR +udR saC saC saC tiQ -gxM -uFG -xdF -iKN -hHN -hON -hDy -fTS -iOO -jds -jjo -xZw -xZw +lLA +sbm +yim +oim +dgI +fBg +vZP +wBR +bag +dNd +uGK +yaw +yaw saC saC -kBJ -kXB -mSc -uAm -uAm -lLA -lLA +iyE +eGs +rdf +xXV +xXV +rKS +rKS iAv iAv iAv iAv -fBg -unU -wBR +rqE +hBg +hJq iAv iAv -uGK +iWu iAv iAv iAv iAv -iyE -tfW -rdf -vju -vju -rKS -vju -xJt -lbo -lbo -kXY -kXY -lDk -bJy -oUq -oUq -fjr -fjr -fjr -fjr -ugV -ugV -ugV -ugV -fjr -rxI -crH -uep -vgI -uNt -vlX +kmd +iKo +kzd +xRK +kRJ +xRK +xRK vgI -uep +wTu +wTu +xBi +xBi +uQF +mOh +oUq tvO fjr -fjr -cpy -fjr hxy iKF kdo -xRK -yjp +nPV +xXR sjy sjy sjy @@ -70560,7 +64109,7 @@ nax mPr mnb gmu -bPJ +abJ tlB nZP enB @@ -70577,108 +64126,87 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -vDV -uAd -yeS -yeS -jJa -gTw -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC +xdF +udR +udR +udR +udR saC saC +udR +udR +udR +udR saC saC saC tiQ -hTg -gYT -xdF -hCv -hHY -hON -hDy -fTS -xeG -jdD -jjU -jCq -xZw -xZw +vTK +idk +yim +dci +dgJ +fBg +vZP +wBR +uFT +dNn +dRn +xUq +yaw +yaw saC -kBL -kAI -fTS -hao -uAm -uAm -nzR -bzC -bzC -bzC +epS +nMl +wBR +eUs +xXV +xXV +rvg +xXV iAv -fBg -fBg iAv iAv -lLA -lLA -xUq -xUq +rqE +rqE iAv -mOh -vju -nMl -wrc -mjF -mGb -eDD -rvg -fAt -spB -kXY -nFc -rqE -kXY -slt -oUq -oUq -oUq -fjr -fjr -fjr -ugV -ugV -ugV -ugV -ugV -rxI -crH -qDL -vgI +iAv +kkZ +xRK +xRK +xRK +xRK +kkZ +kry +kry +kBq +kwc +kSC +lag +llG +vpk uOL -vni -utd -qDL -ahP -tNr -fjr -fjr +xBi +mjq +msf +xBi +mOl +oUq +tvO fjr jDO fjr ugV -crH +nRK sjy sjy asZ @@ -70787,7 +64315,7 @@ nax mPr mnb eDq -bPJ +abJ gJr nZP nZP @@ -70804,107 +64332,86 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -vDV -uAd -yeS -enG -gTw -xho -xho -cNV -saC -saC -saC -saC -saC -saC -otQ -otQ -otQ -saC +xdF +udR +udR +udR +udR saC saC +udR +udR +udR +udR +udR saC saC tiQ -hTg -uFG -qTH -hye -hFS -hTg -hDy -saC -xeG -xZw -jTb -xZw -xZw -xZw -kzc -kCM -kWa -mXn -fTS -lqY -saC -saC +vTK +sbm +cUl +dah +del +vTK +vZP saC +uFT +yaw +dRy +yaw +yaw +yaw +yaw +qRw +eGL +eKj +wBR +tKR +xXV +xXV +xXV saC -bzC -bzC iAv iAv iAv -gYc -lLA -lLA -lLA -xUq -yaw -vju -qRw -vju -vju -oLK -tKR -gxb -dPl -tVa -dio -kXY -nFc -dwI -kXY -lDk -oUq +iAv +iAv +hZg +kkZ +iKo +kLc +kkR +kkR +iKo +iKo +kry +kry +iKo +kVO +lcP +kbM +lqY +uPk +xBi +mjq +mto +xBi +uQF oUq -rxI -fjr -fjr +tvO fjr -ugV -ugV -xRK -emH -emH -emH -yjp -beB -beB -uPk -mwL -beB -wrC -wrC -xXR -emH -emH -tNr gwH fjr -xRK +nPV rJB sjy uxn @@ -71014,7 +64521,7 @@ yhR yhR tOo bPJ -bPJ +abJ pHi nZP uIY @@ -71031,107 +64538,86 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -vDV -uAd -jJa -gTw -xho -xho -cNV -cNV -saC -saC -saC -saC -wLp -kbV -kbV -kbV -kbV -kbV +tiQ +udR +udR +udR +udR +udR saC saC +udR +udR +udR +udR +udR tiQ saC tiQ tiQ -hdK -hmO -uFG -hIS -hTo -hDy -saC +cQS +cUx +sbm +dgO +dnG +vZP saC -xZw -jTB -xWc -xWc -xWc -gnx -xWc -xWc -mXA -ick -lvH -lAA -ugi saC +yaw +dSt +lEZ +lEZ +lEZ +lEZ +lEZ +lEZ +eLK +dqr +eZY +fuQ +fOM +xXV saC saC saC saC saC iAv +kkZ +kkZ +kkZ +kkZ +kkZ +xRK +xRK +kmz +kkZ +kkZ +kbM +kXc +kXc iAv -iAv -iAv -iAv -iAv -iAv -iAv -iAv -iAv -iAv -iAv -iAv -iAv -iAv -oUq -jfx -nMX -rmA -nMX -nMX -rRA -oUq oUq -rxI -rxI -fjr -ugV -ugV -ugV -crH -beB -beB -beB -beB -beB -utR saS vnX vMM -wrC -wrC -wrC -wrC -wrC -tvO +vnX +vnX +mPY +oUq +ahP +tNr jDO fjr -crH +nRK sjy sjy kSZ @@ -71191,9 +64677,9 @@ jmG rMF rMF jmG -gEk -six +fRq six +fFF jmG rMF rMF @@ -71241,7 +64727,7 @@ gSn jas jas jas -jas +ezu qPL wfC uzr @@ -71258,63 +64744,62 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -vDV -aut -gTw -xho -cNV -cNV -cNV -fxq -fxq +udR +udR +udR +udR +udR +udR saC saC -wLp -qUQ -qUQ -qUQ -qUQ -qUQ -sxU -qUQ -qUQ -qUQ +udR +udR +udR +udR +udR +saC saC saC tiQ -eam -eam -eam +rOf +rOf +rOf tiQ -gxM +lLA tiQ saC saC saC -xZw -xZw -rEV -kmg -kzc -xZw -xZw -xZw -xZw -xZw -xZw -uHn -kfF -saC -saC -saC -saC -saC -saC +yaw +yaw +eDt +ejN +yaw +yaw +yaw +yaw +yaw +yaw +yaw +xED +yaw +xXV saC saC saC +wUp +wUp oUq +isF +isF oUq oUq oUq @@ -71326,38 +64811,18 @@ oUq oUq oUq oUq -hWC -vcF -vsy -wUp -wUp -rXq -oUq -oUq oUq -ugV -ugV -ugV -ugV -ugV -crH -beB -eLK -tmC -tDQ -ueR -uur uQg -eHn -mvR -wrC +lPY +mjs +wvO wvO wSr -jNY -wrC +oUq +oUq tvO jDO -xRK +nPV xlU sjy sjy @@ -71418,9 +64883,9 @@ jmG jmG jmG jmG -uKS -ild -ild +uSY +cqb +rgG jmG jmG jmG @@ -71468,15 +64933,15 @@ aRi jas aCS rbL -jas -jas +ezu +ezu iJx -jas -jas -cpy -cpy -cpy -cpy +ezu +ezu +ezu +ygJ +ygJ +ygJ bMX "} (87,1,1) = {" @@ -71485,34 +64950,34 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -vDV -xho -xho -cNV -cNV -cNV -cNV -cSb -dcD -moZ -moZ -moZ -dDC -dDC -dDC -dDC -dDC -dDC -dDC -dDC +udR +udR +udR +udR +udR +udR +saC +saC +saC +udR +udR +udR +udR saC saC saC tiQ -iBI -xmD -xCS +sse +yaC +eLx tiQ tiQ tiQ @@ -71520,71 +64985,50 @@ saC saC saC saC -xZw -xZw -xZw -kzc -xZw -xZw -xZw -xZw -xZw -xZw -uHn -rEV -aKQ -saC -saC -saC -saC -saC -saC -saC -saC -saC +yaw +yaw +yaw +yaw +yaw +yaw +yaw +yaw +yaw +yaw +xED +eDt +tTl saC saC +wUp +wUp oUq -men -xVB -onM -men -iQb -pXh oUq +pNc +iWy +tnN +tnN +tnN oUq -tTl -bJN -jbn -kXY -kXY -jWZ +tnN +ksf +kEL +tnN +tmC +ldi oUq oUq -ugV -ugV -ugV -ugV -ugV -ugV -crH -beB -sLa -tmC -nTx -nTx -nTx rhF -eHn -jNv -wbL -jyx +lQS +mlE +xBi +xBi jyw -jPk -wrC +oUq +oUq tvO jDO -crH +nRK sjy sjy mhn @@ -71645,9 +65089,9 @@ woq qsC iPO jmG -uKS -ild -ild +wly +qic +wiE jmG yba eAY @@ -71696,12 +65140,12 @@ aAI iBo eso sCi +ezu +wbo +mfK +aLY jas -nQu -uYk -jas -cpy -cpy +ezu cpy cpy bMX @@ -71712,34 +65156,34 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -eVg -otQ -otQ -cNV -cNV -cNV -cNV -qUQ -jth -kbV -kbV -ear -tjg -tjg -tjg -kbV -tjg -tjg -kbV +udR +udR +udR +udR +udR +saC saC saC saC +udR +udR +udR +udR +saC +saC saC tiQ -dli -dli -dli +cRG +cRG +cRG tiQ tiQ tiQ @@ -71748,67 +65192,46 @@ saC saC saC saC -xZw -xZw -saC -xZw -xZw -xZw -xZw -xZw -xZw -uHn -xZw -kfF -saC -saC -saC -saC -saC -saC -mqc -saC +yaw +yaw +yaw +yaw +yaw +yaw +yaw +yaw +yaw +xED +yaw +yaw saC saC -gYK -say -khm -cwr -mLI -pLP -pGe -voX -xED -pVH -lDk -har -jbn -awI -kXY -lbo -lbo -tVa -emH -emH -emH -emH -emH -emH -ahP -beB +wUp +wUp +hJB +uQF +iti +iYL +jur +jur +jVC +kbV +jur +ksm +kFK sLU tmX iJW ueT uFe -rhF -nTx -jNv -wrC -wwn +uQF +lTd +mlE +mua +xBi wTu -htN -wrC +wTu +lqY jBU mGN nKm @@ -71858,8 +65281,8 @@ vXc fXx jmG jmG -ubJ -uok +qxm +iSF uKS uXO ild @@ -71872,9 +65295,9 @@ tdz sLn mgB jmG -vVS -ild -ild +wYe +qic +wiE jmG yba tUg @@ -71923,12 +65346,12 @@ aAI egE vpe wHz -jas -nQu +ezu wbo -jas -cpy -cpy +mfK +aLY +uLv +ezu cpy cpy bMX @@ -71939,103 +65362,82 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -wvV -xLm -xLm -dOa -bDw -enT -dOa -cuF -jth -tjg -tjg -ear -tjg -tjg -tjg -kbV -tjg -tjg -kbV -saC -saC -saC -saC -tiQ -lAK -hmV -vIS -saC +bfn +bzv +udR +udR +udR saC saC saC +udR +udR +udR +udR +udR +udR saC saC +tiQ +iFk +iZS +xLi saC saC saC saC saC -iOl -kmg -xZw -xZw -xZw -xZw -uHn -xZw -xZw -pNv saC saC saC saC -pwB -kwg -kwg saC -kwg -gha -aYd +sGF vxD -kwg -kwg -kwg -gha -kXY +ejN +yaw +yaw +yaw +yaw xED -pyc -kwg -iZS -jBr -mPs -oYu -kXY -lbo -oUq -beB -dhQ -dhQ -dhQ -dhQ -beB -beB -beB -sMY -tnK -tEM -tEM -eHn +yaw +yaw +oXk +saC +wUp +wUp +hKG +uQF vBI -nTx -mvR -wrC -wrC -wrC -dNK -wrC +vBI +vBI +vBI +pRh +qQN +kmP +vBI +vBI +vBI +pRh +xBi +ueT +lvH +vBI +lzb +mmj +osE +mEp +xBi +wTu +oUq jDy mJS qbi @@ -72084,9 +65486,9 @@ yiM vXc fXx jmG -ubJ -ubJ -ubJ +qxm +iSF +biN kyB ldC ldC @@ -72099,9 +65501,9 @@ ild jwM qsr jmG -vVS -ild -rGD +wYe +wiE +qHj jmG etN hOB @@ -72110,7 +65512,7 @@ ild vBd hOB jwM -jwM +kHa vBd vBd fhu @@ -72150,12 +65552,12 @@ jas tKf eso hrU -jas -nQu +ezu nQu -jas -cpy -cpy +gXy +pRY +jFP +ezu cpy cpy bMX @@ -72166,103 +65568,82 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -aVo -xLm -xLm -aQU -xLm -xLm -dOa -qUQ -jth -tjg -tjg -ear -kbV -kbV -kbV -xiY -fKt -fKt -ear -tQw -saC -saC -saC -saC +qJE +vIS xmD -hna -yiu +udR +udR +udR saC +udR +udR +udR +udR +udR +udR +udR saC saC saC +yaC +xsE +yld saC -tiQ -tiQ -tiQ saC saC saC -iOG -udR -udR -nqE -nqE -udR -iKw -udR -udR saC +wUp +wUp +wUp saC saC saC -sse -kwg -mOI -pcH -pcH -pcH -hSQ -pco jBY -pcH sGF -pcH +sGF hSQ -nMX +hSQ +sGF lbt -hzw -pcH -pcH -jEa -kHd -kgR -kXY -llJ -oUq -nrT -mHZ -bJa -bJa -mHZ -ryT -beB -pVX -sNm -ozt -iJW -ueT -uFe +sGF +sGF +saC +saC +wUp +tnN +hKK vBI -nTx -mvR +itz +wfK +wfK +wfK +pYP +ixD +xnk +wfK +wfK +wfK +pYP +vnX +llX +lvN +wfK +wfK +mnQ wcp -wrC -aEM -htN -wrC +bNy +xBi +mVm +oUq fIr mLb urY @@ -72311,8 +65692,8 @@ yiM vXc fXx jmG -ubJ -ubJ +biN +iSF czO jwM ild @@ -72324,20 +65705,20 @@ ild ild ild jwM -jwM +pUR jmG -uKS -jwM -jwM +wly +unC +yhi jmG -gwP +hrl jwM uKS ild tnM wHU woq -jwM +nRC jwM ild ild @@ -72379,10 +65760,10 @@ kwj cxo sQY nQu -nQu -jas -cpy -cpy +wbo +ydO +aLY +ezu cpy cpy bMX @@ -72393,104 +65774,83 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -aVt -beb -bDS -bDS -cqr -cDh -cKp -qUQ -jth -tjg -tjg -ear -kbV -kbV -xiY -xiY -tjg -tjg -kbV -tjg -tjg -hJB -qUQ -vlq +bgc +vIS xmD -hna -yiu -hLY -saC -saC -saC -saC -iDg -rXa -tiQ -tiQ -tiQ -saC -kDU -fTS -cOJ +udR +udR +udR +udR +udR +udR +udR +udR +udR +udR +udR +pHT +wjy +yaj +yaC +xsE +nGU +xLi saC saC -aCR -hkT -fTS -fTS saC saC +sfc +dSy +wUp +wUp +wUp saC -men -sse -kwg -jkJ -kwg -mmh -sQS -mPs -cim -mPs +equ +wBR +eLU +wBR saC +iTX +oeX +wBR +wBR saC saC -fWD -iTX -xED -pex -lDk -kXY -kzd -pSK -kgR -kwg -anb +wUp +tnN +hKK +vBI bJY -jSU -xDu -xDu +vBI xDu +jFr +osE raI -jSU osE -ijE -nTx -eHn +osE +saC +osE eHn -nTx -nTx -vBI -nTx +hKG +ueT +lwc +uQF +xBi vNy -mvR +mwp bNy -jyx +vBI xmN lUU -kgQ +fIr mLO fIr sjy @@ -72551,13 +65911,13 @@ ild ild ild ild -jwM +fPv six -uKS -jwM -ild +wly +unC +wiE six -eHF +jCU ild qBB vBd @@ -72604,12 +65964,12 @@ jas jas jas uFO -jas +ezu nQu nQu -jas -cpy -cpy +gXy +aLY +ezu cpy cpy bMX @@ -72620,105 +65980,84 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -aVF -bfn -tDR -tDR -tDR -cDo +wjy +vIS +xmD +xmD +udR +udR +udR +udR +udR +udR +udR +udR +udR +cFR cKp -qUQ -jth -tjg -tjg -xiY -xiY -saC -saC -xiY -kbV -kbV -caN -hgM -hgM -idn -cSh -oVt -dNn -hna -yiu -hLY -saC -lmY -iBI -hmV -pfj -hdQ -cuu -ban -tiQ -tiQ -kEx -kWH -tiQ -saC -saC -saC +cKF uhx -pwX -pwX -qjG +cRL +xsE +oiW +yld saC -oUq men sse iZS -jkJ -wIx +xLi +xSE jfH -men -iQb -oUq -bUN -saC -saC +ecK +wUp +wUp +eqD +eGQ +xZE saC saC saC -oUq -mVm -sBH -kXY +jDN +qjG +qjG +qjG wGq -mBL -giV -pcH -jBY -fAt +oUq +tnN +hKK +lzb +bJY ixs lxN -lxN -lxN -fJg -ryj -qIy -jWV -izn +tnN +tmC +oUq +xQq +saC +saC +saC tnN tEQ -tEQ -izn +oUq +nqN uRt -eHn +xBi vOj jWV wTn wfK xnk vpk -urY -mOE +nru +nAC fIr sjy sjy @@ -72780,11 +66119,11 @@ ldC ldC iqw cxK -haY -ldC -ldC +jze +grP +grP cxK -ldC +jth ldC uqa ldC @@ -72831,12 +66170,12 @@ aAI hBp eso vpe -jas +ezu wbo nQu -jas -cpy -cpy +gXy +aLY +ezu cpy cpy bMX @@ -72847,64 +66186,64 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -wvV -bgg -tDR -tDR -tDR -sCw -cKp -jur -jth -fsC -kbV -xiY -saC -saC -saC -ffr -xiY -kbV -gPq -fsC -kbV -hJB -qUQ -pwX -knt -qjG -yiu -hLY qJE -ujg -iCk -iQF -jef vIS -pfj -xmD -xmD -tiQ -kEA -seF -tiQ -saC +iCk +nqe +udR +udR +udR +udR +udR +udR +udR +udR +iCk +lwm +pHT +wjy +yaj +vDw +qjG +oiW +yld +yaC +nHg +hzV +dHk +nGU +oDU +xLi +yaC +yaC +wUp +yaj +vVx +xZE +xZE saC saC -yaj +jDN qjG qjG qjG -pwC +wGq oUq -nHg -hzV -iZS -jkJ -xLi -men -men +dNe +hMb +lzb +bJY +iZg +tnN +tnN oUq oUq oUq @@ -72914,36 +66253,15 @@ saC saC oUq oUq -mVm -hrl -kXY -oUE -ntQ -dNe -kXY -lzb -oUq -nrT -mHZ -bJa -mHZ -azF -ryT -beB -ijJ -aNI -iGF -tEW -ueW nqN hLF -iKJ +xBi vOA wcq -wrC -wTJ +mFg +xBi xnP -wrC +oUq urY mOE urY @@ -73005,19 +66323,19 @@ ild whE weM mbO -ild +pum jmG -vVS -ild -jwM +wYe +qic +yhi jmG -xDR -xPa -xPa -xPa -xPa -xPa -iwF +mFZ +ild +ild +ild +ild +ild +ild jwM ild vBd @@ -73058,12 +66376,12 @@ aAI cwe vpe oCs -jas -wbo +ezu +kNo nQu -jas -cpy -cpy +gXy +aLY +ezu cpy cpy bMX @@ -73074,66 +66392,66 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -wvV -bgg -tDR -tDR -cqP -cEw -dOa -fxq -jth -tjg -tjg -xiY -saC -saC -saC -saC -xiY -xiY -gPq -tjg -tjg -hJB -qUQ -pwX -knt -qjG -yiu -hLY -qJE -ujg -iDg -hna -yiu -aWX -jef -pfj +wjy +vIS xmD xmD -bXl -miH -saC +udR +udR +udR saC saC -cYe +udR +udR +nqe +xmD +lrQ +pHT +wjy yaj +vDw qjG -qjG -rbZ -pwC -oUq -men -kUF -gWu -neI +oiW +yld +yaC +nHg +sfc +xsE +oiW +dSW +nGU xLi -men +yaC +yaC +sGv +yaC +yaC +xZE +saC +fvo +jDN +qjG +qjG +oeU +mkh oUq +tnN +hNf +sLc +iGF +iZg +tnN oUq oUq +yjp oUq oUq saC @@ -73142,36 +66460,15 @@ oUq oUq oUq oUq -uzD -oeU -kXY -aYd -kXY -lbo -sLc -oUq -beB -dhQ -dhQ -dhQ -evN -beB -beB -beB -beB -beB -beB -beB -beB -beB +lFk uam xBi -wrC -sgT -sgT -sgT -sgT -urY +qQN +xBi +wTu +oUq +oUq +nsv mOE urY sjy @@ -73234,17 +66531,17 @@ ild ild tkm jmG -uKS -jwM -jwM +wly +unC +yhi jmG -xDD +wov xDR xPa xNi xPa iwF -xDD +ild jwM amY yjU @@ -73285,12 +66582,12 @@ jas yak qbB snR -jas +ezu uYk -nQu +wbo +gXy jas -cpy -cpy +ezu cpy cpy bMX @@ -73301,104 +66598,83 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -hlh -bhd -spI -spI -crm -cEx -dOa -fxq -jth -tjg -tjg -saC -saC -saC -saC -saC -saC -xiY -gPq -tjg -tjg -hJB -qUQ -vlq -knt -hna -yiu -hLY -vhr -ujg -iFB -iSc -wTq -wTq -wTq -bhh -xYD -kry -cxE -miH +wjy +vIS +xmD +xmD +udR saC saC saC -dhJ +udR +udR +udR +nqe +xmD +lrQ +pHT +wjy yaj -qjG -qjG -qjG -dhJ -oUq -oUq +vDw +xsE +oiW +yld +xSE +nHg cUA nMX pco -jzB -oUq -oUq +pco +pco +edk +rCz +eov +ucY +rCz +yaC +xZE +saC +mkh +jDN +qjG +qjG +qjG +mkh oUq oUq -ucY -hGm +qpy +vnX +ixD +jbn oUq oUq +yjp +yjp +yjp +yjp +yjp +yjp oUq -lEd -fHf oUq -lag -lDk -kXY -aYd -nPV -qpy oUq oUq -hhD -hhD -hhD -hhD -xFg -gHD -ahP -yjp -wrC -wrC -tEY -ufF -ufF -wrC +lJl vpB -vOY +xBi qQN -sgT +mGH wUL -alI -sgT -fIr +oUq +ngo +ntL mOE urY sjy @@ -73462,17 +66738,17 @@ xJd jwM jmG wZt -jwM -nPc +yhi +taw jmG -xDD +ild xDD jmG jmG jmG dgR -dgR jmG +ild jwM ora ild @@ -73507,17 +66783,17 @@ jas jas gSn xzV -pIx -jas +vfq jas jas jas jas +ezu jas ogT jas -cpy -cpy +jas +ezu cpy cpy bMX @@ -73528,104 +66804,83 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -wvV -xLm -xLm -bYd -cvP -dOa -dOa -fxq -gdJ -ear -ear -saC -saC -saC +wjy +vIS +nqe +nqe +udR +udR saC saC -saC -saC -vzd -fKt -fKt -fYP -fxq -saC -knt -hna -yiu -hLY -qJE -lmY -iFV -iDg -hdQ -jlh -jEk -bCd -kmP +udR +udR +nqe +nqe xmD -bXl -kXa -saC -saC -saC -dhJ +lrQ +pHT +wjy yaj -qjG -qjG -qjG -dhJ -saC -saC +vDw +xsE +oiW +yld +yaC +men afL sfc xSE bCX -iQb -oUq -oUq -cCL +dWE +edP +ekt +yaC sGv -xgE yaC -vIU -kZe +yaC +xZE +saC mkh -iTI -oUq +jDN +qjG +qjG +qjG +saC oUq -nJO -bJy -dio -kkR +saC lbI -oUq -oUq +pMg +pNo pGh -ugV -ugV -ugV -fjr -jDO -crH -wrC -wrC +tmC +oUq +jWr +jWr +jWr +jWr +yjp +yjp aZT tFf -nzt -iPZ -uSv -jyx +lnF +yjp +yjp +lWa uQF -jGj +uPk wwy jPw -qgr -sgT -fIr +oUq +nhb +ntL uAa urY sjy @@ -73692,13 +66947,13 @@ nnB fvN ful jmG -xDD +ild xDD jmG jmG jmG xDD -xDD +ild jwM aTm dGp @@ -73739,12 +66994,12 @@ eHu eSO hzc tuK -jas +ezu lzP dDp +rej jas -jas -jas +ezu cpy cpy bMX @@ -73755,106 +67010,85 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy tiQ -wvV -dOY -bHa -dOa -dOa -dOa -dZs -fLi -jth -tjg -tjg -saC -saC -saC -saC -saC -saC -saC -frL -tjg -tjg -hJB -sxU -saC -knt -hna -yiu -saC -saC -lmY -lmY -ujg -ujg -ujg -lmY -lmY -kne -mqu -lmY -saC +qJE +vIS +xmD +xmD +udR +udR saC saC -pwC -qjG +udR +udR +nqe +iCk +xmD +lrQ +pHT +cKG yaj +vDw +xsE +oiW +yld +yaC +men +men +nHg +nHg +nHg +men +men +ekK +vVx +men +xZE +xZE +xZE +wGq qjG +jDN qjG -pwC -saC +qjG +wGq saC saC -hXt saC -jkJ -mIq -iQb -oUq -oUq -vVx -fHH -kXY -xZE -kXY -xZE -kXY -gTc -fzK -oUq -oUq -oUq -nBo -oUq -oUq -oUq +hOG +vBI +bJY +jfx +tmC oUq -rxI -fjr -ugV -ugV -ugV -jDO -crH -wrC -sNU +jWr +kca +knS +jWr +yjp +yjp toZ tFk uhF -jyx -wrC -aNn +xHz +yjp +oUq mYo wcO -sgT -wVF -alI -sgT -fIr -fIr -urY +lqY +oUq +oUq +niu +niu +niu +niu sjy wbC ebn @@ -73919,7 +67153,7 @@ eNc wZy teO jmG -aZj +jmG aZj jmG jmG @@ -73966,12 +67200,12 @@ eso uMl vWI hzc -aAI +aZU iTb wIu ntK hkC -jas +ezu cpy cpy bMX @@ -73982,106 +67216,85 @@ cpy cpy cpy cpy +cpy +cpy +cpy tiQ -dzv -dOa -dOa -dOa -cwq -dQg -dZs -fxq -ddN -tjg -tjg -saC -saC -saC -saC -saC -saC -saC -gPq -tjg -tjg -hJB -saC +tiQ +tiQ +tiQ +tiQ +wjy +bzD +xmD +xmD +udR saC -knt -hna -yiu saC saC saC saC +nqe +nqe xmD -xmD -xmD -atz -xmD -knt -xmD -saC +lrQ +pHT +wjy +yaj +vDw +xsE +oiW +yld +yaC +yaC +yaC +yaC +yaC +yaC +dWT +yaC +vDw +yaC saC saC -lrQ +wwG +eVg qjG qjG -yaj +jDN qjG -qgx +gHF saC saC saC -bUN -sse -kwg -jkJ -xLi -iQb -oUq -oUq -oUq -suS -kXY -wwG -hCH -hCH -mzX -har -qvb -oUq -bYZ -kVO -caE xQq +hKK +vBI +bJY +iZg +tmC oUq -oUq -oUq -rxI -fjr -fjr -ugV -fjr -jDO -crH -wrC +jWr +kcb +knT +kti +kFP izT iPZ -iPZ +leV jyx uuA -wrC +lfS vpO -kdw -wrC -sgT -sgT -sgT -sgT -uHN -uHN -uHN +vpO +myz +vpO +vpO +vpO +vpO +ntQ +nBo +nBo sjy sjy lxp @@ -74146,7 +67359,7 @@ jmz uTh aER bDI -whZ +nHA whZ heC jmG @@ -74193,12 +67406,12 @@ eso eso vWI hzc -aAI +aZU ykn vpe uEE eBu -jas +ezu cpy cpy bMX @@ -74209,106 +67422,85 @@ cpy cpy cpy cpy +cpy +cpy tiQ -wvV -bgg -bIr -tDR -tDR -eVi -dZs -qUQ -jth -tjg -tjg -saC -saC -saC +tiQ +wjy +wjy +wjy +tiQ +wjy +vIS +xmD +xmD saC saC saC -kbV -gPq -kbV -kbV -hJB saC saC -knt -hna -wea -jef -uTy -vIS -vIS -vIS -vIS -vIS -gnA -gwK -knS -vIS saC saC -ljQ -pfj +nqe +nqe +lwm +pHT +wjy +yaj +vDw +xsE +iQb +nGU +oDU +oDU +oDU +oDU +oDU +oDU +nMw +eeY +emm +oDU +oiW +oiW +oDU +xLi qjG qjG -yaj +jDN qjG -pwC +wGq saC saC saC -bUN -utH -kwg -jkJ -xLi -nMw -oUq -oUq -hEJ -kgR -aVj -hCH -hCH -tpV -kXY -har -ecK -oUq xQq -kVO -qfo -nMB -oUq -oUq -oUq +hOI +vBI +bJY +iZg +jus oUq -fjr -fjr -fjr -fjr -jDO -crH -wrC -wrC -wrC +jWr +kck +kpo +jWr +yjp +kLs xHz -wrC -wrC -wrC -dLf -sms -wcp +xHz +uuA +lwv +lfS +vpO +vQL +mnX +wwM +wwM +wwM wwM -jYZ -hlH -jHm -jtZ -lvX -lvX +wwM +vQL +vQL sjy sjy sjy @@ -74373,7 +67565,7 @@ kTs unC rqA wdd -mFZ +yhi qNR ifB ptp @@ -74420,12 +67612,12 @@ eso eso lzB wTx -jas +ezu oeT sKx vpe ykn -jas +ezu cpy cpy bMX @@ -74436,106 +67628,85 @@ cpy cpy cpy cpy +cpy +cpy tiQ -wvV -bgg -bIr -tDR -tDR -eVi -cKw -qUQ -jth -tjg -dQm -kbV -saC -saC -saC -saC -saC -fsC -gPq -kbV -kbV -saC -saC -saC -knt -hna -yiu -yiu +wjy +wjy +gRJ +xwZ +xmD xwZ -wea -yiu +bAo +xmD mrc -wXA -wXA -mAC -yiu -yiu +nqe +udR saC saC saC saC +udR +nqe +nqe lwm -pwX -pwX -uhx -vlq -vlq -saC -saC -saC +pHT +wjy +yaj +vDw +xsE +oiW +oiW +oiW iQb -sse +oiW uZV -neI -xLi -men -oUq -oUq -xuQ -fHH -kXY -aVj -har -qts -nMX -nMX -gvk -sSv -raH -hPQ -sMA -oMo -oUq -oUq +vpq +vpq +dXa +oiW +oiW +oiW +oiW +oiW +oiW +nGU +qjG +qjG +jDN +qjG +qjG +saC +saC +saC +tmC +hKK +pNc +iGF +iZg +tnN oUq -fjr -fjr -fjr -fjr -fjr -jDO -crH +jWr +jWr +jWr +jWr +yjp +wrC wrC -sOe -iGM tGI -uhP -uuQ -wuY +wrC +wrC +wrC jNv vQL -eHn -nTx -eHn -nTx -nTx -eHn -eHn -nTx +mzP +wwM +mQd +mVE +niU +nuG +nuG +vQL mrD sjy sjy @@ -74647,12 +67818,12 @@ eso eso lzB xqV -jas +ezu rej xFv vpe jpM -jas +ezu cpy cpy bMX @@ -74663,106 +67834,85 @@ cpy cpy cpy cpy +cpy tiQ -aWu -dPq -tDR -tDR -tDR -cEM -eXe -jur -jth -kbV -kbV -kbV -fKt -tjg -tjg -saC -eHR -bVF -frZ -tjg -tjg -saC -saC -saC +tiQ +wjy gRJ -ggH -wXA -wXA +bAo +nqe +xmD xGX -wXA -wXA -gck -yiu -yiu -yiu -yiu -saC +nqe +nqe +nqe +nqe +udR +udR saC saC saC -yiu -wea -qjG -qjG +udR +udR +xmD +lrQ +pHT +wjy yaj -qjG -saC -saC -saC -tTv -sqH -pwB +cRN +cVc +vpq +vpq +vpq +vpq +vpq kXY -aYd -njn +oiW +oiW nmt -tTv -oUq -oUq +vpq +vpq +vpq acn vpq -lDk -lDk -kuN +vpq +eVi +lbo lbo hrH -wFv +qjG +saC +saC +wUp oUq -kVO -pGQ -lXY fts +hON +xBi +qQN +jis +jvf oUq oUq oUq -fjr -fjr -fjr -fjr -fjr -jDO -crH -wrC +oUq +oUq +yjp sOe nzt rAX uii uuW -uiS -mvR -vBI +lfS +vpO +wwM wcT taO -eHn -nTx -nTx -nTx -eHn -nTx +taO +taO +taO +taO +nFc +wwM mrD sjy nPu @@ -74874,12 +68024,12 @@ ixO eso eso esF -aAI +aZU snu vjr vpe mUj -jas +ezu cpy cpy bMX @@ -74890,107 +68040,86 @@ cpy cpy cpy cpy -cpn -aWz -bhL -bhL -bhL -bhL -cFP -cKy -cSh -ddS -bVF -bVF -bVF -wwi -dcy -hgM -hgM -eHS -kbV -kbV -tjg -saC -saC -saC +cpy tiQ -lAK -hna -yiu -yiu -xwZ -yiu -yiu +wjy +gRJ +bAo nqe -yiu -yiu -yiu -saC +nqe +xmD +nqe +nqe +nqe +nqe +nqe +udR +udR +udR saC saC saC -yiu -mrc -wXA -pHT +udR +xmD +lrQ pHT -mlE +wjy +tiQ +iFk +xsE +oiW +oiW +oiW +oiW +oiW +oiW +oiW +oiW +oiW +oiW +oiW +oiW +nNf +oiW +oiW +oiW +oiW +qjG +qjG saC saC saC -tiQ -tTv -tTv -leG -leG -hhK -leG -tTv -tTv -tTv -oUq -oUq -oUq -oUq -akn -xGR -oUq -oUq -oUq +wUp oUq -jwV -kVO qHD +hPq +hPq +iGM +hPq oUq oUq oUq oUq oUq -fjr -fjr -rxI -fjr -jDO -crH -wrC -wrC -tpz +oUq +yjp +sOe +uhF tGY uiO uwn tQe -itl +vpO aVD oLu -nTx -iJW -ueT -uFe -nTx -nTx -nTx -mvR +beB +mQw +mZW +njF +beB +mcC +vQL +vpO sjy uVj kOS @@ -75101,12 +68230,12 @@ jVV boQ vpe tuK -aAI +aZU hFg urh vpe ntK -jas +ezu cpy cpy bMX @@ -75117,107 +68246,86 @@ cpy cpy cpy cpy -cpn -tDR -tDR -tDR -tDR -tDR -cDo -eXe -qUQ -jth -dGV -roM -roM -ygu -duN -erZ -roM -roM -roM -roM -roM -saC -saC -saC +cpy tiQ +wjy +vIS +nqe +nqe +nqe +xmD +nqe +nqe +bQC +bBF +bXA +udR +udR +udR +udR saC -hna -yiu -yiu saC +cyO +bBF +cGd +pHT +wjy +tiQ saC -yiu -nqe -yiu -yiu +xsE +oiW +oiW saC saC +oiW +oiW +oiW +oiW saC +oiW +oiW +oiW +nNf +oiW +oiW +oiW saC -yiu -yiu -nqe -yiu -yiu saC saC saC saC -tiQ -tiQ -hhQ -ehM -fdE -ayX -lAS -hef -hNf -vsZ -tiQ -tiQ -tiQ -bjd -fSj -qKO -dOt -rSs -oUq -oUq -oUq -oUq -cTU -oUq -oUq -oUq -oUq -oUq -rxI -fjr -fjr -rxI -fjr -jXQ -kFK -ahP +wUp +wUp +hXP +hBB +hPQ +hQU +iIt +idX +jwT +jFG +xZE +xZE +xZE +xZE wrC wrC +kZe iLg uiQ uwY uTv -mvR -rhF -eHn -nTx -nTx -nTx -nTx -nTx -nTx -nTx -mvR +vpO +mnX +mzX +beB +mSc +mSc +mSc +beB +nFt +vQL +vpO kUM oGp xxs @@ -75328,12 +68436,12 @@ ckZ vsI nIJ jas -jas +ezu fwV vjr iJZ ntK -jas +ezu cpy cpy bMX @@ -75344,107 +68452,86 @@ cpy cpy cpy cpy -cpn -tDR -tDR -tDR -tDR -tDR -cEM -cKC -jur -del -dHc -qUQ -qUQ -jri -dEL -qUQ -qUQ -qUQ -qUQ -qUQ -saC -saC -saC -saC tiQ +tiQ +wjy +vIS +nqe +bQC +bBF +xmD +bgg +bBF +bQG +wjy +bYd +udR +udR +udR +udR saC saC +wjy +wjy +cGY +bQG +wjy +udR +saC saC saC saC saC saC -wjy -xwZ -xwZ saC +oiW +oiW +oiW saC saC +oiW +oiW +nNf +oiW +oiW saC -yiu -yiu -nqe -yiu saC saC saC saC -jjV -qJE -tiQ -hhQ -gtX -qjG -vIS -upa -vuS -pfj -ncv -tfK -dXB -tiQ -bjd -eZF -lfj -lfj -yje -lfj -bjd qqN -qqN -sPH +yaC +wUp hXP -qqN -qqN -qqN -ien -rxI -nri +hCv +qjG +oDU +iJJ +jiW +xLi nMC nNi -fjr -fjr -jDO -sSn -ahP +kco +xZE +xZE +xZE +wrC wrC wuY uiS -wuY -wrC -nNH -vBI +lxW +lKC +vpO +moZ eLN beB -dhQ -dhQ -dhQ +mSl +mZX +nly beB mcC -nTx -jNv +vQL +ojn ryv lhT xxs @@ -75540,7 +68627,7 @@ nax nax nax mnb -gSn +jas vpe eso vpe @@ -75555,12 +68642,12 @@ xPF xPF xPF ljr -jas +ezu lAk tOx eso pYG -jas +ezu cpy cpy bMX @@ -75570,107 +68657,86 @@ bMX cpy cpy cpy -cpy -cpn -tDR -tDR -tDR -bZe -spI -aXa tiQ -cTf -dfn -dfn -dfn -jEu -nTl -eWn -oSX -oSX -oSX -nTl -jEu -saC +tiQ +wjy +wjy +vIS +bQC +bQG +wjy +tiQ +wjy +wjy +wjy +wjy +nno +xYD +udR +udR +udR saC saC +nno +wjy +cHj +wjy +wjy +udR saC -tiQ saC saC saC saC saC saC +oiW +oiW +oiW +oiW saC -nqe -yiu -yiu -yiu saC +oiW +nNf +oiW saC saC -xwZ -xwZ -mZN -pEm saC saC -mxp -jWB -xmD -xQc -xQc -xQc -eoA -ehO -qjG -yiu -yiu -jef -vbm -viH -gjB -tiQ -bjd -pqQ -tdM -gqG -yje -lfj -bjd -qqN -vqe -bjC -bjC +fPV +fwo +yaC +xZE +xZE +xZE isL iGl -qqN -ien -ien +qjG +oiW +oiW nGU nMT nOg -fjr -fjr -jDO -fjr -sSn -hhD -hhD -hhD -ahP +kdf +xZE +xZE +xZE +xZE +wrC +lfS +tQe +lfS wrC vqH -vBI -nTx -nTx -nTx -eHn -eHn -nTx -nTx -eHn +mpQ +mAW +mHP +mHP +naC +nmX +nuL +nGc +nuG uWh sjy jft @@ -75767,7 +68833,7 @@ nax nax nax mnb -gSn +wgP vpe eso eso @@ -75782,12 +68848,12 @@ iHw fXG tLl tzd -jas +ezu mIU lTQ nQG clT -jas +ezu cpy cpy bMX @@ -75797,31 +68863,31 @@ bMX cpy cpy cpy -cpy -cpn -tDR -tDR -aWJ -cac -xLm -xLm -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -jcl -jln -ewt -jcl -jcl -jcl -tiQ tiQ +wjy +gRJ +xwZ +bAo +pHT +wjy +wjy tiQ +xmD +xmD +xmD +xmD tiQ +yjL +yjL +yjL +udR +saC +saC tiQ +xmD +lrQ +xmD +xmD tiQ saC saC @@ -75829,75 +68895,54 @@ saC saC saC saC -pEm -nqe -yiu -yiu -yiu +oiW +oiW +oiW +oiW +oiW saC saC -xzu -yiu -yiu -ljm +oWS +nNf +oiW +saC saC saC saC -cnA -hdQ -xmD +yld +xSE +yaC qjG -qJE -xQc -qJE -qJE +oan +rGD +yaC +yaC qjG -yiu +oiW qjG qjG -nqe -hLY -oWS -tiQ -bjd -qEQ -lYK -hvh -pqQ -lfj -bjd -qqN -tbK -oan -wjP -ifh -iGl -qqN -ien -rxI -nLF nNf -nOS -fjr -fjr -jXQ -nQx -fjr -ugV -ugV -ugV -crH -uHN -jNv -rhF -nTx -nTx +yld +kdL +xZE +xZE +dHF +dHF +dHF +dHF +dHF +xFp +wrC +mgJ +mnX +wwM +wwM gfU hGg -uFe -nTx -nTx -eHn +niU +wwM +wwM +mBL pgl sjy bnz @@ -75994,7 +69039,7 @@ uwT uwT uwT bqE -gSn +wgP vpe vpe eso @@ -76009,12 +69054,12 @@ lTj lTj etn tzd -jas +ezu jas hiZ qsN aAI -jas +ezu cpy cpy bMX @@ -76024,31 +69069,31 @@ bMX cpy cpy cpy -cpy -cpn -aWJ -spI -aXa -cay -xLm -tiQ tiQ +wjy +vIS +nqe +nqe +pHT +wjy tiQ -hBg -hBg -hBg tiQ -lXC -lXC -gex -lXC -lXC -lXC +eBm +eBm +eBm +eBm tiQ -dgb -fLK -dgb +xNt +xNt +xNt +xNt +xNt +saC tiQ +eBm +cHL +eBm +eBm tiQ tiQ saC @@ -76056,75 +69101,54 @@ saC saC saC saC -pEm -nqe -yiu -yiu -yiu -saC -xzu -yiu -yiu -yiu -nqe -xzu +oiW +oiW +oiW +oiW +oiW saC -eBm -gWg -xmD +oWS +oiW +nNf +oiW +oiW +oWS +saC +fwj +fwo +yaC qjG qjG -qJE -xQc -xQc -gAS -chT -mis -yiu -acD -nqe -hLY -dcM -tiQ -bjd -qEQ -lYK -hvh -pqQ -lfj -bjd -qqN -vrE -mNI -tLX -igp -bjC -qqN -ien -ien -rxI -ien -rxI -ien -ien -ien -jXQ -vwi -vwi -vpa -ugV -crH +yaC +qjG +qjG +hQU +pEv +iKw +oiW +jwV +nNf +yld +kel +xZE +xZE +vGp +qSH +qSH +qSH +qSH +uRb uHN abX -rhF -eHn -nTx -nTx -nTx -nTx -nTx -nTx -nTx +mnX +mBL +wwM +wwM +wwM +wwM +wwM +vQL +vQL pgl sjy sjy @@ -76149,7 +69173,7 @@ pNs pli lxL tVN -pGl +kqb hAi fpl qcA @@ -76194,9 +69218,9 @@ rgk rgk jmG jmG -uYq -aVX -meb +vBd +ild +ild meb meb aVX @@ -76230,18 +69254,18 @@ mOy vpe kZs pIx -wpF +byy xZy lNT lNT wpF tzd -jas +ezu cVe xFv eso cVe -jas +ezu cpy cpy bMX @@ -76251,103 +69275,82 @@ bMX cpy cpy cpy -cpy -cpn -aXa -bpD -xLm -cbB tiQ +wjy +vIS +nqe +nqe +pHT tiQ -aEL -aEL -aEL -aEL -jcl -jcl -jcl -jcl -ewp -fIe -fIe -fIe -fIe -fIe -fMd -ewt -saC +tiQ +yjL +yjL +yjL +yjL +yjL +bYZ +yjL +yjL +cim +mZU +mZU +mZU +czC +mZU +cIm +hwG +yjL saC tiQ tiQ saC saC saC -pEm -pEm -nqe -yiu -yiu -yiu -xwZ -yiu -mrc -wXA -wXA -mZU -wXA -hwG -syg -xmD -xmD -tMV -jVC -qJE -qJE -cHu -cLH -gAS -aox -rKa -fpm -yld -hpI -xmD -tiQ -bjd -qEQ -lYK +oiW +oiW +oiW +oiW +oiW +oiW +oiW +oiW +oiW +nmt +vpq +vpq +vpq hvh -pqQ -lfj -bjd -qqN -hNj -mNI -hXZ -igp -bjC -qqN -ien -ien -ien -ien -ien -ien -ien -ien +uok +yaC +yaC +yaj +sGv +yaC +yaC +yaj +hRj +hQU +xsE +jjg +jBr +jJa +jWZ +yaC +xZE +xZE spy qnS uRL -hNR +qSH qbu rYi wrC bEk iIG wee -mvR -mvR -wcq +vpO +vpO +nbj xCG xCG xCG @@ -76420,8 +69423,8 @@ spM jmG jmG jmG -vBd -brk +lcD +ild rdF ild jwM @@ -76448,7 +69451,7 @@ uwT uwT uwT bqE -gSn +wgP vpe vpe eso @@ -76457,19 +69460,19 @@ tcK vpe vpe aXB -wpF +byy tHo wpF wpF wpF tzd -jas +ezu ntK xFv nQG fHy -jas -jas +ezu +ezu cpy bMX "} @@ -76478,31 +69481,31 @@ bMX cpy cpy cpy -cpy -cpn -xLm -bsx -tiQ tiQ +wjy +vIS +nqe +xmD +xmD tiQ -aJT -aEL -cTX -iZI -iZI -iZI -svW -ept -hRW -ewm -hRW -gqg -npd -svW -swu -fMx -geq -gnk +atz +aWz +bha +mbq +mbq +mbq +yjL +ame +pxN +ciw +pxN +mAC +cxE +yjL +wvB +ciL +cpZ +kda saC saC tiQ @@ -76510,62 +69513,41 @@ tiQ tiQ saC saC -pEm -mbq -wXA -wXA -wXA -xGX -wXA -mAC -yiu -yiu -yiu -yiu -cpZ -kda -qJE +oiW +oiW +oiW +oiW +oiW +oiW +oiW +oiW +oiW +oiW +oiW +oiW +faK +hdd +yaC qjG qjG -xmD -mPY -qJE -xQc -xQc -fqU -ecU -tXp -xwZ -lrd -ihf -lyu -tiQ -bjd -eZF -lYK -hvh -eZF -lfj -bjd -qqN -vrE -aJr -hYk -igp -bjC -qqN -ien -ien -cpy -ien -cpy -ien -ien -rME +yaC +qjG +yaC +qjG +qjG +idn +iLC +jjo +oiW +faK +fwo +hQU +xZE +xZE nQQ qSH trV -umR +qSH onj wKg wKg @@ -76647,8 +69629,8 @@ wiE woi jmG eSy +wov ild -dco iSF jwM liN @@ -76675,7 +69657,7 @@ uwT uwT fWG bqE -pIx +wrp eso vpe vpe @@ -76684,19 +69666,19 @@ vjr vpe vpe pIx -ksA +uIx ksA wpF wpF ksA tzd -jas +ezu aWT vZS vpe clT dWG -jas +ezu cpy bMX "} @@ -76705,31 +69687,31 @@ bMX cpy cpy cpy -cpy tiQ -xLm -tiQ -tiQ -cbY -aEL -aEL -aLJ -dDS -iZI -iZI -svW -svW -aCQ -swu -eRN -swu -swu -hwt -svW -svW -eRN -swu -swu +wjy +vIS +xmD +xmD +yjL +yjL +yjL +mbq +arh +mbq +mbq +mbq +yjL +xFt +wvB +ciL +wvB +wvB +nVW +yjL +wvB +ciL +wvB +wvB saC saC saC @@ -76738,61 +69720,40 @@ tiQ tiQ saC saC -pEm -yiu -yiu -yiu -xwZ -yiu -yiu -yiu -yiu -yiu -yiu -wvB -xmD -qJE +oiW +oiW +oiW +oiW +oiW +oiW +oiW +oiW +oiW +oiW +oiW +faZ +yaC +yaC +rGD +yaC +yaC qjG -xmD -xmD -mPY -qJE -qJE -xQc -rjl -gyB -aox -yiu -wvB -csS -yai -tiQ -bjd -pqQ -lYK -hvh -eZF -lfj -bjd -qqN -tbK -spn -nCC -igA -iGl -qqN -cpy -cpy -cpy -cpy -cpy -cpy -ien -rMR +yaC +yaC +qjG +idH +rMD +xsE +oiW +faZ +jXp +jlh +xZE +xZE jGa qSH trV -umR +qSH ozQ wKg wKg @@ -76902,7 +69863,7 @@ fWG fWG fWG bqE -pIx +oQH eso eso vpe @@ -76917,13 +69878,13 @@ eQB ksA oiD tzd -jas +ezu fpr vjr sTG fpr blW -jas +ezu cpy bMX "} @@ -76932,32 +69893,32 @@ bMX cpy cpy cpy -cpy -tiQ tiQ tiQ -aEL -aEL -aLJ -aLJ -aLJ -dDS -iZI -fFw -iZI -jcl -aCQ -dXd -exB -jcl -swu -hwt -jcl -swu -dHk -vAu -lkx -tra +xmD +xmD +yjL +yjL +mbq +mbq +mbq +arh +mbq +azz +mbq +yjL +xFt +cbY +ciS +yjL +wvB +nVW +yjL +wvB +cIr +cKw +cKQ +qTE saC saC saC @@ -76966,57 +69927,36 @@ saC saC saC saC -pEm -pEm -yiu -xwZ -yiu -yiu -yiu -yiu -yiu -yiu -wvB -xmD +oiW +oiW +oiW +oiW +oiW +oiW +oiW +oiW +oiW +oiW +faZ +yaC +ubJ qjG +xSE +woU +oDU +xLi +yaC qjG -hdQ -iQe -vIS -jWr -qJE -xQc -xQc -enk -aox -yiu -wvB -pvz -xQc -tiQ -bjd -pqQ -lYK -hvh -pqQ -lfj -bjd -qqN -tbK -bjC -hZn -bjC -iGl -qqN -cpy -cpy -cpy -cpy -cpy -ien -ien -ien -ssh +qjG +sfc +xsE +oiW +faZ +jYj +vqe +xZE +xZE +xZE qSH trV pRv @@ -77144,13 +70084,13 @@ xPF xPF xPF dFz -jas +ezu iRa bUV vpe fpr dWG -jas +ezu cpy bMX "} @@ -77161,30 +70101,30 @@ cpy cpy cpy tiQ -tiQ -aEL -aEL -aLJ -aLJ -aLJ -iZI -dDS -iZI -iZI -iZI -jcl -aCQ -evx -nTl -nTl -jcl -hwt -jcl -iZI -dYX -lXC -lXC -lXC +xmD +yjL +yjL +mbq +mbq +mbq +mbq +arh +mbq +mbq +mbq +yjL +xFt +cce +xYD +xYD +yjL +nVW +yjL +mbq +uul +xNt +xNt +xNt saC saC saC @@ -77194,56 +70134,35 @@ saC saC saC saC -pEm +oiW saC saC -yiu -kVa -yiu -yiu -yiu -uul -dZG -xmD -qjG -qJE -lrQ -dRy -yiu -mMj -qJE -qJE -seF -uPv -iSc -qjG -wvB -xmD +oiW dmE -tiQ -bjd -eZF -lYK -hvh -pqQ -lfj -bjd -qqN -qqN -qqN -qqN -qqN -qqN -qqN -cpy -cpy -cpy -cpy -cpy -cpy -ien -tNQ -qSH +oiW +oiW +oiW +eVW +fbC +yaC +ubJ +yaC +yaC +xsE +oiW +hlh +yaC +yaC +rGD +iMv +nMX +qjG +faZ +yaC +kgb +xZE +xZE +kKD qSH trV umR @@ -77371,13 +70290,13 @@ oxH oxH imh jas -jas +ezu cVe xFv vWI fpr -jas -jas +ezu +ezu cpy bMX "} @@ -77388,31 +70307,31 @@ cpy cpy cpy tiQ -aEL -aEL -aLJ -aLJ -aLJ -aLJ -fib -fXU -fib -fib -aLJ -jcl -aCQ -emr -nTl -nTl -dBe -qZB -jVa -nno -dYX -lXC -lXC -lXC -aCQ +yjL +yjL +mbq +mbq +mbq +mbq +mbq +arh +mbq +mbq +mbq +yjL +xFt +ccu +xYD +xYD +csK +nVW +yjL +xNt +uul +xNt +xNt +xNt +xFt saC saC saC @@ -77423,53 +70342,32 @@ saC saC saC saC -vjl -vjl -yiu -yiu -yiu -yiu -hLY -knt -kOF -qjG -qJE -iQe -baG -yiu -jef -jWr -qJE -seF -xuD -ezB +saC +saC +oiW +oiW +oiW +oiW +yld +vDw +fwX +rGD +yaC +woU +gIH +oiW +nGU +xLi +yaC +rGD +iMx +eqU qjG -tOM -egK -gjB -tiQ -bjd -pqQ -lYK -hvh -qEQ -lfj -mPj -mPj -mPj -mPj -mPj -mPj -mPj -cpy -cpy -cpy -cpy -cpy -cpy -cpy -ien -rNm +jJj +jYu +kdf +xZE +xZE jOw qSH trV @@ -77491,7 +70389,7 @@ yjy xlI sjy uVj -eqM +qts cvi tLE iXT @@ -77602,8 +70500,8 @@ spz njm qup ntK -jas -jas +ezu +ezu cpy cpy bMX @@ -77615,31 +70513,33 @@ cpy cpy tiQ tiQ -aEL -aLJ -aLJ -dFT -aLJ -iZI -iZI -dDS -iZI -iZI -aLJ -jVa -fLP -wSb -nTl -nTl -akk -hwt -jcl -nno -dYX -lXC -lXC -lXC -aCQ +yjL +mbq +mbq +azz +mbq +mbq +mbq +arh +mbq +mbq +mbq +yjL +xFt +cce +xYD +xYD +yjL +nVW +yjL +xNt +uul +xNt +xNt +xNt +xFt +saC +saC saC saC saC @@ -77650,54 +70550,31 @@ saC saC saC saC -vjl -vjl -vjl -xzu -xzu -aWX -hLY -knt +saC +oWS +oiW +oiW +yld +vDw qjG qjG -srf -dRy -yiu -yiu -wea -nmX -qJE -xQc -xQc -ayX -hna -nqe -feS -iDg -tiQ -bjd -pqQ -lYK -hvh -qEQ -lfj -mPj -hgo -hNV -gOo -lfj -bjd -mPj -mPj -cpy -cpy -cpy -cpy -cpy -ien -ien -ien -svK +xSE +xsE +oiW +oiW +iQb +hCU +yaC +qjG +qjG +hQU +xsE +nNf +kaQ +sfc +xZE +xZE +xZE qSH lsR umR @@ -77825,11 +70702,11 @@ aRi sbx aRi aRi -jas +ezu ogT jas -jas -jas +ezu +ezu cpy cpy cpy @@ -77841,33 +70718,33 @@ cpy cpy tiQ tiQ -aEL -aEL -aLJ -aLJ -iZI -iZI -iZI -iZI -cHj -azz -azz -eFP -fIe -egd -ejN -fLA -fLA -eVW -hwt -jcl -nno -rbW -tiQ -tiQ -tiQ -aCQ -lXC +yjL +yjL +mbq +mbq +mbq +mbq +mbq +mbq +aVt +alJ +alJ +alJ +mZU +caE +ccN +cjE +cjE +csU +nVW +yjL +xNt +uul +xNt +xNt +xNt +xFt +xNt saC saC saC @@ -77877,53 +70754,32 @@ saC saC saC saC -vjl -vjl -vjl -vjl -vlq -xwZ -syg -iqz +saC +saC +saC +saC +eHR +oiW +yld +vDw +rGD +yaC +yaC +xsE +oiW +oiW +oiW +yld +yaC +yaC qjG -qJE -qJE -aox -xwZ -xwZ -pEm -syg -qJE -qJE -xQc -pwA -kaQ -nqe -hLY -xmD -tiQ -bjd -pqQ -lYK -hvh -eZF -lfj -vJw -vJw -apd -apd -lfj -lfj -lfj -bjd -mPj -cpy -cpy -cpy -cpy -cpy -ien -iqb +jlh +jCb +nNf +yld +yaC +xZE +xZE kdx vGp trV @@ -78052,10 +70908,10 @@ jas jas jas jas -jas +ezu nQu jas -jas +ezu cpy cpy cpy @@ -78067,34 +70923,34 @@ bMX cpy cpy tiQ -aJT -aEL -aLJ -aLJ -iZI -iZI -iZI iZI -iZI -dDS -iZI -iZI -svW -jcl -aCQ -swu -ojn -swu -swu -hwt -jcl -iZI -dYX -lXC -lXC -lXC -aCQ -lXC +yjL +mbq +mbq +mbq +mbq +mbq +mbq +mbq +arh +mbq +mbq +mbq +yjL +xFt +wvB +clf +wvB +wvB +nVW +yjL +mbq +uul +xNt +xNt +xNt +xFt +xNt saC saC saC @@ -78102,55 +70958,34 @@ saC saC saC saC -thU -thU -thU saC saC -dxc -ntq -qjG -hLY -knt -npb -xmD -iQe -baG -yiu -yiu -yiu -jef -pfj -tRS -yhz -xmD -kaQ -nqe +saC +saC +saC +saC +eHS qjG -hKK -tiQ -bjd -eZF -lYK -hvh -eTQ -qKO -woU -woU -woU +yld +vDw +fxq +yaC woU -xXv -lfj -lfj -lfj -mPj -cpy -cpy -cpy -cpy -cpy -ien -isa +gIH +oiW +oiW +oiW +nGU +xLi +yaC +iMC +yaC +jCb +nNf +qjG +kgm +xZE +xZE svK sRI trV @@ -78279,10 +71114,10 @@ vSC jas etq phq -jas +ezu nQu uTY -jas +ezu cpy cpy cpy @@ -78294,35 +71129,35 @@ bMX cpy tiQ tiQ -aEL -aLJ -aLJ -iZI -iZI -ccN -cwO -cwO -cKQ -cUg -iZI -dHj -vNr -jcl -egt -swu -swu -swu -swu -hwt -jcl -swu -dYX -lXC -lXC -lXC -aCQ -lXC +yjL +mbq +mbq +mbq +mbq +aGI +ijO ijO +aWJ +bhd +mbq +bRN +bVG +yjL +caN +wvB +wvB +wvB +wvB +nVW +yjL +wvB +uul +xNt +xNt +xNt +xFt +xNt +azF saC tiQ saC @@ -78335,51 +71170,30 @@ saC saC saC saC -vjl -qjG -hLY -knt -tMV -xmD -hna -yiu -yiu -yiu -yiu -noD -jWB -tRS -aiO -snP -vxq -dxJ -jWB -pAw -tiQ -bjd +saC yje -eMm -grz -hNP -hNP -hNP -hNP -hNP -vFD -dfK -xXv -lfj -lfj -mPj -cpy -cpy -cpy -cpy -ien -ien -ien -ruv -ilU +yld +vDw +yaj +yaC +xsE +oiW +oiW +oiW +oiW +fwj +fwo +yaC +rGD +jln +jCc +jJI +fwo +khG +xZE +xZE +xZE +isa trV umR qSH @@ -78506,10 +71320,10 @@ phq jas kXk phq -jas +ezu nQu aEF -jas +ezu cpy cpy cpy @@ -78520,36 +71334,36 @@ bMX bMX cpy tiQ -acq -bJE -aLJ -dFR -azz -azz -azz -azz -cFR -cKS -eJw -iZI -iZI -fib -jcl -aCQ -swu -swu -swu -swu -hwt jcl -swu -dYX -lXC -lXC -lXC -aCQ -lXC -lXC +aea +mbq +aqT +alJ +alJ +alJ +alJ +aVo +aXa +bhh +mbq +mbq +mbq +yjL +xFt +wvB +wvB +wvB +wvB +nVW +yjL +wvB +uul +xNt +xNt +xNt +xFt +xNt +xNt tiQ tiQ saC @@ -78563,50 +71377,29 @@ saC saC qjG qjG -yiu -hLY -knt -mad -xmD -juw -wea -yiu -yiu -yiu -hLY -saC -saC -xQc -mMr -eJq -knt -xmD -jpm -tiQ -bjd -yje -lfj -eMm -qsW -qsW +oiW +yld +vDw qsW -cgn -mqx -jZE -hZK -pqQ +yaC +gfL +iQb +oiW +oiW +oiW +yld qpd -gOo -mPj -cpy -cpy -cpy -cpy -cpy -ien -iel -iel +idX +iOi +jnp +jCq +hSO +yaC +kiT +xZE +xZE iel +svK trV pZo qSH @@ -78689,8 +71482,8 @@ taw aYQ gJM jmG -jCU -ild +gND +jSB jwM okA bbd @@ -78720,7 +71513,7 @@ coR ozw ozw xcP -gSn +wgP vpe tJN rNv @@ -78733,10 +71526,10 @@ lHS jas jas qNg -jas +ezu rmp aEF -jas +ezu cpy cpy cpy @@ -78747,36 +71540,36 @@ bMX bMX cpy tiQ -afn -iZI -bNE -dDS -iZI -fFw -iZI -cxu -cGY -hgy -iZI -iZI -iZI -aLJ -jcl -aCQ -bOv -lXC -eAz -lFk -hwt -jcl -swu -dYX -tiQ -tiQ -tiQ -hfi -lXC -lXC +aaX +mbq +akM +arh +mbq +azz +mbq +aRH +aVs +aZD +mbq +mbq +mbq +mbq +yjL +xFt +jEq +xNt +cpn +cuF +nVW +yjL +wvB +uul +xNt +xNt +xNt +cRT +xNt +xNt tiQ saC saC @@ -78784,56 +71577,35 @@ saC saC saC tiQ -jEq +dXd saC qjG qjG -yiu -yiu -yiu -lDc -lMN -tMV -mnw -qjG -yiu -yiu -yiu -yiu -saC -saC -tiQ -tiQ -tiQ -seF -kne -rCz -yhz -tiQ -bjd -eTQ +oiW +oiW +oiW aLf kbb -pMz +yaj yaH -tyU -lYK -mqx -mqx -icr -pqQ -qpd -gOo -mPj -cpy -cpy -cpy -cpy -cpy -ien -iel -iel -iel +qjG +oiW +oiW +oiW +oiW +yld +vDw +xZE +xZE +xZE +xZE +xZE +xZE +xZE +xZE +xZE +sRI +vGp trV pZo vGp @@ -78917,7 +71689,7 @@ jmG jmG jmG jmG -six +rCM six jmG jmG @@ -78960,10 +71732,10 @@ phq lHS phq aam -jas +ezu wcM aEF -jas +ezu cpy cpy cpy @@ -78974,36 +71746,36 @@ bMX bMX cpy tiQ -aEL -aqT -azz -aZD -iZI -iZI -iZI -clf -cHj -frH -ciS -iZI -iZI -fFp -nno -nTl -nTl -nTl -nTl -nTl -nTl -lXC -swu -dYX -lXC -lXC -lXC -aCQ -lXC -lXC +yjL +afn +alJ +arN +mbq +mbq +mbq +aTA +aVt +bby +aJT +mbq +mbq +bVX +xNt +xYD +xYD +xYD +xYD +xYD +xYD +xNt +wvB +uul +xNt +xNt +xNt +xFt +xNt +xNt tiQ saC saC @@ -79011,55 +71783,34 @@ saC saC saC tiQ -lKl -xmD -rVB -mbs -mLX -leH -lmu -lDr -lNI -qET -ugN -pHT -lXQ -yiu -yiu -yiu -hLY -tRS -cRD -sRx -cRD -xmD -knt -xmD +dXq +yaC +emr skk lTi -bjd -bjd +eHX +eMl eRg wRf -bjd +uhx hKI -hFA -lYK -mqx -mqx -icr -pqQ -qpd -gOo -mPj -cpy -cpy -cpy -cpy -ien -ien -ien -khG +lbo +gIZ +oiW +oiW +oiW +yld +vDw +xZE +xZE +xZE +xZE +xZE +xZE +xZE +xZE +xZE +xZE isa trV pZo @@ -79161,7 +71912,7 @@ uwT uwT fWG jKa -gSn +wgP vpe eso vpe @@ -79174,7 +71925,7 @@ eso vjr eso eso -gSn +wgP eso eso ipw @@ -79187,10 +71938,10 @@ cmc phq phq qYq -jas +ezu wbo aEF -jas +ezu cpy cpy cpy @@ -79201,91 +71952,70 @@ bMX bMX cpy tiQ -jEu -aEL -svW -svW -jcl -jcl -jcl -jcl -aqT -jcl -eJZ -dgO -aEL nno -nno -nTl -nTl -nTl -nTl -nTl -nTl -lXC -lXC -dYX -lXC -lXC -lXC -aCQ -lXC -lXC +yjL +hwt +hwt +yjL +yjL +yjL +yjL +afn +yjL +bhL +bCd +yjL +xNt +xNt +xYD +xYD +xYD +xYD +xYD +xYD +xNt +xNt +uul +xNt +xNt +xNt +xFt +xNt tiQ tiQ -saC -saC -saC -saC tiQ -jEu -xmD -xYD -fxh -ezB +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ +yaC +rCz +kss +eqU saC -lmz -liK -xmD +eMz +rMD +yaC saC saC qjG -yaj -yiu -kEL -yiu -noV -lyu -cRD -ayX -xVq -liK -gyC -pfj -ayX -qjG -lTi -bjd -rMD -eZF -bjd -bjd -bjd -lYK -mqx -mqx -icr -pqQ -qpd -gOo -mPj -cpy -cpy -cpy -cpy -cpy -ien -ssh +jDN +oiW +gUm +oiW +hCU +hRG +xZE +xZE +xZE +xZE +xZE +xZE +xZE +xZE +xZE tNQ vGp trV @@ -79298,7 +72028,7 @@ vwl fUx nWD wZw -ydb +nbD jll jRT jRc @@ -79401,7 +72131,7 @@ lWf cxo vpe ozw -gSn +wgP aRi ozw xFv @@ -79413,11 +72143,11 @@ fYw aGy eJd ptU -jas -jas +ezu +ezu wbo aEF -jas +ezu cpy cpy cpy @@ -79428,91 +72158,70 @@ bMX bMX cpy cpy -efy -bKb -aAb -hRW -hRW -hRW -hRW -hRW -gqg -hRW -eMl -iOx -cHL -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl nTl -dYX -lXC -lXC -lXC -aCQ -lXC -lXC -saC -saC -saC -saC -saC +afp +ame +pxN +pxN +pxN +pxN +pxN +mAC +pxN +bjT +bDr +pxN +xYD +xYD +xYD +xYD +xYD +xYD +xYD +xYD +xYD +xYD +uul +xNt +xNt +xNt +xFt +tiQ +tiQ +dhW +doj +drS +haG +xVq +tiQ +tiQ +tiQ +yaC +rCz +vDw +erZ saC saC -tiQ -jYE -xYD -knt -lAD saC saC -cWH -cHy saC saC -myV -yaj -qjG -yiu -yiu -hLY -haG -xVq -xmD -xVq -xmD -jjl -hLY -vDw -rbZ -qjG -bjd -rMD -eZF -bjd -fSf cZH jDN -mqx -nJW -icr -eZF -lfj -lfj -mPj -cpy -cpy -cpy -cpy -cpy -ien -cRN +qjG +oiW +oiW +yld +hSi +xZE +xZE +xZE +xZE +xZE +xZE +xZE +xZE +xZE vTx vTx trV @@ -79615,7 +72324,7 @@ uwT uwT uwT bqE -gSn +wgP vpe vpe wwc @@ -79634,17 +72343,17 @@ jas nOT jas jas -jas -jas -jas -jas -jas -jas -jas +ezu +ezu +ezu +ezu +ezu +ezu +ezu hra nQu aEF -jas +ezu cpy cpy cpy @@ -79655,91 +72364,70 @@ bMX bMX cpy cpy -efy -jcl -bNT -swu -bxU -swu -swu -swu -swu -cyv -eMz -cyv -gdX -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl nTl +yjL dZd -hRW -hRW -hRW -egD -lXC -lXC -saC -saC -saC -saC -saC -saC -saC -xQc -lAK +wvB +asI +wvB +wvB +wvB +wvB +bbL +bkQ +bbL +bSM +xYD +xYD +xYD +xYD +xYD +xYD +xYD +xYD +xYD xYD -ljd -saC -saC -ncA lDN pxN -saC -cHy +pxN +pxN sdR -lNA -wXA +tiQ +dck vhA -wXA -iyQ +suG +suG qix eKK hef -eKK -hef +tiQ +tiQ iFk -jef -pfj -qjG -qjG -bjd -lfj -pqQ -bjd -fSf -cZH -mqx -mqx -mqx -icr -pqQ +rCz +eow +saC +saC +eNT +saC +saC +saC +saC qpd -gOo -mPj -cpy -cpy -cpy +mqx +vpq +gZJ +vpq +hDa +hSO +xZE +xZE +xZE +xZE +xZE +wDj wDj wDj wDj -vGB vGB wDj wDj @@ -79871,7 +72559,7 @@ nQu nQu nQu haF -jas +ezu cpy cpy cpy @@ -79882,86 +72570,65 @@ bMX bMX cpy cpy -efy -bLh -bQC -lXC -lXC -lXC -lXC -lXC -lXC -ezW -cUh -dhW -nno -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl nTl +afA efS -elx -enr -elx -elx -elx -aDS -saC -saC +xNt +xNt +xNt +xNt +xNt +xNt +bce +bny +bDw +xNt +xYD +xYD +xYD +xYD +xYD +xYD +xYD +xYD +xYD +xYD +oem +maj +cKS +maj +cSb +tiQ +dcy +dhX +doC +tlv +dBC +tlv +dOa +dTs +dXN +yaC +yaC +vDw +evx saC saC saC saC saC -xQc -xmD -xmD -knt -kFo saC -nwR -oem -maj -maj -cWH -knt -hna -yiu -yiu -pEm -tlv -qJE -xVq -xmD -xVq -ayX -hna -yiu -oyK -ayX -vKP -bjd -lfj -pqQ -bjd -fSf -heU -qsW -qsW -qsW -idq -pqQ -qpd -gOo -mPj -cpy -cpy +vDw +xsE +oiW +oiW +oiW +yld +yaC +xZE +xZE +xZE +xZE wDj nJV elX @@ -79988,7 +72655,7 @@ qSH qSH sPh pKX -xnI +qzy ykT djM rie @@ -80088,7 +72755,7 @@ vpe eso vpe ahZ -jas +pGl jas jfP mKZ @@ -80097,8 +72764,8 @@ pYO apC apC tWv -jas -jas +ezu +ezu cpy cpy cpy @@ -80109,36 +72776,47 @@ bMX bMX cpy cpy -efy -bLk -cce -lXC -lXC -ijO -ciL -lXC -crX -eBi -cUl -dhX -dIX -nTl -nTl -nTl nTl -nTl -nTl -nTl -nTl -nTl -nTl -nno -nno -lXC -lXC -lXC -lXC -lXC +ahH +ana +xNt +xNt +azF +aJr +xNt +aVF +bco +bpD +bDS +bUJ +xYD +xYD +xYD +xYD +xYD +xYD +xYD +xYD +xYD +xYD +cIs +xNt +xNt +xNt +xNt +tiQ +dcD +dio +doP +dsq +dsq +dHR +tlv +dTv +uGj +yaj +yaj +ekK saC saC saC @@ -80146,49 +72824,17 @@ saC saC saC saC -xQc -tMV -tMV -kne -cHy -mkb -lnd -xYD -pAN -maj -mql -knt -hna -yiu -yiu -yiu -syg -xmD -xVq -xmD -xVq -uGj -hna -wea -hLY -dpz -qjG -bjd -lfj -pqQ -bjd -bjd -bjd -rMD -rMD -rMD -lfj -pqQ -qpd -gOo -mPj -cpy -cpy +vDw +xsE +oiW +oiW +oiW +yld +yaC +xZE +xZE +xZE +xZE wDj aJS ezo @@ -80280,7 +72926,7 @@ otS hMz fWG cpy -uwT +cpy uwT uwT uwT @@ -80315,16 +72961,16 @@ eso sjA vpe goO -jas +ezu jas jas jas nQT jas -jas -jas -jas -jas +ezu +ezu +ezu +pGl cpy cpy cpy @@ -80336,36 +72982,47 @@ bMX bMX cpy cpy -efy -bMa -aCQ -swu -swu -swu -cil -swu -swu -eBH -cVc -dip -gnd -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl nTl -gKM -jhS -jhS -tra +ahJ +xFt +wvB +wvB +wvB egY -lXC -lXC +wvB +wvB +bcP +bsx +bHa +bSM +xYD +xYD +xYD +xYD +xYD +xYD +xYD +xYD +xYD +xYD +oKK +qTE +qTE +qTE +wyA +tiQ +ddo +vhA +dpg +dtr +dCx +cRD +uvt +dTW +tiQ +qqN +yaC +vDw saC saC saC @@ -80373,53 +73030,21 @@ saC saC saC saC -xQc -jjV -xmD -knt -cHy -mlp -nxQ -oKK -pDM -qTE -cHy -wyA -hna -yiu -yiu -yiu -syg -xmD -cRD -uvt -xVq -uGj -gGg -wTq -jWB -lKl -lTi -bjd -lfj -dfK -qKO -xLr hfE xsE -xsE -xsE -lfj -pqQ -qpd -mPj -mPj -mPj -mPj +oiW +oiW +oiW +yld +yaC +xZE +xZE +xZE +xZE wDj cPg eJR -kbH +gok iHD ksk kQc @@ -80542,13 +73167,13 @@ eFb sjA eso goO -jas +ezu ctE jas aEF nQu wcM -jas +ezu cpy cpy cpy @@ -80563,90 +73188,69 @@ bMX bMX cpy cpy -efy -bIQ -ccu -tra -tra -tra -tra -tra -tra -tra -cVm -cAp -tra -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl -nTl nTl +mrL vQn -lXC -lXC -lXC -aCQ -lXC -lXC -saC -saC -saC -saC -saC -saC -saC -tiQ -dXo +qTE +qTE +qTE +qTE +qTE +qTE +qTE +bsz +bIr +qTE +xYD xYD -kpE -cHy -cHy -nEd -piW -pEp -cHy -cHy -knt -hna +xYD +xYD +xYD +xYD +xYD +xYD +xYD +xYD +nVW +xNt +xNt +xNt +xFt +tiQ qFW -yiu +dip noD ihf suG -cRD -lkl -xVq -hdQ -ayX -nqQ -hdQ -asH +dIX +dOt tiQ -bjd -dXX -rMD -rMD -lao -eZF -xsE -xsE +tiQ +efy +rCz +eoA +saC +saC +saC +saC +saC +saC +xZE +vDw xsE -lfj -eZF -lfj -lfj -lfj -bjd -bjd -mPj +gTX +oiW +fwj +fwo +hTd +xZE +xZE +alI +alI +alI bel ftd -lTd +gok iJE kvM kYL @@ -80757,25 +73361,25 @@ xzK xzK jas jas -gSn -gSn -gSn -jas -jas -jas -jas -jas +sCD +sCD +sCD jas jas jas jas jas +ezu +ezu +ezu +ezu +ezu ctE jas kFd nQu qIt -jas +ezu cpy cpy cpy @@ -80790,89 +73394,68 @@ bMX bMX cpy tiQ -jEu -bIQ -svW -svW -oUZ -jcl -jcl -jcl -jcl -jcl -eJZ -hwt -jcl -lXC -lXC -nTl -nTl -nTl -nTl -nTl -nTl nno -lXC +mrL hwt -lXC -lXC -lXC -fkW -lXC -lXC -hOy -saC -saC -saC -saC -saC -tiQ -jEu -xmD +hwt +atz +yjL +yjL +yjL +yjL +yjL +mTE +xCS +yjL +xNt +xNt xYD -kpE -xmD -cHy -cHy -cWH -cHy -cHy -uQi -knt -juw -kEL -yiu -hLY -saC -saC +xYD +xYD +xYD +xYD +xYD +xNt +xNt +nVW +xNt +xNt +xNt +cSh tiQ tiQ +djq +dpj +duN +dDC +dJs tiQ -seF -tMV -rCz -seF tiQ tiQ -bjd -eZq -gwk -lfj -bjd -yje -xsE -xsE -xsE -xsE -hRy -hVk -hVk -hVk -xnX +yaC +rCz +eoA +yaC +saC +saC +saC +qjG +qjG +fRd +vDw +gfL +gUm +oiW +yld +saC +saC +xZE +alI +alI gib -mPj +alI btP -axN +eJR eJR iMQ wDj @@ -80991,8 +73574,8 @@ tkA cpy cpy cpy -cpy -abo +ygJ +bAB ctE ctE ctE @@ -81002,7 +73585,7 @@ jas wHX nQu sZz -jas +ezu cpy cpy cpy @@ -81015,90 +73598,69 @@ bMX "} (129,1,1) = {" bMX -saC +cpy tiQ -bwU -aqT -azz -azz -azz +abS +afn +alJ +alJ +alJ +alJ +aJT +mbq +mbq +mbq +arh azz -ciS -iZI -iZI -iZI -dDS -fFw -iZI -iZI -lXC -nTl -nTl -nTl -nTl -nTl -nTl -lXC -swu -hwt -lXC -lXC -lXC -aCQ -lXC -lXC +mbq +mbq +xNt +xYD +xYD +xYD +xYD +xYD +xYD +xNt +wvB +nVW +xNt +xNt +xNt +xFt +xNt +tiQ +tiQ tiQ -saC -saC -saC -saC -saC tiQ -jjV -xmD -xYD -fxh -hdQ -tMV -whK -xmD -xmD -xmD -xmD -gyC -kpG -saC -saC -saC -saC tiQ tiQ -yai -ayX -ayX -xmD -xmD -kss tiQ tiQ -bjd -fvQ -fvQ -bjd -bjd +tiQ +yaC +rCz +kss +xSE +yaj +yaj +yaC +yaC +yaC +yaC lwr hgQ -xsE -xsE -xsE -xsE -xsE -xsE -xsE +saC +saC +saC +saC +xZE +xZE +alI caV pcV xLr -lAa +xdx gjA rtX wDj @@ -81120,7 +73682,7 @@ qSH qSH vGp vGp -kqp +oiA xZP uNB xUQ @@ -81156,7 +73718,7 @@ xXg diT rnB rnB -cpy +rnB rnB rnB tTD @@ -81218,7 +73780,7 @@ wQa wQa cpy cpy -abo +bAB ctE ctE ctE @@ -81229,7 +73791,7 @@ jas wHX nQu fZA -jas +ezu cpy cpy cpy @@ -81242,89 +73804,68 @@ bMX "} (130,1,1) = {" bMX +cpy saC saC -saC -aLJ -iZI -iZI -iZI -iZI -dDS -fFw -iZI -iZI -dDS -iZI -iZI -iZI -jcl -aCQ -pQR -nno -nno -jPz -hwt -jcl -iRY -hwt -tiQ -tiQ -tiQ -aCQ -lXC -lXC -tiQ -saC -saC -saC -saC -saC -tiQ -jjV -iQe -vIS +mbq +mbq +mbq +mbq +mbq +arh +azz +mbq +mbq +arh +mbq +mbq +mbq +yjL +xFt +kBm +xNt +xNt kBm -pEs -qET +nVW +yjL aqo -pEs -rmV -gwK -gwK +nVW +xNt +xNt +xNt xFt -yiu -yiu +xNt +xNt +tiQ +saC +saC saC saC saC tiQ -kgm -gIZ -iQe -vIS -vIS -pfj +qqN +woU +oDU vAX kJc -tiQ -bjd -fDC +uhx +uhx +kJc gNN -bjd -bjd +eeY +eeY gzY -ama -hgQ -xsE -xsE -xsE -xsE -xsE -xsE -iLC +oiW +oiW +saC +saC +xZE +xZE +xZE +alI +alI tyb -lao +alI iJE gok rtX @@ -81346,7 +73887,7 @@ qSH qSH vGp vGp -kqp +oiA xFp pKX pKX @@ -81382,7 +73923,7 @@ tTK tTK gjt diT -cpy +rnB cpy rnB rnB @@ -81445,7 +73986,7 @@ wQa wQa wQa cpy -abo +bAB ctE ctE ctE @@ -81456,7 +73997,7 @@ jas jGe nQu dLC -jas +ezu cpy cpy cpy @@ -81469,38 +74010,38 @@ bMX "} (131,1,1) = {" bMX +cpy saC -saC -aGI -bdv -aLJ -aLJ -iZI -iZI -dDS -iZI -cIr -iZI -eOe -iZI -iZI -fFw -jcl -aCQ -swu mrL -mrL -mrL -hwt -jcl -swu -hwt -lXC -lXC -lXC -aCQ -lXC -lXC +ahJ +mbq +mbq +mbq +mbq +arh +mbq +aWu +mbq +bvI +mbq +mbq +azz +yjL +xFt +wvB +wvB +wvB +wvB +nVW +yjL +wvB +nVW +xNt +xNt +xNt +xFt +xNt +xNt tiQ tiQ saC @@ -81508,50 +74049,29 @@ saC saC saC tiQ -xmD -hna -yiu -hLY -xmD -tMV -whK -xmD -ajY -yiu -yiu -nqe -yiu -yiu -yiu -saC +yaC +xsE +oiW +yld +yaC +yaj +yaj +yaC +fcV +oiW +oiW +oiW +oiW +oiW +oiW saC -tiQ -dck -hmV -qCE -xSL -txo -jef -pfj -eHp -tiQ -bjd -fDC -gNN -fDC -bjd -bjd -rMD -hRy -hVk -ubF -ubF -ubF -hVk -hVk -otx -qYy -mPj +xZE +xZE +xZE +xZE +alI +alI +alI rtX iJE rtX @@ -81564,7 +74084,7 @@ qSH qSH vGp vGp -kqp +oiA ecq vTx qJU @@ -81577,7 +74097,7 @@ xFp tDS tDS anw -tdV +qCE paK ePc nmB @@ -81672,7 +74192,7 @@ wQa wQa wQa cpy -cpy +ygJ ctE ctE ctE @@ -81683,7 +74203,7 @@ jas jGe nQu nQu -jas +ezu cpy cpy cpy @@ -81696,89 +74216,68 @@ bMX "} (132,1,1) = {" bMX +cpy saC saC -saC -aGI -aLJ -aLJ -aLJ -aLJ -dDS -iZI -iZI -iZI -dDS -fpn -iZI -oim -jcl -aCQ -swu -swu -mrL -lFd -qZB -jVa -mrL -hwt -lXC -lXC -lXC -fkW -lXC -lXC mrL +mbq +mbq +mbq +mbq +arh +mbq +mbq +mbq +arh +bIQ +mbq +bWq +yjL +xFt +wvB +wvB +wvB +aqo +nVW +yjL +wvB +nVW +xNt +xNt +xNt +cSh +xNt +xNt +wvB tiQ saC saC saC tiQ tiQ -vjl -hna -yiu -hLY -xCS -tiQ -tiQ -lAK -xNt -yiu -yiu -nqe -yiu -yiu -yiu -hLY -xmD -idX -mFg -tqh -iQe -csy -wWc -pfj -syV +qjG +xsE +oiW +yld eLx -vKP -bjd -rMD +xZE +xZE +iFk gOo -rMD -bjd -bjd -rMD -xsE -xsE -xsE -xsE -rMD -rMD -rMD -bjd -bjd -mPj +oiW +oiW +oiW +oiW +oiW +oiW +xZE +xZE +xZE +xZE +xZE +xZE +xZE +wDj rhh rtX xjU @@ -81790,7 +74289,7 @@ fcW qSH vGp vGp -kqp +oiA xFp tDS tDS @@ -81837,7 +74336,7 @@ tTK tTK dCJ rnB -cpy +rnB cpy tTD tTD @@ -81899,8 +74398,8 @@ wQa wQa wQa cpy -cpy -abo +ygJ +bAB ctE ctE ctE @@ -81910,7 +74409,7 @@ jas lYG nQu hcO -jas +ezu cpy cpy cpy @@ -81923,87 +74422,66 @@ bMX "} (133,1,1) = {" bMX +cpy saC saC saC -saC -aGI -aLJ -aLJ -dFT -cmB -azz +mrL +mbq +mbq azz -cMc -cVy -iZI -dJs -svW -jcl -aCQ -swu -swu -swu -swu -hwt -jcl -nno +aKK +alJ +alJ +bdv +bwU +mbq +bVF hwt -lXC -lXC -lXC -aCQ -lXC -nno -mrL -saC -saC -saC -saC +yjL +xFt +wvB +wvB +wvB +wvB +nVW +yjL +xNt +nVW +xNt +xNt +xNt +xFt +xNt +xNt +wvB saC saC saC saC -yiu +qjG +qjG +qjG +qjG +oiW saC saC -tiQ -tiQ -xmD -hna -yiu -mrc -mAC -yiu -yiu -kVa -hLY -hdQ -yjg -xmD -hna -wAE -lmY -lmY -sfM -hLY -xmD -qjG -bjd -rMD -lfj -lfj -fDC -bjd -rMD -xsE -xsE +xZE +xZE +yaC xsE -rMD -wDj -wDj -wDj -wDj +oiW +oiW +oiW +oiW +oiW +dmE +xZE +xZE +cpy +cpy +cpy +cpy wDj wDj vGB @@ -82022,10 +74500,10 @@ tDS tDS vzg vUx -nmB +ncv nrL -nmB -ddP +ncv +nGC vwQ wRa tDS @@ -82063,8 +74541,8 @@ bDn rcV tTK dCJ -cpy -cpy +rnB +rnB rnB tTD tTD @@ -82127,7 +74605,7 @@ wQa cpy cpy cpy -cpy +ygJ ctE ctE ctE @@ -82137,7 +74615,7 @@ jas uCo sid glQ -jas +ezu cpy cpy cpy @@ -82150,92 +74628,71 @@ bMX "} (134,1,1) = {" bMX +cpy saC saC saC saC saC -saC -cdj -aLJ -aLJ -aLJ -iZI -iZI -dDS -fFw -iZI -svW -jcl -aCQ -swu -jcl -jcl -swu +atV +mbq +mbq +mbq +mbq +mbq +arh +azz +mbq hwt -jcl -nno -bye -tiQ -tiQ -tiQ -fmB -nno -nno -lFd -saC -saC -saC -saC -saC -saC +yjL +xFt +wvB +yjL +yjL +wvB +nVW +yjL +xNt +cIV +xNt +xNt +xNt +xFt +xNt +xNt +aqo +qjG saC saC +qjG +qjG +qjG +qjG +qjG saC saC saC -tiQ -tiQ +xZE +xZE saC -rVB -mbs -msb -wTq -wTq -wTq -wTq -jWB -xmD -tMV -xmD -hna -wAE -lmY -lmY -sfM -hLY -ayX -qjG -bjd -lfj -gOo -gOo -rMD -lao -rMD -xsE -xsE -rMD -wDj -wDj -sOL -sOL -sOL +pEv +pco +pco +pco +pco +pco +pco +xZE +cpy +cpy +cpy +cpy +cpy wDj eOT -sOL -sOL -sOL +jJO +jJO +jJO wDj xFp ezj @@ -82247,14 +74704,14 @@ vGp uRb hDZ nuQ -btb +mKN fAH gsM hOl -tww -tww +muV +muV vxe -way +ooe fRk ydV kVT @@ -82290,7 +74747,7 @@ viD qxL tTK dCJ -cpy +rnB rnB tTD rnB @@ -82354,17 +74811,17 @@ wQa wQa cpy cpy -cpy -cpy -abo -abo +tsm +ygJ +bAB +mbi ctE ctE jas jas ogT jas -jas +ezu cpy cpy cpy @@ -82377,91 +74834,70 @@ bMX "} (135,1,1) = {" bMX +cpy saC saC saC saC saC saC -saC -aLJ -aLJ -aLJ -aLJ -fib -gbQ -jYj -jYj -elx -fIe -egd -ewt -nTl -nTl -jcl -hwt -jcl -lXC -hwt -lXC -lXC -lXC -fmB -nno -nno -saC -saC -saC -saC -saC -saC -saC -saC +mbq +mbq +mbq +mbq +mbq +aVt +alJ +alJ +maj +mZU +caE +hwG +xYD +xYD +yjL +nVW +yjL +xNt +nVW +xNt +xNt +xNt +xFt +xNt +xNt +qjG +qjG +qjG +qjG +qjG +qjG +qjG +qjG saC saC saC saC -tiQ -tiQ -xmD -xmD -knt -xmD -xmD -xmD -lkl -xmD -xmD -xmD -idX -iDg -tqh -gGg -xME -hYg -jWB -eIT -eLx -qjG -bjd -fMT -gOo -gOo -lfj -lao -hME -hTI +xZE +xZE +yaC +yaC +yaC +yaC +yaC +yaC hTI -ier +yaC +xZE +cpy +cpy +cpy +cpy +cpy wDj sOL eJR eJR -arN -vGB -sOL -eJR -eJR fQD vGB xFp @@ -82474,7 +74910,7 @@ vGp uRb fRk peS -wDh +muV mhT sWr wGY @@ -82484,7 +74920,7 @@ muV xtk tDS czT -pWX +vxe kZB lHV lwW @@ -82517,7 +74953,7 @@ tTK tTK tTK dCJ -cpy +rnB tTD tTD tTD @@ -82584,15 +75020,15 @@ cpy cpy cpy cpy -abo -abo +mbi +mbi jas jas xln vpe aRi -jas -jas +pGl +pGl cpy cpy cpy @@ -82604,6 +75040,7 @@ bMX "} (136,1,1) = {" bMX +cpy saC saC saC @@ -82611,82 +75048,60 @@ saC saC saC saC +mbq +mbq +mbq +mbq +arh +mbq +mbq +xNt +yjL +xFt +cdj +xYD +xYD +csK +nVW +yjL +xNt +nVW +xNt +xNt +xNt +xFt saC -aLJ -aLJ -aLJ -iZI -dDS -iZI -iZI -lXC -jVa -fLP -iOt -nTl -nTl -ame -hwt -jcl -lXC -hwt -lXC -lXC -nno -fmB -saC -saC -saC -saC -saC -saC -saC -saC -saC +qjG +qjG +qjG +qjG +qjG +qjG +qjG +qjG saC saC -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -pKv -pfU -pKv -pKv -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -snP -sDf -kpo -wQs -llG -dAG -lMF -nqQ -lTi -bjd -fMT -lfj +xZE +xZE +xZE +xZE +xZE +xZE +xZE gRV -rMD -bjd -bjd -hUY -hXA -hUY +gRV +gRV +gRV +xZE +xZE +xZE +cpy +cpy +cpy +cpy +cpy wDj -sOL -eJR -iJE -hZg -vGB -sOL +jJO rlB azE qYp @@ -82701,7 +75116,7 @@ vGp uRb tDS pKo -ilR +mpr xcE tDS iVy @@ -82812,14 +75227,14 @@ cpy cpy cpy cpy -abo -jas +bAB +ezu bUx vpe eso eso xGC -jas +ezu cpy cpy cpy @@ -82831,6 +75246,7 @@ bMX "} (137,1,1) = {" bMX +cpy saC saC saC @@ -82838,82 +75254,60 @@ saC saC saC saC -cfg -aLJ -aLJ -aLJ -iZI -dDS -iZI -iZI -lXC -jcl -aCQ -evx -nTl -nTl -jcl -hwt -jcl -lXC -hwt -lXC -lXC -nno -saC -saC -saC -saC -saC -saC -saC +mbq +mbq +mbq +mbq +arh +mbq +mbq +xNt +yjL +xFt +cce +xYD +xYD +yjL +nVW +yjL +xNt +nVW +xNt +xNt +xNt saC saC saC +qjG +qjG +qjG +qjG +qjG +qjG saC saC -tiQ -yjL -kJV -vrV -lnC -lEb -nUV -mbM -xUx -xUx -pNo -uKD -mQd -nbj saC -tiQ -mzP -gIZ -gGg -wTq -wTq -jWB -teE -mpQ -tiQ -bjd -bjd +cpy +cpy +cpy +cpy +xZE +eWn gOG -heF -bjd -bjd -bjd -bjd -bjd -bjd +sYl +sYl +sYl +sYl +gUv +han +shD +cpy +cpy +cpy +cpy +cpy wDj -sOL -hhJ -sOL -sOL -vGB -sOL +jJO rlB eJR loS @@ -82928,12 +75322,12 @@ vGp uRb tDS sWB -ilR -lbA -hMb +mpr +pVo +tDS jud xSP -leV +ngY wCM ggj nhZ @@ -83040,13 +75434,13 @@ wQa wQa cpy cpy -jas +ezu qrf cTZ suh vpe lPT -jas +ezu cpy cpy cpy @@ -83058,6 +75452,7 @@ bMX "} (138,1,1) = {" bMX +cpy saC saC saC @@ -83065,83 +75460,61 @@ saC saC saC saC -oUZ -aEL -aLJ -aLJ -iZI -dDS -iZI -iZI -iZI -jcl -aCQ -equ -ewt -jcl -dXd -fbC -fIe -oWq -fDn -fDH -fFE -tiQ -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC -saC yjL +mbq +mbq +mbq +arh +mbq +mbq +mbq +yjL +xFt +cpZ +hwG yjL -vrV +cbY +cyl +mZU xUx lFt -xUx +cKy mdD -woG -xUx -pNo -xUx -mQd -nbj -sZq -tiQ -tiQ -jEF -ayX -ayX -ayX -dpz -cXi tiQ -tiQ -saC -bjd -bjd -bjd -bjd -saC saC saC +qjG +qjG +qjG +qjG +qjG +qjG +qjG saC saC -wDj -wDj -wDj -ygD -jJI -uaY -xNG -eJR +cpy +cpy +cpy +cpy +cpy +xZE +eWy +gUv +sYl +fSe +fSe +sYl +gUv +sYl +shD +cpy +cpy +cpy +cpy +cpy +wDj +xNG +eJR eJR xJg wDj @@ -83155,17 +75528,17 @@ vGp uRb hDZ vav -hKJ +muV gaw -sWr -wGY +nIa +noL xJL olI -muV -way +nUD +ooe tDS cpC -ilR +mpr ixQ mEz koM @@ -83267,13 +75640,13 @@ wQa wQa wQa cpy -jas +ezu uUm eso wJq wNX gnl -jas +ezu cpy cpy cpy @@ -83285,41 +75658,7 @@ bMX "} (139,1,1) = {" bMX -saC -saC -saC -saC -saC -saC -saC -saC -aEL -aEL -aEL -aLJ -dDS -iZI -iZI -svW -svW -aCQ -swu -exZ -oWq -eKj -hwt -svW -svW -swu -swu -eRN -jcl -saC -saC -saC -saC -saC -saC +cpy saC saC saC @@ -83329,45 +75668,58 @@ saC saC yjL yjL -vrV -xUx -lFt -xUx -mdD -woG -xWz -pNo +yjL +mbq +arh +mbq +mbq +hwt +hwt +xFt +wvB +cmB xUx -mQd -nbj -sZq -sZq -tiQ -cPx -cPx -cPx -tiQ -tiQ -tiQ -tiQ -saC -saC -saC -saC -saC +ccN +nVW +hwt +hwt +wvB +wvB +ciL +yjL +qjG +qjG +qjG +qjG +qjG +qjG +qjG saC saC saC saC +cpy +cpy +cpy +cpy +cpy +xZE sYl -saC -saC -utq -saC -qSH -qSH +gUv +sYl +fSe +fSe +gJD +gUv +sYl +shD +cpy +cpy +cpy +cpy +cpy jnE -sOL +jKm rlB eJR rtX @@ -83384,15 +75736,15 @@ svf ydV iIY gbz -oHQ -oHQ +muV +muV jBL -lxI -wFU -btb +mpr +gRK +mKN jaz uFo -hKJ +muV lau sEc lxI @@ -83427,8 +75779,8 @@ tTK dCJ sKJ tTD -tTD -tTD +rnB +rnB tTD tTD rnB @@ -83494,13 +75846,13 @@ wQa wQa wQa eLf -jas +ezu pVy vpe eso wNX xlV -jas +ezu dhH eXG cpy @@ -83512,7 +75864,7 @@ bMX "} (140,1,1) = {" bMX -saC +cpy saC saC saC @@ -83522,79 +75874,58 @@ saC saC saC tiQ -aEL -aEL -cTX -iZI -iZI -iZI -svW -njF -tra -tra -tra -eNT -msf -svW -swu -swu -swu -gnk -jcl -saC -saC -saC -saC -saC -saC -saC -saC -saC +yjL +yjL +bha +mbq +mbq +mbq +hwt jlr -jGm -jZS -jZS -jGm +qTE +qTE +qTE +qTE mPz -tiQ -xUx -lFt -xUx -mdD -woG -xUx -pNo -xUx -mQd -nbj -sZq -sZq -sZq -sZq -sZq -sZq -tiQ -tiQ -saC -saC -saC -saC -saC -saC +hwt +wvB +wvB +wvB +kda +yjL +qjG +qjG +qjG +qjG +qjG +qjG saC saC saC saC -cYn -qSH +cpy +cpy +cpy +cpy +cpy +cpy +xZE +eWK +gUv +sYl +fSe +fSe +sYl +gUv +eWK shD -cCH -qSH -qSH -bha -cYn -qSH -eJR +cpy +cpy +cpy +cpy +cpy +wDj +jJO rlB iJE rtX @@ -83610,7 +75941,7 @@ uRb tDS tDS ddC -btb +mKN tAh pJh jLf @@ -83618,7 +75949,7 @@ tAh oew pEu tDS -dHg +plb eZK iyx uzK @@ -83653,9 +75984,9 @@ tue tTK dCJ sKJ -tTD -tTD -tTD +rnB +rnB +rnB tTD tTD rnB @@ -83721,13 +76052,13 @@ wQa wQa wQa eLf -jas -jas +pGl +pGl ozw eso ozw -jas -jas +pGl +pGl dhH eXG cpy @@ -83739,7 +76070,7 @@ bMX "} (141,1,1) = {" bMX -saC +cpy saC saC saC @@ -83750,78 +76081,57 @@ saC saC tiQ tiQ -cOZ -aEL -oUZ -jcl -jcl -jVa -jcl -jcl -jcl -jcl -evx -jcl -jcl -jcl -jcl -jcl -jcl -aAb -saC -saC -saC -saC -saC -saC -saC +beb yjL -jin -jmU -jHb -jHb -jHb -jIR -kKh -tiQ -fdC -lFt -xUx -mcE -xUx -xUx -pNo -fdC -mQd -nbj -sZq -sZq -sZq -sZq -sZq -sZq -saC -tiQ -tiQ -saC -saC -saC +atz +yjL +yjL +yjL +yjL +yjL +yjL +yjL +yjL +yjL +yjL +yjL +yjL +yjL +yjL +nVW +qjG +qjG +qjG +qjG +qjG saC saC saC saC -qSH -qSH -qSH -qSH -qSH -qSH -rtX -eJR -eJR -eJR -eJR -eJR +cpy +cpy +cpy +cpy +cpy +cpy +cpy +xZE +shD +gUv +sYl +sYl +sYl +sYl +gUv +hao +shD +cpy +cpy +cpy +cpy +cpy +wDj +jKo hcE sjQ wJk @@ -83880,8 +76190,8 @@ rhz tTK dCJ rnB -cpy -cpy +rnB +rnB tTD rnB tTD @@ -83949,11 +76259,11 @@ fdh wQa tGw ybz -jas -jas -ogT -jas -jas +pGl +ezu +kEp +ezu +pGl ybz fdf eXG @@ -83966,7 +76276,7 @@ bMX "} (142,1,1) = {" bMX -saC +cpy saC saC saC @@ -83979,57 +76289,23 @@ tiQ tiQ tiQ tiQ -dkC -dkC -dkC +bIY +bIY +bIY +tiQ +xNt +xNt +xNt +xNt +xNt +xNt +tiQ tiQ -lXC -lXC -lXC -lXC -gex -lXC tiQ tiQ -cYQ -cYQ -cYQ tiQ tiQ -saC -saC -saC -saC -saC -saC -yjL -yjL -jmU -jHb -jHb -jHb -jHb -kKh tiQ -mua -mua -pEv -qVN -pEv -pEv -mua -mua -mua -nbj -sZq -sZq -mZW -mZW -sZq -sZq -sZq -saC -saC saC saC saC @@ -84037,18 +76313,31 @@ saC saC saC saC -qSH -qSH -qSH -qSH -qSH -qSH -qSH -eJR -qSH -qSH -eJR -iJE +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +shD +shD +fzK +fzK +fzK +fzK +shD +shD +cpy +ien +cpy +cpy +cpy +cpy +wDj +jKu eJR azE wJk @@ -84108,7 +76397,7 @@ tTK dCJ rnB rnB -cpy +rnB sKJ tTD tTD @@ -84193,7 +76482,7 @@ bMX "} (143,1,1) = {" bMX -saC +cpy saC saC saC @@ -84210,73 +76499,52 @@ tiQ tiQ tiQ tiQ -jcl -jcl -jcl -jcl -evx -jcl -tiQ -fAx -fCE -fCE -fCE -gTX -tiQ -saC -saC -saC -saC -saC -saC yjL yjL -jmU -jHb -jIR -jHb -jHb -kKh +yjL +yjL +yjL +yjL +tiQ +tiQ +tiQ +tiQ +tiQ +tiQ tiQ -saC -plb -xWz -mcE -xUx -xUx -pNo -cPx -ljA -woR -sZq -sZq -mZW -mZW -sZq -sZq -sZq -saC -saC saC saC saC saC saC saC -cYn -qSH -qSH -qSH -qSH -sYl -tOt -iaM -sYl -cCH -yeH -bha -eJR -eJR +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +dHF +fdS +dHF +dHF +dHF +dHF +dHF +haR +ien +ien +xoj +cpy +cpy +cpy +wDj +xjU +kba eJR mnx wDj @@ -84335,7 +76603,7 @@ tTK dCJ rnB rnB -cpy +rnB sKJ tTD tTD @@ -84420,8 +76688,7 @@ bMX "} (144,1,1) = {" bMX -saC -saC +cpy saC saC saC @@ -84432,80 +76699,60 @@ saC saC saC tiQ -uMP -epS -uMP -uMP -jEu -nTl -oSX -oSX -oSX -eWn -nTl tiQ -fBP -fNm -get -get -gUm -saC -saC -saC -saC -saC -yjL -yjL -yjL -jis -jmU -jHb -jHb -jHb -jHb -kKh tiQ -saC -lFt -xUx -mcE -xUx -xUx -pNo -bVX -mQw -sZq -sZq -sZq -sZq -sZq -sZq -sZq -sZq -sZq -saC +tiQ +tiQ +tiQ +tiQ +tiQ +cdP +cdP +cdP +cdP +tiQ +tiQ +tiQ +tiQ +tiQ tiQ tiQ tiQ saC saC saC +saC +saC +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +eXe +vGp +vGp qSH qSH +eJq qSH qSH -fdS -qSH +hmz +ien +cpy +cpy +cpy cpy -tOt -qSH -cYn -xei hrw iWg -sOL -sOL -sOL +jJO +jJO +jJO wDj eyh eyh @@ -84647,6 +76894,7 @@ bMX "} (145,1,1) = {" bMX +cpy saC saC saC @@ -84657,73 +76905,51 @@ saC saC saC saC -saC -cpn -uMP -ahH -dJN -uMP -uMP -epS -uMP -uMP -uMP -eWy -epS +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +tiQ tiQ -fCE -fOM -geu -get -fCE tiQ -saC tiQ -saC -saC -yjL -yjL -yjL -yjL -jmU -jHb -jHb -jHb -jHb -kKh tiQ -saC -lFt -xUx -mdD -woG -xUx -pNo -cPx -mSl -mZX -sZq -sZq -sZq -nGc -sZq -sZq -sZq -sZq -sZq -saC tiQ tiQ saC saC -saC +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +ien +ien +ien +ien +vGp +vGp qSH +ggM qSH qSH qSH -cpy -cpy -cpy +hmz +ien cpy cpy dRL @@ -84874,6 +77100,7 @@ bMX "} (146,1,1) = {" bMX +cpy saC saC saC @@ -84883,75 +77110,53 @@ saC saC saC saC -saC -saC -cpn -uMP -dkL -cIm -cWL -cWL -ana -dSt -dSt -dSt -eWK -fuf -tiQ -fCN -fPV -gfu -fCE -ggM -tiQ -saC -tiQ -yjL -ial -yjL -yjL -iWc -yjL -jmU -jHb -jHb -jHb -jIR -kKh -tiQ -saC -lFt -iWy -mdD -woG -xUx -pNo -tiQ -tiQ -nbj -sZq -sZq -sZq -sZq -sZq -sZq -sZq -sZq -sZq -saC -tiQ -tiQ -saC -saC -saC +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +ien +ien +kBK +kBK +ien +vGp +vGp +vGp qSH qSH qSH qSH qSH -cpy -cpy -cpy +ien +ien +ien dRL dRL jNQ @@ -85101,6 +77306,7 @@ bMX "} (147,1,1) = {" bMX +cpy saC saC saC @@ -85110,74 +77316,52 @@ saC saC saC saC -saC -saC -tiQ -uMP -dkL -kca -kca -kca -kca -kca -kca -eGL -dSy -eWy -tiQ -tiQ -fRd -get -get -gUv -tiQ -tiQ -tiQ -yjL -yjL -yjL -yjL -yjL -yjL -jmU -jHb -jHb -jHb -jHb -kKh -tiQ -saC -lFt -kLs -mdD -woG -xUx -pNo -tiQ -jPw -jPw -npx -sZq -sZq -sZq -sZq -sZq -sZq -nGc -sZq -sZq -saC -tiQ -tiQ -saC -saC +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +xSN +kBK +vGp +ntN +vGp +vGp qSH qSH qSH qSH -cYn -cpy -cpy +qSH +vGp +vGp +ien cpy dRL sLl @@ -85328,6 +77512,7 @@ bMX "} (148,1,1) = {" bMX +cpy saC saC saC @@ -85335,76 +77520,54 @@ saC saC saC saC -saC -saC -saC -saC -cpn -uMP -cGd -dXN -dXN -mNm -mNm -kca -kca -kca -dKF -fmv -fuf -tiQ -tiQ -get -get -gXB -tiQ -tiQ -yjL -yjL -yjL -yjL -yjL -iWu -yjL -jmU -jIR -kba -kba -jHb -kKh -tiQ -saC -lFt -xUx -mcE -xUx -xUx -pNo -tiQ -jPw -jPw -jPw -sZq -sZq -sZq -sZq -sZq -sZq -mZW -sZq -sZq -saC -saC -tiQ -saC -saC +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +vGp +vGp +vGp +ntN +vGp qSH qSH qSH +ghr qSH qSH +vGp cpy -cpy +ien cpy dRL dRL @@ -85434,8 +77597,8 @@ vGp pZo onj svf -lHa -iuK +prT +qIu tww kDQ fLc @@ -85555,6 +77718,7 @@ bMX "} (149,1,1) = {" bMX +cpy saC saC saC @@ -85562,77 +77726,55 @@ saC saC saC saC -saC -saC -saC -saC -cpn -uMP -feZ -uMP -uMP -uMP -dkL -kca -kca -kca -cIm -dJN -eWy -uMP -tiQ -ggM -fCE -tiQ -tiQ -tiQ -yjL -yjL -yjL -yjL -yjL -yjL -yjL -jnp -jJj -jJj -jJj -jJj -mLp -tiQ -nFt -psq -nUV -mbM -xUx -xUx -pNo -tiQ -jPw -jPw -jPw -nuG -mZX -sZq -sZq -sZq -mZW -mZW -sZq -sZq -lJl +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +ien +ien +vGp +vGp ntN -tiQ -saC -saC qSH qSH qSH qSH +qSH +qSH +vGp cpy -cpy -cpy -cpy +ien +ien +ien dRL ouv uSJ @@ -85782,6 +77924,7 @@ bMX "} (150,1,1) = {" bMX +cpy saC saC saC @@ -85789,76 +77932,54 @@ saC saC saC saC -saC -saC -saC -saC -tiQ -czC -czC -czC -czC -uMP -dkL -kca -aVs -cAy -cIs -cIm -cNB -uMP -tiQ -ghr -tiQ -tiQ -tiQ -tiQ -tiQ -vrV -vrV -vrV -tiQ -tiQ -tiQ -tiQ -tiQ -vrV -vrV -vrV -tiQ -tiQ -mua -mua -pMg -rqT -uVa -pMg -mua -tiQ -tiQ -tiQ -tiQ -tiQ -nAC -kBK -kBK -kBK -nRK -kBK -kBK +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien kBK -mqA -tiQ -tiQ -saC -saC +vGp +vGp +ntN +qSH +qSH qSH -cYn qSH qSH +vGp cpy cpy cpy +ien cpy dRL gtH @@ -85888,7 +78009,7 @@ vGp pZo onj fRk -lHa +prT orS kNe sWr @@ -86009,6 +78130,7 @@ bMX "} (151,1,1) = {" bMX +cpy saC saC saC @@ -86016,76 +78138,54 @@ saC saC saC saC -saC -saC -saC -saC -tiQ -cZu -cWL -dJN -cIV -uMP -dkL -kca -kca -mNm -kca -kca -cRT -uMP -epS -uMP -uMP -saC -tiQ -tiQ -tiQ -xUx -xUx -xUx -saC -saC -saC -saC -xUx -xUx -xUx -xUx -hOH -mua -fol -ptc -nUV -bOE -woG -xUx -cNQ -cPy -tiQ -saC -saC -tiQ -xSN -xSN -xSN -xSN -pMg -xSN -xSN +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien xSN xSN -tiQ -tiQ -tiQ -saC -qSH +vGp +ien +vGp +eXe qSH qSH -eCe qSH +vGp +vGp cpy cpy +ien cpy dRL jfG @@ -86236,84 +78336,63 @@ bMX "} (152,1,1) = {" bMX +cpy saC saC saC saC saC saC -saC -saC -saC -saC -saC -tiQ -dah -kca -dKF -cIW -uMP -dkL -kca -kca -kca -mNm -mNm -dgq -cWL -cWL -cWL -dJN -saC -saC -saC -xSN -rza -rza -rza -rza -saC -saC -rza -jJO -kbg -kqa -rza -qqq -mmj -nUD -xUx -xUx -woG -woG -xUx -xUx -cNQ -cWZ -rza -rla -rza -rza -rza -rza -qqq -qqq -rza -rza -rza -rza -ybd -saC -saC -saC -saC -dJt -eCe -cYn -eCe -eCe cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +ien +ien +ien +ien +ien +ien +vGp +vGp +qSH +qSH +qSH +vGp +vGp +ien +ien +ien dRL dRL dVM @@ -86463,83 +78542,62 @@ bMX "} (153,1,1) = {" bMX +cpy saC saC saC saC saC saC -saC -saC -saC -saC -saC -tiQ -vEw -dXN -dKM -cYQ -uMP -mNm -mNm -kca -kca -mNm -mNm -haR -kca -kca -kca -dKF -uMP -saC -xUx +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien xSN -xUx -iam -nUV -nUV -nUV -tHC -nUV -jKm -nUV -nUV -nUV -kKD -mnX -xUx -xUx -woG -mua -mua -woG -xUx -xUx -cWZ -xUx -qro -xUx -xUx -xUx -hOH -hOH -hOH -hOH -hOH -xUx -xUx -ybd -saC -saC -saC -saC -eCe -eCe +mee +vGp +ien +vGp +vGp +qSH qSH qSH -eCe +qSH +qSH +vGp cpy +ien cpy dRL sLl @@ -86690,92 +78748,71 @@ bMX "} (154,1,1) = {" bMX +cpy saC saC saC saC saC saC -saC -saC -saC -saC -saC -tiQ -tiQ -tiQ -dKO -cYQ -uMP -uDC -mNm -mNm -kca -mNm -mNm -haR -fCP -fSe -fCP -dKF -uMP -hig -xUx -xSN -xUx -mdD -woG -woG -xUx -qro -xUx -woG -woG -woG -xUx -kLc -pMg -woG -woG -mua -tiQ -mua -mua -woG -woG -cWZ -xUx -qro -woG -woG -woG -hOH -hOH -hOH -mee +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien mee -lpy -eqD -ybd -saC -saC -saC -saC -saC -eCe +vGp +vGp +vGp +vGp +qSH +qSH +qSH +qSH qSH qSH qSH -eCe +vGp +ien cpy dRL dRL gMV dRL dRL -jgI -mNf -lZq +niT +niT +yfP dRL dRL dRL @@ -86797,7 +78834,7 @@ umR onj fRk ydV -kVT +qIy dFd arV bkt @@ -86917,92 +78954,71 @@ bMX "} (155,1,1) = {" bMX +cpy saC saC saC saC saC -saC -saC -saC -saC -saC -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -aTK -cGd -cLb -mNm -foO -fuQ -fDi -fSR -ghy -eAF -fiA -hCU -nUV -oyM -nUV -bOE -woG -woG -xUx -qro -xUx -woG -woG -woG -xUx -xUx -mCQ -woG -woG -tiQ -tiQ -tiQ -mua -woG -woG -cWZ -xUx -hOH -lpy -lpy -lpy -hOH -hOH -hOH -mee -woG -woG -xUx -ybd -saC -saC -saC -saC -saC +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +ien +ien +ewe +qSH +qSH +qSH qSH qSH qSH qSH -cYn +qSH +qSH +vGp +ien +ien gwC cpy dRL dRL dRL dRL -dRL -dRL -dRL +rJf +rJf +rJf dRL dRL dRL @@ -87144,84 +79160,12 @@ bMX "} (156,1,1) = {" bMX +cpy saC saC saC saC saC -saC -saC -saC -saC -tiQ -tiQ -cPN -daq -dkP -nzK -dSW -tiQ -tiQ -mNm -uMP -dkL -mNm -kca -haR -cUx -fSX -cUx -dKF -uMP -hig -xWz -xSN -xUx -xUx -xUx -xUx -iWy -qro -xUx -jKo -kbu -xWz -xUx -kLs -pMg -xUx -mHP -woG -tiQ -mua -woG -xUx -xUx -cWZ -hOH -hOH -xUx -xUx -xUx -mHP -hOH -hOH -xUx -xUx -dbs -xWz -ybd -saC -saC -saC -saC -saC -qSH -qSH -qSH -qSH -qSH -eCe cpy cpy cpy @@ -87229,9 +79173,60 @@ cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +eoH +dbs +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +ien ien ien ien +ien +dHF +dHF +dHF +dHF +ien +ien whD whD whD @@ -87250,7 +79245,7 @@ qSH yaF kJh svf -lHa +prT aaI kNe rUr @@ -87371,85 +79366,40 @@ bMX "} (157,1,1) = {" bMX +cpy saC saC saC saC saC -saC -saC -saC -saC -tiQ -ewe -cPO -bkQ -bkQ -dLq -dTW -ebP -tiQ -tiQ -ezp -eGQ -eGQ -hTk -hbN -kca -mNm -mNm -dKF -uMP -hig -xUx -xSN -hOG -aCJ -aCJ -aCJ -aCJ -saC -saC -aCJ -kbJ -aCJ -aCJ -hOG -hbj -lnF -xUx -xUx -woG -woG -xUx -xUx -mEg -fXs -hOG -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -ybd -saC -saC -bUN -saC -saC -cYn -qSH -qSH -qSH -qSH -qSH -qSH +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy cpy cpy cpy @@ -87458,6 +79408,30 @@ cpy cpy cpy ien +aCJ +ewm +eIn +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +qSH +vGp +vGp +vGp +vGp +vGp +ien +vGp +vGp +vGp +vGp +vGp +ien lyP vGp vGp @@ -87598,79 +79572,50 @@ bMX "} (158,1,1) = {" bMX +cpy saC saC saC saC saC -saC -saC -saC -saC -tiQ -joK -cPU -daL -xcU -dLz -xcU -edk -eil -eof -uMP -dkL -kca -kca -kca -kca -mNm -mNm -dKF -uMP -tiQ -saC -saC -hOH -hOH -xUx -iIt -saC -saC -saC -saC -xUx -xUx -hOH -hOH -mua -lnU -lnF -xUx -woG -woG -mto -mEg -mMU -tiQ -saC -saC -tiQ -xSN -xSN -xSN -xSN -xSN -xSN -xSN -xSN -xSN -tiQ -tiQ -tiQ -saC -saC -bUN -eCe +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +ien +ien +ewp qSH qSH qSH @@ -87678,12 +79623,20 @@ qSH qSH qSH qSH -cpy -cpy -cpy -cpy -cpy -cpy +qSH +qSH +vGp +vGp +vGp +vGp +vGp +vGp +vGp +vGp +vGp +vGp +vGp +vGp ien mbx vGp @@ -87825,91 +79778,70 @@ bMX "} (159,1,1) = {" bMX +cpy saC saC saC saC saC -saC -saC -saC -saC -tiQ -tiQ -cQc -dbi -akM -dLZ -akM -xcU -pYP -eov -uMP -dkL -kca -kca -kca -kca -kca -kca -dKF -saC -saC -saC -saC -saC -vrV -vrV -tiQ -tiQ -tiQ -tiQ -tiQ -vrV -vrV -vrV -tiQ -tiQ -mua -mua -pMg -pMg -pMg -pMg -mua -tiQ -tiQ -tiQ -tiQ -tiQ -rsM -nGC -nGC -nGC -nGC -nGC -nGC -nGC -oiA -tiQ -tiQ -saC -saC -saC -saC -eCe -cYn -qSH -qSH -qSH -qSH -qSH -qSH -qSH cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +qSH +qSH +oiA +vTx +vTx +vTx +vTx +vTx +vTx +vTx +vTx +vTx +qSH +eXV +hTg +qSH +vTx +vTx +vTx +vGp +vGp +vGp ien ien ien @@ -87933,7 +79865,7 @@ gMG sRu hsA vgx -kup +rjP aOV lyQ tDB @@ -88052,92 +79984,71 @@ bMX "} (160,1,1) = {" bMX +cpy saC saC saC saC saC -saC -saC -saC -saC -tiQ -cIX -cPO -dbt -dng -dMb -dUj -edP -ekK -tiQ -uMP -cGd -dXN -dXN -dXN -dXN -dXN -dXN -dKM -saC -saC -tiQ -saC -saC -saC -yjL -yjL -yjL -jis -jlr -jGm -kbM -kbM -jGm -mPz -tiQ -iIt -lFt -xUx -xUx -xWz -xUx -pNo -tiQ -jPw -jPw -nqB -nuL -ngo -wbR -wbR -wbR -wbR -wbR -wbR -wbR -oiP -opp -tiQ -saC -saC -saC -saC -eCe -eCe -qSH -qSH -qSH +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien qSH qSH +uRb +opp +opp +feS +feS +fFp +ghy +fFp +feS +feS qSH qSH qSH qSH -cpy -cpy -cpy +eJq +opp +opp +vGp +vGp +vGp +vGp qBQ kyH fbA @@ -88285,86 +80196,65 @@ saC saC saC saC -saC -saC -saC -tiQ -cJh -cRG -dbX -dnB -bkQ -dUD -efR -tiQ -tiQ -bbL -feZ -faK -uMP -uMP -uMP -feZ -uMP -saC -saC -saC -tiQ -yjL -yjL -ial -yjL -yjL -yjL -yjL -jmU -jMJ -kco -kco -kti -kKh -vrV -iIt -lFt -hOH -xUx -xUx -xUx -pNo -tiQ -jPw -jPw -jPw -wbR -wbR -wbR -wbR -wbR -wbR -wbR -wbR -nhb -wbR -wbR -tiQ -saC -saC -saC -saC -saC -eCe -qSH -qSH -qSH -qSH +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +ien +ien qSH +uRb +opp +ycw +ycw +ycw +ycw +ycw +ycw +ycw +ycw +eJq qSH +hTh +eXV qSH qSH +opp qSH qSH -cpy -cpy +vGp +vGp rdq saY vGp @@ -88512,85 +80402,64 @@ saC saC saC saC -saC -saC -saC -tiQ -tiQ -cRL -dci -dnG -dMN -dUE -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -saC -saC -saC -tiQ -tiQ -yjL -yjL -yjL -yjL -iWc -yjL -jmU -jOh -jPw -jPw -ktp -kKh -vrV -xUx -lFt -hOH -mee -woG -xUx -pNo -tiQ -jPw -jPw -jPw -wbR -wbR -wbR -wbR -wbR -wbR -wbR -wbR -wbR -wbR -tiQ -tiQ -saC -saC -saC -saC -saC +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien qSH qSH +uRb +eOe +ycw +feZ +feZ +fSf +feZ +feZ +feZ +hbj +feZ +feZ qSH -cYn -eCe qSH qSH qSH qSH qSH qSH -cpy +vGp ien ien ien @@ -88739,86 +80608,65 @@ cpy cpy cpy saC -saC -saC -saC cpy -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ cpy -saC -saC -tiQ -yjL -yjL -yjL -yjL -yjL -yjL -jmU -jOh -jPw -jPw -ktp -kKh -vrV -xUx -lFt -xUx -mee -woG -xUx -pNo -tiQ -tiQ -ndP -wbR -nhb -wbR -wbR -wbR -wbR -wbR -wbR -wbR -wbR -wbR +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien qSH -saC -saC -saC -saC -saC -saC -ffG +qSH +uRb +eOe +eXO +feZ +fAx +fSR +fTO +ycw +ycw +ycw +ycw +feZ qSH qSH -eCe -cpy -cpy qSH qSH qSH qSH qSH -cpy -cpy +qSH +vGp ien rwo vGp @@ -88966,86 +80814,65 @@ cpy cpy saC saC -saC -saC cpy cpy cpy cpy cpy cpy -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ -tiQ cpy cpy -saC -saC -saC -saC -saC -yjL -yjL -iWu -yjL -jmU -jOh -jPw -jPw -ktp -kKh -vrV -xUx -lFt -xUx -woG -woG -xUx -pNo -pMg -mUh -ngo -wbR -wbR -wbR -wbR -sNQ -sNQ -wbR -wbR -wbR -wbR -qSH -cYn -saC -saC -saC -saC -saC -saC -eCe -sBX -eCe -eCe cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +ien +ien +qSH +uRb +eOe +ycw +ffr +fAG +ycw +fCP +ycw +gVd +fBU +ycw +feZ +eJq qSH qSH qSH qSH -cpy -cpy +ezj +qSH +qSH +qSH ien jvo vGp @@ -89216,60 +81043,39 @@ cpy cpy cpy cpy -saC -saC -saC -saC -saC -yjL -yjL -yjL -yjL -jmU -jOh -jPw -jPw -ktp -kKh -vrV -xUx -lKC -xUx -xUx -xUx -xUx -pNo -pMg -mUl -wbR -wbR -wbR -wbR -sNQ -sNQ -wbR -wbR -wbR -wbR -qSH -qSH -qSH -saC -saC -saC -saC -saC -saC -eCe -eCe -eCe cpy cpy cpy cpy cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +amc +exB +uRb +eOe +ycw +fhY +fBP +fSX +ycw +ycw +gWg +hbH +ycw +feZ +ycw +qSH qSH +eXV qSH +ezj qSH qSH ien @@ -89288,9 +81094,9 @@ vGv oQC lzU wsC -krH -krH -krH +ljA +ljA +ljA sfI lzU gRD @@ -89445,58 +81251,37 @@ cpy cpy cpy cpy -saC -saC -saC -saC -saC -yjL -jin -jmU -jOh -jPw -jPw -ktp -kKh -vrV -xUx -lFt -kLs -xUx -xUx -xUx -pNo -hbj -mUl -wbR -wbR -wbR -wbR -wbR -wbR -wbR -wbR -wbR -wbR -qSH +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +ien +poZ qSH +uRb +eOn +ycw +fib +fBU +fTi qSH qSH -saC -saC -saC -saC sBX -sBX -eCe ycw -cpy -cpy -cpy -cpy +ycw +feZ +ycw qSH qSH qSH +jEa +jMJ qSH qSH qSH @@ -89513,13 +81298,13 @@ qSH oQC lzU qnb -aSR -krH -krH +ljq +ljA +ljA lAn -krH -krH -aSR +ljA +ljA +ljq oAu lzU gRD @@ -89674,56 +81459,35 @@ cpy cpy cpy cpy -saC -saC -saC -yjL -yjL -jmU -jOh -jPw -jPw -ktp -kKh -vrV -xUx -lFt -xUx -xUx -xUx -xUx -djq -hbj -mUl -wbR -wbR -wbR -wbR -wbR -wbR -wbR -wbR -wbR -qSH -qSH -qSH -qSH -qSH -cYn -saC -saC -cYn -qSH -qSH -sBX -sDv cpy cpy cpy cpy cpy +cpy +cpy +ien +ien +ien +qSH +uRb +eOn +ycw +feZ +fCE +fTO +qSH +gLK +qSH +ycw +ycw +feZ +ycw +ycw qSH qSH +jEk +qSH qSH qSH qSH @@ -89738,16 +81502,16 @@ qSH qSH oQC qnb -krH -krH +ljA +ljA vrd xpX xpX naw -wXQ -wXQ +mqc +mqc vrd -krH +ljA iNs oAu gRD @@ -89902,54 +81666,33 @@ cpy cpy cpy cpy -tiQ -saC -saC -yjL -jmU -jOG -kdL -kdL -kwt -kKh -vrV -xUx -lFt -xUx -woG -woG -hOH -djq -hbj -mUl -wbR -wbR -wbR -wbR -wbR -wbR -wbR -wbR -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -cYn cpy cpy cpy cpy +cpy +cpy +cpy +ien +qSH qSH +uRb +eOe +ycw +fiA +fCN +fWD +ycw +fTi +ycw +ycw +ycw +hFu +hFu +hFu +hFu +qSH +jEF qSH qSH qSH @@ -89964,8 +81707,8 @@ qSH oQC gRj qnb -krH -krH +ljA +ljA xIv xIv kqT @@ -90130,54 +81873,33 @@ cpy cpy cpy cpy -saC -saC -saC -jnp -jJj -kel -kel -jJj -mLp -vrV -xUx -lFt -xUx -woG -woG -xUx -djq -xSN -mUl -wbR -wbR -wbR -wbR -wbR -wbR -wbR -cYn -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH cpy cpy cpy cpy cpy +cpy +ien +qSH +qSH +uRb +eOn +ycw +feZ +ycw +ycw +giF +ycw +fTO +ycw +hmD +hFS +ycw +ycw +ycw qSH qSH +eJq qSH qSH qSH @@ -90189,18 +81911,18 @@ qSH oQC lzU qnb -krH -krH -krH +ljA +ljA +ljA rxo taJ ugn kTJ iFN lAn -wXQ +mqc tqb -wXQ +mqc xIv rJr kbn @@ -90358,50 +82080,29 @@ cpy cpy cpy cpy -tiQ -saC -saC -saC -saC -saC -yjL -kJV -vrV -xUx -lFt -xUx -woG -woG -xUx -dDF -xSN -mUl -wbR -wbR -wbR -wbR -wbR -tiQ -tiQ -tiQ -cpy -cpy -cpy -cYn -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -qSH -cYn cpy cpy cpy cpy +ien +ien +ien +qSH +uRb +eOe +ycw +fkb +ycw +fDH +fTO +ycw +ycw +ycw +hmO +feZ +eXO +ycw +ycw qSH qSH qSH @@ -90414,23 +82115,23 @@ rMR qSH oQC qnb -krH -krH -krH -wXQ -wXQ +ljA +ljA +ljA +mqc +mqc tcv trD ujF -wXQ -wXQ +mqc +mqc lAn nez -wXQ -wXQ +mqc +mqc xIv -wXQ -wXQ +mqc +mqc wXQ krH krH @@ -90587,61 +82288,40 @@ cpy cpy cpy cpy -saC -saC -saC -saC -yjL -yjL -vrV -xUx -lFt -xUx -xUx -xUx -xWz -dDF -xSN -mUl -nhb -wbR -wbR -wbR -tiQ -tiQ -cpy -cpy -cpy cpy cpy cpy +ien qSH qSH -qSH -qSH -cYn -qSH -qSH -qSH -qSH -cpy -cpy -cpy -cpy -cpy +uRb +eOe +ycw +feZ +ycw +ycw +fCE +ycw +ycw +giF +ycw +hGJ +ycw +ier +ycw qSH qSH qSH qSH qSH -rME +ien ien ien rMR oQC qnb -krH -krH +ljA +ljA lAn lAn lAn @@ -90747,898 +82427,42 @@ wQa wQa cex cex -iWN -jru -jxD -gRp -hIf -hIf -eWR -rVR -hIf -gRp -sAt -jru -svG -eXG -eXG -eXG -eXG -eXG -eXG -cpy -eXG -cpy -cpy -cpy -cpy -bMX -"} -(172,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -saC -saC -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -saC -saC -saC -saC -saC -tiQ -yjL -yjL -tiQ -owC -owC -owC -owC -owC -owC -owC -tiQ -mVE -niu -wbR -tiQ -tiQ -tiQ -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -qSH -qSH -qSH -qSH -qSH -qSH -qSH -cpy -cpy -cpy -cpy -cpy -qSH -qSH -qSH -qSH -qSH -cpy -cpy -ien -cpy -qSH -oZN -aSR -krH -qUL -qUL -qUL -qUL -qUL -qUL -nSF -qUL -qUL -eRI -eRI -sct -fzC -dIr -wqt -iRl -qUL -qUL -qUL -aDs -qUL -krH -aSR -ltf -qSH -vGp -vGp -kQJ -tPb -sPh -gdO -ene -puJ -puJ -ene -gdO -cpy -dCJ -rnB -rnB -rnB -tTD -sKJ -sKJ -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -rnB -rnB -rnB -rnB -yiZ -rnB -rnB -rnB -rnB -uwT -uwT -uwT -uwT -idL -uwT -fWG -tXW -tXW -idL -fWG -fWG -tXW -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -wQa -wQa -wQa -wQa -wQa -wQa -cex -iWN -jru -jxD -rVR -rVR -rVR -sAt -jru -svG -eXG -eXG -eXG -cpy -eXG -eXG -eXG -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(173,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -saC -saC -cpy -tiQ -tiQ -tiQ -tiQ -cpy -cpy -cpy -cpy -cpy -cpy -cpy -tiQ -tiQ -tiQ -tiQ -tiQ -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cYn -qSH -qSH -qSH -qSH -qSH -qSH -cpy -cpy -cpy -cpy -cpy -cpy -qSH -qSH -qSH -qSH -cpy -cpy -ien -cpy -qSH -pet -krH -xIv -qUL -qUL -qUL -qUL -qUL -qUL -the -uru -wyM -qUL -qUL -swr -xsc -ibE -kzk -sct -fzC -dIr -wqt -nPN -qUL -lAn -krH -jaq -vGp -vGp -lyP -cpy -cpy -cpy -alI -alI -oCn -oCn -alI -alI -cpy -cpy -rnB -rnB -gts -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -rnB -rnB -rnB -rnB -rnB -rnB -cpy -cpy -cpy -cpy -idL -kjp -kjp -kjp -kjp -idL -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cex -cex -cex -wQa -wQa -wQa -cex -iWN -jru -jru -jru -svG -eXG -eXG -eXG -eXG -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(174,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -qSH -qSH -qSH -cYn -cpy -cpy -cpy -cpy -cpy -cpy -cpy -qSH -qSH -qSH -qSH -qSH -ien -ien -ien -qSH -pFH -krH -xIv -qUL -qUL -nSF -qUL -qUL -sCp -toY -uwQ -wzg -xRM -xRM -bpZ -wRL -pAd -pkB -swr -xsc -ibE -kzk -qHg -qUL -lAn -krH -nTp -vGp -vGp -lyP -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -idL -idL -idL -idL -idL -idL -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -eXG -eXG -eXG -eXG -eXG -eXG -eXG -eXG -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -bMX -"} -(175,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -qSH -qSH -qSH -qSH -qSH -aJg -qSH -qSH -pFH -krH -xIv -qUL -qUL -nSF -qUL -sct -sIA -dpS -qbP -dpS -xyu -xyu -dpS -gdr -dpS -fLa -bpZ -wRL -pAd -bpZ -ulh -qUL -pVb -krH -nTp -vGp -vGp -vGp -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy +iWN +jru +jxD +gRp +hIf +hIf +eWR +rVR +hIf +gRp +sAt +jru +svG +eXG +eXG +eXG +eXG +eXG +eXG cpy +eXG cpy cpy cpy cpy +bMX +"} +(172,1,1) = {" +bMX cpy cpy cpy cpy cpy +saC +saC cpy cpy cpy @@ -91661,10 +82485,6 @@ cpy cpy cpy cpy -eXG -eXG -eXG -eXG cpy cpy cpy @@ -91677,13 +82497,82 @@ cpy cpy cpy cpy +ien +qSH +qSH +uRb +eOe +ycw +feZ +fCP +ycw +ycw +gMc +ycw +ycw +ycw +hGU +ycw +ieW +ycw +qSH +qSH +exB +qSH +qSH +qSH +ntN +qSH +qSH +oZN +ljq +ljA +qUL +qUL +qUL +qUL +qUL +qUL +nSF +qUL +qUL +eRI +eRI +sct +fzC +dIr +wqt +iRl +qUL +qUL +qUL +aDs +qUL +krH +aSR +ltf +qSH +vGp +vGp +kQJ +tPb +sPh +gdO +ene +puJ +puJ +ene +gdO cpy +dCJ +rnB +rnB +rnB +tTD +sKJ +sKJ cpy cpy -bMX -"} -(176,1,1) = {" -bMX cpy cpy cpy @@ -91693,6 +82582,28 @@ cpy cpy cpy cpy +rnB +rnB +rnB +rnB +yiZ +rnB +rnB +rnB +rnB +uwT +uwT +uwT +uwT +idL +uwT +fWG +tXW +tXW +idL +fWG +fWG +tXW cpy cpy cpy @@ -91717,7 +82628,29 @@ cpy cpy cpy cpy +wQa +wQa +wQa +wQa +wQa +wQa +cex +iWN +jru +jxD +rVR +rVR +rVR +sAt +jru +svG +eXG +eXG +eXG cpy +eXG +eXG +eXG cpy cpy cpy @@ -91725,6 +82658,10 @@ cpy cpy cpy cpy +bMX +"} +(173,1,1) = {" +bMX cpy cpy cpy @@ -91765,47 +82702,79 @@ cpy cpy cpy cpy +ien +ien +ien +qSH +uRb qSH qSH +eXV +ycw +ycw +ycw +ycw +ycw +ycw +ycw +hHN +ycw +iff +ycw qSH +eXV qSH qSH -aJg qSH qSH -pFH -krH +ntN +qSH +qSH +pet +ljA xIv qUL qUL -rfi -rAc -shq -sKi -hLR -dNx -dNx -dNx -dNx -nHF -dNx -oeV -rtA -tbt -qbP -dpS -nPn -lVs -bUy +qUL +qUL +qUL +qUL +the +uru +wyM +qUL +qUL +swr +xsc +ibE +kzk +sct +fzC +dIr +wqt +nPN +qUL lAn krH -nTp +jaq vGp vGp -uwF +lyP +cpy +cpy cpy +alI +alI +oCn +oCn +alI +alI cpy cpy +rnB +rnB +gts +cpy cpy cpy cpy @@ -91822,10 +82791,22 @@ cpy cpy cpy cpy +rnB +rnB +rnB +rnB +rnB +rnB cpy cpy cpy cpy +idL +kjp +kjp +kjp +kjp +idL cpy cpy cpy @@ -91855,6 +82836,22 @@ cpy cpy cpy cpy +cex +cex +cex +wQa +wQa +wQa +cex +iWN +jru +jru +jru +svG +eXG +eXG +eXG +eXG cpy cpy cpy @@ -91867,6 +82864,10 @@ cpy cpy cpy cpy +bMX +"} +(174,1,1) = {" +bMX cpy cpy cpy @@ -91907,11 +82908,64 @@ cpy cpy cpy cpy -bMX -"} -(177,1,1) = {" -bMX cpy +ien +vGp +qSH +qSH +qSH +eJq +qSH +qSH +ycw +ycw +ycw +fSf +fTi +ycw +feZ +ycw +qSH +ycw +qSH +qSH +ghr +qSH +qSH +qSH +ntN +qSH +qSH +pFH +ljA +xIv +qUL +qUL +nSF +qUL +qUL +sCp +toY +uwQ +wzg +xRM +xRM +bpZ +wRL +pAd +pkB +swr +xsc +ibE +kzk +qHg +qUL +lAn +krH +nTp +vGp +vGp +lyP cpy cpy cpy @@ -91953,6 +83007,12 @@ cpy cpy cpy cpy +idL +idL +idL +idL +idL +idL cpy cpy cpy @@ -91989,46 +83049,18 @@ cpy cpy cpy cpy +eXG +eXG +eXG +eXG +eXG +eXG +eXG +eXG cpy cpy cpy cpy -qSH -qSH -qSH -qSH -aJg -qSH -qSH -pFH -krH -xIv -qUL -qUL -rgA -rBZ -slK -sYh -wHw -sjS -wAf -skE -skE -nQY -kNR -wHw -tkN -dNx -dNx -xTb -srE -qUL -iQt -lAn -krH -nTp -vGp -vGp cpy cpy cpy @@ -92038,6 +83070,10 @@ cpy cpy cpy cpy +bMX +"} +(175,1,1) = {" +bMX cpy cpy cpy @@ -92079,6 +83115,63 @@ cpy cpy cpy cpy +ien +vGp +vGp +qSH +qSH +qSH +qSH +qSH +ycw +ycw +ycw +ycw +fTO +hmO +feZ +ycw +ycw +ycw +qSH +qSH +qSH +qSH +qSH +qSH +ntN +qSH +qSH +pFH +ljA +xIv +qUL +qUL +nSF +qUL +sct +sIA +dpS +qbP +dpS +xyu +xyu +dpS +gdr +dpS +fLa +bpZ +wRL +pAd +bpZ +ulh +qUL +pVb +krH +nTp +vGp +vGp +vGp cpy cpy cpy @@ -92134,10 +83227,6 @@ cpy cpy cpy cpy -bMX -"} -(178,1,1) = {" -bMX cpy cpy cpy @@ -92168,6 +83257,10 @@ cpy cpy cpy cpy +eXG +eXG +eXG +eXG cpy cpy cpy @@ -92183,6 +83276,10 @@ cpy cpy cpy cpy +bMX +"} +(176,1,1) = {" +bMX cpy cpy cpy @@ -92226,35 +83323,70 @@ cpy ien ien ien +vGp +eIT +exB +qSH +qSH +qSH +ycw +gjm +ycw +ycw +ycw +hmD +hFu +hFu +hFu +hFu +qSH +qSH +qSH +qSH +qSH +qSH +ntN +qSH qSH pFH -krH +ljA xIv qUL qUL -rii -rCi -ssU +rfi +rAc +shq sKi -bYC -dNx +hLR dNx dNx dNx dNx +nHF dNx -ykj -wKH -rUS -jAX -goC -ifg -gOZ -hZc +oeV +rtA +tbt +qbP +dpS +nPn +lVs +bUy lAn krH nTp vGp +vGp +uwF +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy cpy cpy cpy @@ -92350,6 +83482,10 @@ cpy cpy cpy cpy +bMX +"} +(177,1,1) = {" +bMX cpy cpy cpy @@ -92361,10 +83497,6 @@ cpy cpy cpy cpy -bMX -"} -(179,1,1) = {" -bMX cpy cpy cpy @@ -92395,6 +83527,62 @@ cpy cpy cpy cpy +enG +vGp +fbA +qSH +qSH +qSH +qSH +ycw +ycw +gjV +giF +ycw +ycw +ycw +feZ +ycw +ycw +qSH +qSH +eXV +exB +qSH +qSH +qSH +ntN +qSH +qSH +pFH +ljA +xIv +qUL +qUL +rgA +rBZ +slK +sYh +wHw +sjS +wAf +skE +skE +nQY +kNR +wHw +tkN +dNx +dNx +xTb +srE +qUL +iQt +lAn +krH +nTp +vGp +vGp cpy cpy cpy @@ -92451,37 +83639,6 @@ cpy cpy cpy cpy -ien -qSH -qSH -pFH -krH -xIv -qUL -qUL -qUL -pTW -swr -sIA -goC -jAX -tna -xyu -xyu -goC -ucs -goC -twB -fXn -uSB -ecP -fXn -rOO -qUL -lAn -krH -nTp -vGp cpy cpy cpy @@ -92531,6 +83688,10 @@ cpy cpy cpy cpy +bMX +"} +(178,1,1) = {" +bMX cpy cpy cpy @@ -92572,6 +83733,61 @@ cpy cpy cpy cpy +ien +saY +vGp +qSH +qSH +qSH +qSH +ycw +ycw +gjV +gMy +gXB +ycw +fTO +feZ +hTk +eXO +qSH +qSH +qSH +qSH +qSH +qSH +ien +ien +ien +qSH +pFH +ljA +xIv +qUL +qUL +rii +rCi +ssU +sKi +bYC +dNx +dNx +dNx +dNx +dNx +dNx +ykj +wKH +rUS +jAX +goC +ifg +gOZ +hZc +lAn +krH +nTp +vGp cpy cpy cpy @@ -92588,10 +83804,6 @@ cpy cpy cpy cpy -bMX -"} -(180,1,1) = {" -bMX cpy cpy cpy @@ -92678,41 +83890,14 @@ cpy cpy cpy cpy -ien -qSH -qSH -pFH -krH -xIv -qUL -qUL -qUL -qUL -qUL -tcu -tSo -vjv -wCr -xRM -xRM -fXn -uSB -ecP -aaF -sct -dWY -qzw -wqt -prD -qUL -lAn -krH -nTp -vGp cpy cpy cpy cpy +bMX +"} +(179,1,1) = {" +bMX cpy cpy cpy @@ -92753,6 +83938,62 @@ cpy cpy cpy cpy +ien +ien +ien +vGp +eJq +qSH +eXV +qSH +fDi +ycw +gmb +ycw +fTO +ycw +ycw +feZ +hmO +ycw +qSH +qSH +qSH +qSH +qSH +qSH +vGp +ien +qSH +qSH +pFH +ljA +xIv +qUL +qUL +qUL +pTW +swr +sIA +goC +jAX +tna +xyu +xyu +goC +ucs +goC +twB +fXn +uSB +ecP +fXn +rOO +qUL +lAn +krH +nTp +vGp cpy cpy cpy @@ -92815,10 +84056,6 @@ cpy cpy cpy cpy -bMX -"} -(181,1,1) = {" -bMX cpy cpy cpy @@ -92863,6 +84100,10 @@ cpy cpy cpy cpy +bMX +"} +(180,1,1) = {" +bMX cpy cpy cpy @@ -92905,36 +84146,59 @@ cpy cpy cpy ien -ien +vGp +vGp +qSH +qSH +qSH +exB +fDn +fXs +fkb +feZ +feZ +qSH +feZ +feZ +hTo +fCP +qSH +qSH +qSH +jNY +qSH +vGp +vGp ien qSH -pVn -krH +qSH +pFH +ljA xIv qUL qUL qUL qUL -nSF -qUL -ucD -vpU -wXe -qUL qUL +tcu +tSo +vjv +wCr +xRM +xRM +fXn +uSB +ecP +aaF sct dWY qzw wqt -swr -eUS -nSN -rCI -dWv +prD qUL lAn krH -keq +nTp vGp cpy cpy @@ -93044,7 +84308,7 @@ cpy cpy bMX "} -(182,1,1) = {" +(181,1,1) = {" bMX cpy cpy @@ -93087,6 +84351,63 @@ cpy cpy cpy cpy +ien +vGp +vGp +qSH +eOA +qSH +qSH +fDH +ycw +ycw +giF +ycw +qSH +ycw +ycw +ycw +ycw +eXV +qSH +opp +jNY +vGp +vGp +ien +ien +ien +qSH +pVn +ljA +xIv +qUL +qUL +qUL +qUL +nSF +qUL +ucD +vpU +wXe +qUL +qUL +sct +dWY +qzw +wqt +swr +eUS +nSN +rCI +dWv +qUL +lAn +krH +keq +vGp +cpy +cpy cpy cpy cpy @@ -93132,37 +84453,6 @@ cpy cpy cpy cpy -ien -qSH -qSH -oZN -aSR -iNs -qUL -qUL -qUL -qUL -nSF -qUL -xfu -qUL -dBd -iRl -qUL -swr -eUS -nSN -kzk -iRl -pTW -qUL -qUL -qUL -qUL -krH -aSR -ltf -vGp cpy cpy cpy @@ -93222,6 +84512,10 @@ cpy cpy cpy cpy +bMX +"} +(182,1,1) = {" +bMX cpy cpy cpy @@ -93262,6 +84556,76 @@ cpy cpy cpy cpy +ien +ien +ien +vGp +qSH +eOA +eOA +qSH +fFp +fFp +gmt +gNe +fFp +hbN +fFp +hHY +ghy +fFp +qSH +opp +opp +jNY +vGp +vGp +vGp +ien +qSH +qSH +oZN +ljq +iNs +qUL +qUL +qUL +qUL +nSF +qUL +xfu +qUL +dBd +iRl +qUL +swr +eUS +nSN +kzk +iRl +pTW +qUL +qUL +qUL +qUL +krH +aSR +ltf +vGp +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy +cpy cpy cpy cpy @@ -93269,10 +84633,6 @@ cpy cpy cpy cpy -bMX -"} -(183,1,1) = {" -bMX cpy cpy cpy @@ -93358,46 +84718,15 @@ cpy cpy cpy cpy +bMX +"} +(183,1,1) = {" +bMX cpy -ien -vGp -qSH -pYN -qqG -kbn -krH -lAn -lAn -lAn -lAn -lAn -nVX -nVX -lAn -lAn -lAn -lAn -naw -nzU -lAn -lAn -lAn -lAn -lAn -lAn -krH -krH -mil -wYJ -vGp -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy +abo +acq +aiO +abo cpy cpy cpy @@ -93434,8 +84763,61 @@ cpy cpy cpy cpy +ien +kBK +qSH +qSH +qSH +qSH +qSH +qSH +fXU +gnd +gnd +gXE +fXU +fXU +qSH +vGp +fXU +fXU +fXU +fXU +jOh +vGp cpy cpy +ien +vGp +qSH +pYN +qqG +kbn +ljA +lAn +lAn +lAn +lAn +lAn +nVX +nVX +lAn +lAn +lAn +lAn +naw +nzU +lAn +lAn +lAn +lAn +lAn +lAn +krH +krH +mil +wYJ +vGp cpy cpy cpy @@ -93496,10 +84878,6 @@ cpy cpy cpy cpy -bMX -"} -(184,1,1) = {" -bMX cpy cpy cpy @@ -93546,7 +84924,15 @@ cpy cpy cpy cpy +bMX +"} +(184,1,1) = {" +bMX cpy +abo +acJ +ajw +abo cpy cpy cpy @@ -93583,6 +84969,27 @@ cpy cpy cpy cpy +ien +xSN +vGp +vGp +vGp +qSH +qSH +qSH +qSH +gnA +uwF +qSH +hcx +rcr +qSH +qSH +vGp +vGp +vGp +vGp +vGp cpy cpy ien @@ -93592,23 +84999,23 @@ vGp qSH pYN qqG -krH -krH -krH +ljA +ljA +ljA rJr rJr -wXQ +mqc xIv -wXQ -wXQ -wXQ +mqc +mqc +mqc lAn rJr rJr tqb xIv -wXQ -wXQ +mqc +mqc wXQ krH krH @@ -93729,6 +85136,8 @@ bMX bMX cpy cpy +adl +ajM cpy cpy cpy @@ -93765,50 +85174,27 @@ cpy cpy cpy cpy +ien +ien +ien +xSN +vGp +ien +vGp +qSH +vGp cpy cpy cpy cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy +hcV +hnD +qSH +qSH +vGp +mRs +vGp +vGp cpy cpy cpy @@ -93821,21 +85207,21 @@ qSH pYN qXY qqG -krH -krH -krH +ljA +ljA +ljA tcv uGT -wXQ -wXQ +mqc +mqc hKS eNW cuk wAM tLJ xIv -wXQ -krH +mqc +ljA krH krH mil @@ -93955,6 +85341,10 @@ bMX (186,1,1) = {" bMX cpy +abo +adI +ajM +abo cpy cpy cpy @@ -93992,48 +85382,23 @@ cpy cpy cpy cpy +ien +ien +ien +ien +ien +vGp cpy cpy cpy cpy cpy cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy +mRs +qSH +qSH +qSH +vGp cpy cpy cpy @@ -94050,8 +85415,8 @@ qSH pYN qXY qqG -krH -krH +ljA +ljA xIv xIv xIv @@ -94061,8 +85426,8 @@ xIv xIv xIv kVh -krH -krH +ljA +ljA mil qXY wYJ @@ -94177,44 +85542,20 @@ cpy cpy cpy cpy -bMX -"} -(187,1,1) = {" -bMX -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy +bMX +"} +(187,1,1) = {" +bMX cpy +abo +adN +akk +abo +abo +abo +abo +abo +abo cpy cpy cpy @@ -94250,6 +85591,7 @@ cpy cpy cpy cpy +ien cpy cpy cpy @@ -94260,6 +85602,8 @@ cpy cpy cpy cpy +qSH +qSH cpy cpy cpy @@ -94278,17 +85622,17 @@ qSH qSH pYN qqG -krH -krH -krH -wXQ -wXQ +ljA +ljA +ljA +mqc +mqc lAn -wXQ -wXQ -krH -krH -krH +mqc +mqc +ljA +ljA +ljA mil wYJ qSH @@ -94409,36 +85753,15 @@ bMX (188,1,1) = {" bMX cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy +abo +adN +ajM +ann +abo +aut +aAb +aLJ +abo cpy cpy cpy @@ -94507,13 +85830,13 @@ qSH pYN qXY qqG -aSR -krH -krH +ljq +ljA +ljA lAn -krH -krH -aSR +ljA +ljA +ljq mil qXY wYJ @@ -94637,35 +85960,14 @@ bMX bMX cpy cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy +adN +akl +apS +arP +ajM +aDj +aNn +abo cpy cpy cpy @@ -94736,9 +86038,9 @@ qSH pYN qXY xpH -krH -krH -krH +ljA +ljA +ljA qzE qXY wYJ @@ -94863,36 +86165,15 @@ bMX (190,1,1) = {" bMX cpy +abo +acq +aiO cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy +abo +axN +aDZ +aNI +abo cpy cpy cpy @@ -95094,32 +86375,11 @@ cpy cpy cpy cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy +abo +abo +abo +abo +abo cpy cpy cpy @@ -95518,27 +86778,6 @@ cpy cpy cpy cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy -cpy bMX "} (193,1,1) = {" @@ -95746,25 +86985,4 @@ bMX bMX bMX bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX -bMX "} diff --git a/sound/effects/revive_notify.ogg b/sound/effects/revive_notify.ogg deleted file mode 100644 index d155f345181c..000000000000 Binary files a/sound/effects/revive_notify.ogg and /dev/null differ diff --git a/tools/UpdatePaths/6656-no-more-open-turf-edits.txt b/tools/UpdatePaths/6656-no-more-open-turf-edits.txt new file mode 100644 index 000000000000..9eebcd7f11d8 --- /dev/null +++ b/tools/UpdatePaths/6656-no-more-open-turf-edits.txt @@ -0,0 +1,1482 @@ +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached1";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached1 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached12";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached12 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached13";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached13 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached14";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached14 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached15";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached15 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached16";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached16 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached17";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached17 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached18";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached18 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached19";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached19 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached2";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached2 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached20";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached20 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached3";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached3 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached4";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached4 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached6";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached6 +/turf/open/asphalt/cement_sunbleached{icon_state="cement_sunbleached9";} : /turf/open/asphalt/cement_sunbleached/cement_sunbleached9 +/turf/open/asphalt/cement{icon_state="cement1";dir=1;} : /turf/open/asphalt/cement/cement1/north +/turf/open/asphalt/cement{icon_state="cement1";} : /turf/open/asphalt/cement/cement1 +/turf/open/asphalt/cement{icon_state="cement12";} : /turf/open/asphalt/cement/cement12 +/turf/open/asphalt/cement{icon_state="cement13";} : /turf/open/asphalt/cement/cement13 +/turf/open/asphalt/cement{icon_state="cement14";} : /turf/open/asphalt/cement/cement14 +/turf/open/asphalt/cement{icon_state="cement15";} : /turf/open/asphalt/cement/cement15 +/turf/open/asphalt/cement{icon_state="cement2";} : /turf/open/asphalt/cement/cement2 +/turf/open/asphalt/cement{icon_state="cement3";} : /turf/open/asphalt/cement/cement3 +/turf/open/asphalt/cement{icon_state="cement4";} : /turf/open/asphalt/cement/cement4 +/turf/open/asphalt/cement{icon_state="cement7";} : /turf/open/asphalt/cement/cement7 +/turf/open/asphalt/cement{icon_state="cement9";} : /turf/open/asphalt/cement/cement9 +/turf/open/asphalt{icon_state="tile";} : /turf/open/asphalt/tile +/turf/open/desert/cave/cave_shore{dir=4;} : /turf/open/desert/cave/cave_shore/east +/turf/open/desert/cave/cave_shore{dir=5;} : /turf/open/desert/cave/cave_shore/northeast +/turf/open/desert/cave/cave_shore{dir=6;} : /turf/open/desert/cave/cave_shore/southeast +/turf/open/desert/desert_shore/desert_shore1{dir=1;} : /turf/open/desert/desert_shore/desert_shore1/north +/turf/open/desert/desert_shore/desert_shore1{dir=4;} : /turf/open/desert/desert_shore/desert_shore1/east +/turf/open/desert/desert_shore/desert_shore1{dir=8;} : /turf/open/desert/desert_shore/desert_shore1/west +/turf/open/desert/desert_shore/shore_corner1{dir=1;} : /turf/open/desert/desert_shore/shore_corner1/north +/turf/open/desert/desert_shore/shore_corner1{dir=8;} : /turf/open/desert/desert_shore/shore_corner1/west +/turf/open/desert/desert_shore/shore_corner2{dir=1;} : /turf/open/desert/desert_shore/shore_corner2/north +/turf/open/desert/desert_shore/shore_corner2{dir=4;} : /turf/open/desert/desert_shore/shore_corner2/east +/turf/open/desert/desert_shore/shore_corner2{dir=8;} : /turf/open/desert/desert_shore/shore_corner2/west +/turf/open/desert/desert_shore/shore_edge1{dir=1;} : /turf/open/desert/desert_shore/shore_edge1/north +/turf/open/desert/desert_shore/shore_edge1{dir=4;} : /turf/open/desert/desert_shore/shore_edge1/east +/turf/open/desert/desert_shore/shore_edge1{dir=8;} : /turf/open/desert/desert_shore/shore_edge1/west +/turf/open/desert/dirt{dir=10;icon_state="desert_transition_edge1";} : /turf/open/desert/dirt/desert_transition_edge1/southwest +/turf/open/desert/dirt{dir=1;icon_state="desert_transition_corner1";} : /turf/open/desert/dirt/desert_transition_corner1/north +/turf/open/desert/dirt{dir=1;icon_state="desert_transition_edge1";} : /turf/open/desert/dirt/desert_transition_edge1/north +/turf/open/desert/dirt{dir=4;icon_state="desert_transition_corner1";} : /turf/open/desert/dirt/desert_transition_corner1/east +/turf/open/desert/dirt{dir=4;icon_state="desert_transition_edge1";} : /turf/open/desert/dirt/desert_transition_edge1/east +/turf/open/desert/dirt{dir=5;icon_state="desert_transition_edge1";} : /turf/open/desert/dirt/desert_transition_edge1/northeast +/turf/open/desert/dirt{dir=6;icon_state="desert_transition_edge1";} : /turf/open/desert/dirt/desert_transition_edge1/southeast +/turf/open/desert/dirt{dir=8;icon_state="desert_transition_corner1";} : /turf/open/desert/dirt/desert_transition_corner1/west +/turf/open/desert/dirt{dir=8;icon_state="desert_transition_edge1";} : /turf/open/desert/dirt/desert_transition_edge1/west +/turf/open/desert/dirt{dir=9;icon_state="desert_transition_edge1";} : /turf/open/desert/dirt/desert_transition_edge1/northwest +/turf/open/desert/dirt{icon_state="desert_transition_corner1";} : /turf/open/desert/dirt/desert_transition_corner1 +/turf/open/desert/dirt{icon_state="desert_transition_edge1";} : /turf/open/desert/dirt/desert_transition_edge1 +/turf/open/desert/dirt{icon_state="dirt2";} : /turf/open/desert/dirt/dirt2 +/turf/open/desert/dirt{icon_state="rock1";} : /turf/open/desert/dirt/rock1 +/turf/open/desert/excavation/component1{dir=10;} : /turf/open/desert/excavation/component1/southwest +/turf/open/desert/excavation/component1{dir=1;} : /turf/open/desert/excavation/component1/north +/turf/open/desert/excavation/component1{dir=4;} : /turf/open/desert/excavation/component1/east +/turf/open/desert/excavation/component1{dir=5;} : /turf/open/desert/excavation/component1/northeast +/turf/open/desert/excavation/component1{dir=6;} : /turf/open/desert/excavation/component1/southeast +/turf/open/desert/excavation/component1{dir=8;} : /turf/open/desert/excavation/component1/west +/turf/open/desert/excavation/component2{dir=1;} : /turf/open/desert/excavation/component2/north +/turf/open/desert/excavation/component2{dir=4;} : /turf/open/desert/excavation/component2/east +/turf/open/desert/excavation/component2{dir=6;} : /turf/open/desert/excavation/component2/southeast +/turf/open/desert/excavation/component2{dir=8;} : /turf/open/desert/excavation/component2/west +/turf/open/desert/excavation/component3{dir=10;} : /turf/open/desert/excavation/component3/southwest +/turf/open/desert/excavation/component3{dir=1;} : /turf/open/desert/excavation/component3/north +/turf/open/desert/excavation/component3{dir=4;} : /turf/open/desert/excavation/component3/east +/turf/open/desert/excavation/component3{dir=5;} : /turf/open/desert/excavation/component3/northeast +/turf/open/desert/excavation/component3{dir=6;} : /turf/open/desert/excavation/component3/southeast +/turf/open/desert/excavation/component3{dir=8;} : /turf/open/desert/excavation/component3/west +/turf/open/desert/excavation/component4{dir=1;} : /turf/open/desert/excavation/component4/north +/turf/open/desert/excavation/component4{dir=4;} : /turf/open/desert/excavation/component4/east +/turf/open/desert/excavation/component4{dir=6;} : /turf/open/desert/excavation/component4/southeast +/turf/open/desert/excavation/component4{dir=8;} : /turf/open/desert/excavation/component4/west +/turf/open/desert/excavation/component5{dir=10;} : /turf/open/desert/excavation/component5/southwest +/turf/open/desert/excavation/component5{dir=1;} : /turf/open/desert/excavation/component5/north +/turf/open/desert/excavation/component5{dir=4;} : /turf/open/desert/excavation/component5/east +/turf/open/desert/excavation/component5{dir=5;} : /turf/open/desert/excavation/component5/northeast +/turf/open/desert/excavation/component5{dir=6;} : /turf/open/desert/excavation/component5/southeast +/turf/open/desert/excavation/component5{dir=8;} : /turf/open/desert/excavation/component5/west +/turf/open/desert/excavation/component6{dir=10;} : /turf/open/desert/excavation/component6/southwest +/turf/open/desert/excavation/component6{dir=1;} : /turf/open/desert/excavation/component6/north +/turf/open/desert/excavation/component6{dir=4;} : /turf/open/desert/excavation/component6/east +/turf/open/desert/excavation/component6{dir=5;} : /turf/open/desert/excavation/component6/northeast +/turf/open/desert/excavation/component6{dir=6;} : /turf/open/desert/excavation/component6/southeast +/turf/open/desert/excavation/component6{dir=8;} : /turf/open/desert/excavation/component6/west +/turf/open/desert/excavation/component7{dir=10;} : /turf/open/desert/excavation/component7/southwest +/turf/open/desert/excavation/component7{dir=1;} : /turf/open/desert/excavation/component7/north +/turf/open/desert/excavation/component7{dir=4;} : /turf/open/desert/excavation/component7/east +/turf/open/desert/excavation/component7{dir=5;} : /turf/open/desert/excavation/component7/northeast +/turf/open/desert/excavation/component7{dir=6;} : /turf/open/desert/excavation/component7/southeast +/turf/open/desert/excavation/component7{dir=8;} : /turf/open/desert/excavation/component7/west +/turf/open/desert/excavation/component8{dir=10;} : /turf/open/desert/excavation/component8/southwest +/turf/open/desert/excavation/component8{dir=1;} : /turf/open/desert/excavation/component8/north +/turf/open/desert/excavation/component8{dir=4;} : /turf/open/desert/excavation/component8/east +/turf/open/desert/excavation/component8{dir=5;} : /turf/open/desert/excavation/component8/northeast +/turf/open/desert/excavation/component8{dir=6;} : /turf/open/desert/excavation/component8/southeast +/turf/open/desert/excavation/component8{dir=8;} : /turf/open/desert/excavation/component8/west +/turf/open/desert/excavation/component8{dir=9;} : /turf/open/desert/excavation/component8/northwest +/turf/open/desert/excavation/component9{dir=10;} : /turf/open/desert/excavation/component9/southwest +/turf/open/desert/excavation/component9{dir=1;} : /turf/open/desert/excavation/component9/north +/turf/open/desert/excavation/component9{dir=4;} : /turf/open/desert/excavation/component9/east +/turf/open/desert/excavation/component9{dir=6;} : /turf/open/desert/excavation/component9/southeast +/turf/open/desert/excavation/component9{dir=8;} : /turf/open/desert/excavation/component9/west +/turf/open/desert/rock/deep/transition{dir=10;} : /turf/open/desert/rock/deep/transition/southwest +/turf/open/desert/rock/deep/transition{dir=1;} : /turf/open/desert/rock/deep/transition/north +/turf/open/desert/rock/deep/transition{dir=4;} : /turf/open/desert/rock/deep/transition/east +/turf/open/desert/rock/deep/transition{dir=5;} : /turf/open/desert/rock/deep/transition/northeast +/turf/open/desert/rock/deep/transition{dir=6;} : /turf/open/desert/rock/deep/transition/southeast +/turf/open/desert/rock/deep/transition{dir=8;} : /turf/open/desert/rock/deep/transition/west +/turf/open/desert/rock/deep/transition{dir=9;} : /turf/open/desert/rock/deep/transition/northwest +/turf/open/desert/rock/deep{icon_state="rock3";} : /turf/open/desert/rock/deep/rock3 +/turf/open/desert/rock/deep{icon_state="rock4";} : /turf/open/desert/rock/deep/rock4 +/turf/open/desert/rock/edge1{dir=4;} : /turf/open/desert/rock/edge1/east +/turf/open/floor/airless{dir=5;icon_state="asteroidfloor";} : /turf/open/floor/airless/asteroidfloor/northeast +/turf/open/floor/almayer/aicore/glowing/no_build{icon_state="ai_floor3";light_range=4;} : /turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3_4range +/turf/open/floor/almayer/aicore/glowing/no_build{icon_state="ai_floor3";} : /turf/open/floor/almayer/aicore/glowing/no_build/ai_floor3 +/turf/open/floor/almayer/aicore/no_build{dir=4;icon_state="ai_arrow";} : /turf/open/floor/almayer/aicore/no_build/ai_arrow/east +/turf/open/floor/almayer/aicore/no_build{dir=4;icon_state="ai_silver";} : /turf/open/floor/almayer/aicore/no_build/ai_silver/east +/turf/open/floor/almayer/aicore/no_build{dir=8;icon_state="ai_arrow";} : /turf/open/floor/almayer/aicore/no_build/ai_arrow/west +/turf/open/floor/almayer/aicore/no_build{dir=8;icon_state="ai_silver";} : /turf/open/floor/almayer/aicore/no_build/ai_silver/west +/turf/open/floor/almayer/aicore/no_build{icon_state="ai_arrow";} : /turf/open/floor/almayer/aicore/no_build/ai_arrow +/turf/open/floor/almayer/aicore/no_build{icon_state="ai_cargo";} : /turf/open/floor/almayer/aicore/no_build/ai_cargo +/turf/open/floor/almayer/aicore/no_build{icon_state="ai_floor2";} : /turf/open/floor/almayer/aicore/no_build/ai_floor2 +/turf/open/floor/almayer/aicore/no_build{icon_state="ai_plates";} : /turf/open/floor/almayer/aicore/no_build/ai_plates +/turf/open/floor/almayer/no_build{icon_state="ai_floors";} : /turf/open/floor/almayer/no_build/ai_floors +/turf/open/floor/almayer/no_build{icon_state="plating";} : /turf/open/floor/almayer/no_build/plating +/turf/open/floor/almayer/no_build{icon_state="test_floor4";} : /turf/open/floor/almayer/no_build/test_floor4 +/turf/open/floor/almayer/research/containment/corner_var1{dir=4;} : /turf/open/floor/almayer/research/containment/corner_var1/east +/turf/open/floor/almayer/research/containment/corner_var1{icon_state="containment_corner_variant_2";} : /turf/open/floor/almayer/research/containment/corner_var1/containment_corner_variant_2 +/turf/open/floor/almayer/research/containment/corner{dir=1;} : /turf/open/floor/almayer/research/containment/corner/north +/turf/open/floor/almayer/research/containment/corner{dir=4;} : /turf/open/floor/almayer/research/containment/corner/east +/turf/open/floor/almayer/research/containment/entrance{dir=8;} : /turf/open/floor/almayer/research/containment/entrance/west +/turf/open/floor/almayer/research/containment/floor2{dir=1;} : /turf/open/floor/almayer/research/containment/floor2/north +/turf/open/floor/almayer/research/containment/floor2{dir=8;} : /turf/open/floor/almayer/research/containment/floor2/west +/turf/open/floor/almayer/uscm/directional{dir=10;} : /turf/open/floor/almayer/uscm/directional/southwest +/turf/open/floor/almayer/uscm/directional{dir=1;} : /turf/open/floor/almayer/uscm/directional/north +/turf/open/floor/almayer/uscm/directional{dir=4;} : /turf/open/floor/almayer/uscm/directional/east +/turf/open/floor/almayer/uscm/directional{dir=5;} : /turf/open/floor/almayer/uscm/directional/northeast +/turf/open/floor/almayer/uscm/directional{dir=6;} : /turf/open/floor/almayer/uscm/directional/southeast +/turf/open/floor/almayer/uscm/directional{dir=8;icon_state="logo_c";} : /turf/open/floor/almayer/uscm/directional/logo_c/west +/turf/open/floor/almayer/uscm/directional{dir=8;} : /turf/open/floor/almayer/uscm/directional/west +/turf/open/floor/almayer/uscm/directional{dir=9;} : /turf/open/floor/almayer/uscm/directional/northwest +/turf/open/floor/almayer_hull{dir=10;icon_state="outerhull_dir";} : /turf/open/floor/almayer_hull/outerhull_dir/southwest +/turf/open/floor/almayer_hull{dir=1;icon_state="outerhull_dir";} : /turf/open/floor/almayer_hull/outerhull_dir/north +/turf/open/floor/almayer_hull{dir=4;icon_state="outerhull_dir";} : /turf/open/floor/almayer_hull/outerhull_dir/east +/turf/open/floor/almayer_hull{dir=5;icon_state="outerhull_dir";} : /turf/open/floor/almayer_hull/outerhull_dir/northeast +/turf/open/floor/almayer_hull{dir=6;icon_state="outerhull_dir";} : /turf/open/floor/almayer_hull/outerhull_dir/southeast +/turf/open/floor/almayer_hull{dir=8;icon_state="outerhull_dir";} : /turf/open/floor/almayer_hull/outerhull_dir/west +/turf/open/floor/almayer_hull{dir=9;icon_state="outerhull_dir";} : /turf/open/floor/almayer_hull/outerhull_dir/northwest +/turf/open/floor/almayer_hull{icon_state="outerhull_dir";} : /turf/open/floor/almayer_hull/outerhull_dir +/turf/open/floor/almayer{allow_construction=0;icon_state="plate";} : /turf/open/floor/almayer/no_build/plate +/turf/open/floor/almayer{allow_construction=0;} : /turf/open/floor/almayer/no_build +/turf/open/floor/almayer{desc="There's a hatch above it, presumably to allow pods to drop in.";icon_state="test_floor4";name="pod landing floor";} : /turf/open/floor/almayer/pod_landing_floor +/turf/open/floor/almayer{dir=10;icon_state="blue";} : /turf/open/floor/almayer/blue/southwest +/turf/open/floor/almayer{dir=10;icon_state="cargo";} : /turf/open/floor/almayer/cargo/southwest +/turf/open/floor/almayer{dir=10;icon_state="emerald";} : /turf/open/floor/almayer/emerald/southwest +/turf/open/floor/almayer{dir=10;icon_state="green";} : /turf/open/floor/almayer/green/southwest +/turf/open/floor/almayer{dir=10;icon_state="orange";} : /turf/open/floor/almayer/orange/southwest +/turf/open/floor/almayer{dir=10;icon_state="red";} : /turf/open/floor/almayer/red/southwest +/turf/open/floor/almayer{dir=10;icon_state="silver";} : /turf/open/floor/almayer/silver/southwest +/turf/open/floor/almayer{dir=10;icon_state="sterile_green_side";} : /turf/open/floor/almayer/sterile_green_side/southwest +/turf/open/floor/almayer{dir=1;icon_state="blue";} : /turf/open/floor/almayer/blue/north +/turf/open/floor/almayer{dir=1;icon_state="bluecorner";} : /turf/open/floor/almayer/bluecorner/north +/turf/open/floor/almayer{dir=1;icon_state="cargo_arrow";} : /turf/open/floor/almayer/cargo_arrow/north +/turf/open/floor/almayer{dir=1;icon_state="emerald";} : /turf/open/floor/almayer/emerald/north +/turf/open/floor/almayer{dir=1;icon_state="emeraldcorner";} : /turf/open/floor/almayer/emeraldcorner/north +/turf/open/floor/almayer{dir=1;icon_state="green";} : /turf/open/floor/almayer/green/north +/turf/open/floor/almayer{dir=1;icon_state="greencorner";} : /turf/open/floor/almayer/greencorner/north +/turf/open/floor/almayer{dir=1;icon_state="orange";} : /turf/open/floor/almayer/orange/north +/turf/open/floor/almayer{dir=1;icon_state="orangecorner";} : /turf/open/floor/almayer/orangecorner/north +/turf/open/floor/almayer{dir=1;icon_state="plating_striped";} : /turf/open/floor/almayer/plating_striped/north +/turf/open/floor/almayer{dir=1;icon_state="red";} : /turf/open/floor/almayer/red/north +/turf/open/floor/almayer{dir=1;icon_state="redcorner";} : /turf/open/floor/almayer/redcorner/north +/turf/open/floor/almayer{dir=1;icon_state="silver";} : /turf/open/floor/almayer/silver/north +/turf/open/floor/almayer{dir=1;icon_state="silvercorner";} : /turf/open/floor/almayer/silvercorner/north +/turf/open/floor/almayer{dir=1;icon_state="sterile_green_corner";} : /turf/open/floor/almayer/sterile_green_corner/north +/turf/open/floor/almayer{dir=1;icon_state="sterile_green_side";} : /turf/open/floor/almayer/sterile_green_side/north +/turf/open/floor/almayer{dir=1;icon_state="w-y0";} : /turf/open/floor/almayer/w_y0/north +/turf/open/floor/almayer{dir=1;icon_state="w-y1";} : /turf/open/floor/almayer/w_y1/north +/turf/open/floor/almayer{dir=1;icon_state="w-y2";} : /turf/open/floor/almayer/w_y2/north +/turf/open/floor/almayer{dir=2;icon_state="green";} : /turf/open/floor/almayer/green/south +/turf/open/floor/almayer{dir=4;icon_state="blue";} : /turf/open/floor/almayer/blue/east +/turf/open/floor/almayer{dir=4;icon_state="bluecorner";} : /turf/open/floor/almayer/bluecorner/east +/turf/open/floor/almayer{dir=4;icon_state="cargo_arrow";} : /turf/open/floor/almayer/cargo_arrow/east +/turf/open/floor/almayer{dir=4;icon_state="emerald";} : /turf/open/floor/almayer/emerald/east +/turf/open/floor/almayer{dir=4;icon_state="emeraldcorner";} : /turf/open/floor/almayer/emeraldcorner/east +/turf/open/floor/almayer{dir=4;icon_state="green";} : /turf/open/floor/almayer/green/east +/turf/open/floor/almayer{dir=4;icon_state="greencorner";} : /turf/open/floor/almayer/greencorner/east +/turf/open/floor/almayer{dir=4;icon_state="orange";} : /turf/open/floor/almayer/orange/east +/turf/open/floor/almayer{dir=4;icon_state="orangecorner";} : /turf/open/floor/almayer/orangecorner/east +/turf/open/floor/almayer{dir=4;icon_state="plating_striped";} : /turf/open/floor/almayer/plating_striped/east +/turf/open/floor/almayer{dir=4;icon_state="red";} : /turf/open/floor/almayer/red/east +/turf/open/floor/almayer{dir=4;icon_state="redcorner";} : /turf/open/floor/almayer/redcorner/east +/turf/open/floor/almayer{dir=4;icon_state="silver";} : /turf/open/floor/almayer/silver/east +/turf/open/floor/almayer{dir=4;icon_state="silvercorner";} : /turf/open/floor/almayer/silvercorner/east +/turf/open/floor/almayer{dir=4;icon_state="sterile_green_corner";} : /turf/open/floor/almayer/sterile_green_corner/east +/turf/open/floor/almayer{dir=4;icon_state="sterile_green_side";} : /turf/open/floor/almayer/sterile_green_side/east +/turf/open/floor/almayer{dir=5;icon_state="blue";} : /turf/open/floor/almayer/blue/northeast +/turf/open/floor/almayer{dir=5;icon_state="emerald";} : /turf/open/floor/almayer/emerald/northeast +/turf/open/floor/almayer{dir=5;icon_state="green";} : /turf/open/floor/almayer/green/northeast +/turf/open/floor/almayer{dir=5;icon_state="orange";} : /turf/open/floor/almayer/orange/northeast +/turf/open/floor/almayer{dir=5;icon_state="plating";} : /turf/open/floor/almayer/plating/northeast +/turf/open/floor/almayer{dir=5;icon_state="red";} : /turf/open/floor/almayer/red/northeast +/turf/open/floor/almayer{dir=5;icon_state="silver";} : /turf/open/floor/almayer/silver/northeast +/turf/open/floor/almayer{dir=5;icon_state="sterile_green_side";} : /turf/open/floor/almayer/sterile_green_side/northeast +/turf/open/floor/almayer{dir=6;icon_state="blue";} : /turf/open/floor/almayer/blue/southeast +/turf/open/floor/almayer{dir=6;icon_state="emerald";} : /turf/open/floor/almayer/emerald/southeast +/turf/open/floor/almayer{dir=6;icon_state="green";} : /turf/open/floor/almayer/green/southeast +/turf/open/floor/almayer{dir=6;icon_state="orange";} : /turf/open/floor/almayer/orange/southeast +/turf/open/floor/almayer{dir=6;icon_state="red";} : /turf/open/floor/almayer/red/southeast +/turf/open/floor/almayer{dir=6;icon_state="silver";} : /turf/open/floor/almayer/silver/southeast +/turf/open/floor/almayer{dir=6;icon_state="sterile_green_side";} : /turf/open/floor/almayer/sterile_green_side/southeast +/turf/open/floor/almayer{dir=8;icon_state="blue";} : /turf/open/floor/almayer/blue/west +/turf/open/floor/almayer{dir=8;icon_state="bluecorner";} : /turf/open/floor/almayer/bluecorner/west +/turf/open/floor/almayer{dir=8;icon_state="cargo_arrow";} : /turf/open/floor/almayer/cargo_arrow/west +/turf/open/floor/almayer{dir=8;icon_state="emerald";} : /turf/open/floor/almayer/emerald/west +/turf/open/floor/almayer{dir=8;icon_state="emeraldcorner";} : /turf/open/floor/almayer/emeraldcorner/west +/turf/open/floor/almayer{dir=8;icon_state="green";} : /turf/open/floor/almayer/green/west +/turf/open/floor/almayer{dir=8;icon_state="greencorner";} : /turf/open/floor/almayer/greencorner/west +/turf/open/floor/almayer{dir=8;icon_state="orange";} : /turf/open/floor/almayer/orange/west +/turf/open/floor/almayer{dir=8;icon_state="orangecorner";} : /turf/open/floor/almayer/orangecorner/west +/turf/open/floor/almayer{dir=8;icon_state="plating_striped";} : /turf/open/floor/almayer/plating_striped/west +/turf/open/floor/almayer{dir=8;icon_state="red";} : /turf/open/floor/almayer/red/west +/turf/open/floor/almayer{dir=8;icon_state="redcorner";} : /turf/open/floor/almayer/redcorner/west +/turf/open/floor/almayer{dir=8;icon_state="silver";} : /turf/open/floor/almayer/silver/west +/turf/open/floor/almayer{dir=8;icon_state="silvercorner";} : /turf/open/floor/almayer/silvercorner/west +/turf/open/floor/almayer{dir=8;icon_state="sterile_green_corner";} : /turf/open/floor/almayer/sterile_green_corner/west +/turf/open/floor/almayer{dir=8;icon_state="sterile_green_side";} : /turf/open/floor/almayer/sterile_green_side/west +/turf/open/floor/almayer{dir=9;icon_state="blue";} : /turf/open/floor/almayer/blue/northwest +/turf/open/floor/almayer{dir=9;icon_state="emerald";} : /turf/open/floor/almayer/emerald/northwest +/turf/open/floor/almayer{dir=9;icon_state="green";} : /turf/open/floor/almayer/green/northwest +/turf/open/floor/almayer{dir=9;icon_state="orange";} : /turf/open/floor/almayer/orange/northwest +/turf/open/floor/almayer{dir=9;icon_state="red";} : /turf/open/floor/almayer/red/northwest +/turf/open/floor/almayer{dir=9;icon_state="silver";} : /turf/open/floor/almayer/silver/northwest +/turf/open/floor/almayer{dir=9;icon_state="sterile_green_side";} : /turf/open/floor/almayer/sterile_green_side/northwest +/turf/open/floor/almayer{icon_state="ai_floors";} : /turf/open/floor/almayer/ai_floors +/turf/open/floor/almayer{icon_state="blue";} : /turf/open/floor/almayer/blue +/turf/open/floor/almayer{icon_state="bluecorner";} : /turf/open/floor/almayer/bluecorner +/turf/open/floor/almayer{icon_state="bluefull";} : /turf/open/floor/almayer/bluefull +/turf/open/floor/almayer{icon_state="cargo";} : /turf/open/floor/almayer/cargo +/turf/open/floor/almayer{icon_state="cargo_arrow";} : /turf/open/floor/almayer/cargo_arrow +/turf/open/floor/almayer{icon_state="dark_sterile";} : /turf/open/floor/almayer/dark_sterile +/turf/open/floor/almayer{icon_state="emerald";} : /turf/open/floor/almayer/emerald +/turf/open/floor/almayer{icon_state="emeraldcorner";} : /turf/open/floor/almayer/emeraldcorner +/turf/open/floor/almayer{icon_state="emeraldfull";} : /turf/open/floor/almayer/emeraldfull +/turf/open/floor/almayer{icon_state="floor";} : /turf/open/floor/almayer/floor +/turf/open/floor/almayer{icon_state="green";} : /turf/open/floor/almayer/green +/turf/open/floor/almayer{icon_state="greencorner";} : /turf/open/floor/almayer/greencorner +/turf/open/floor/almayer{icon_state="greenfull";} : /turf/open/floor/almayer/greenfull +/turf/open/floor/almayer{icon_state="mono";} : /turf/open/floor/almayer/mono +/turf/open/floor/almayer{icon_state="orange";} : /turf/open/floor/almayer/orange +/turf/open/floor/almayer{icon_state="orangecorner";} : /turf/open/floor/almayer/orangecorner +/turf/open/floor/almayer{icon_state="orangefull";} : /turf/open/floor/almayer/orangefull +/turf/open/floor/almayer{icon_state="plate";} : /turf/open/floor/almayer/plate +/turf/open/floor/almayer{icon_state="plating";} : /turf/open/floor/almayer/plating +/turf/open/floor/almayer{icon_state="plating_striped";} : /turf/open/floor/almayer/plating_striped +/turf/open/floor/almayer{icon_state="red";} : /turf/open/floor/almayer/red +/turf/open/floor/almayer{icon_state="redcorner";} : /turf/open/floor/almayer/redcorner +/turf/open/floor/almayer{icon_state="redfull";} : /turf/open/floor/almayer/redfull +/turf/open/floor/almayer{icon_state="silver";} : /turf/open/floor/almayer/silver +/turf/open/floor/almayer{icon_state="silvercorner";} : /turf/open/floor/almayer/silvercorner +/turf/open/floor/almayer{icon_state="silverfull";} : /turf/open/floor/almayer/silverfull +/turf/open/floor/almayer{icon_state="sterile";} : /turf/open/floor/almayer/sterile +/turf/open/floor/almayer{icon_state="sterile_green";} : /turf/open/floor/almayer/sterile_green +/turf/open/floor/almayer{icon_state="sterile_green_corner";} : /turf/open/floor/almayer/sterile_green_corner +/turf/open/floor/almayer{icon_state="sterile_green_side";} : /turf/open/floor/almayer/sterile_green_side +/turf/open/floor/almayer{icon_state="tcomms";} : /turf/open/floor/almayer/tcomms +/turf/open/floor/almayer{icon_state="test_floor4";} : /turf/open/floor/almayer/test_floor4 +/turf/open/floor/almayer{icon_state="test_floor5";} : /turf/open/floor/almayer/test_floor5 +/turf/open/floor/bluegrid{icon_state="bcircuitoff";} : /turf/open/floor/bluegrid/bcircuitoff +/turf/open/floor/bluegrid{icon_state="damaged3";} : /turf/open/floor/bluegrid/damaged3 +/turf/open/floor/bluegrid{icon_state="damaged4";} : /turf/open/floor/bluegrid/damaged4 +/turf/open/floor/bluegrid{icon_state="damaged5";} : /turf/open/floor/bluegrid/damaged5 +/turf/open/floor/carpet/edge{dir=10;} : /turf/open/floor/carpet/edge/southwest +/turf/open/floor/carpet/edge{dir=1;} : /turf/open/floor/carpet/edge/north +/turf/open/floor/carpet/edge{dir=4;} : /turf/open/floor/carpet/edge/east +/turf/open/floor/carpet/edge{dir=5;} : /turf/open/floor/carpet/edge/northeast +/turf/open/floor/carpet/edge{dir=6;} : /turf/open/floor/carpet/edge/southeast +/turf/open/floor/carpet/edge{dir=8;} : /turf/open/floor/carpet/edge/west +/turf/open/floor/carpet/edge{dir=9;} : /turf/open/floor/carpet/edge/northwest +/turf/open/floor/carpet{desc="Plush, waterproof carpet. Apparently it's fire resistant while remaining quite soft.";name="\improper carpet";} : /turf/open/floor/carpet +/turf/open/floor/carpet{icon_state="bcarpet01";} : /turf/open/floor/carpet/bcarpet01 +/turf/open/floor/carpet{icon_state="bcarpet02";} : /turf/open/floor/carpet/bcarpet02 +/turf/open/floor/carpet{icon_state="bcarpet03";} : /turf/open/floor/carpet/bcarpet03 +/turf/open/floor/carpet{icon_state="bcarpet07";} : /turf/open/floor/carpet/bcarpet07 +/turf/open/floor/carpet{icon_state="bcarpet08";} : /turf/open/floor/carpet/bcarpet08 +/turf/open/floor/carpet{icon_state="bcarpet09";} : /turf/open/floor/carpet/bcarpet09 +/turf/open/floor/carpet{name="\improper carpet";} : /turf/open/floor/carpet +/turf/open/floor/coagulation{icon_state="0,0";} : /turf/open/floor/coagulation/icon0_0 +/turf/open/floor/coagulation{icon_state="0,4";} : /turf/open/floor/coagulation/icon0_4 +/turf/open/floor/coagulation{icon_state="0,5";} : /turf/open/floor/coagulation/icon0_5 +/turf/open/floor/coagulation{icon_state="0,8";} : /turf/open/floor/coagulation/icon0_8 +/turf/open/floor/coagulation{icon_state="1,1";} : /turf/open/floor/coagulation/icon1_1 +/turf/open/floor/coagulation{icon_state="1,7";} : /turf/open/floor/coagulation/icon1_7 +/turf/open/floor/coagulation{icon_state="2,0";} : /turf/open/floor/coagulation/icon2_0 +/turf/open/floor/coagulation{icon_state="4,8";} : /turf/open/floor/coagulation/icon4_8 +/turf/open/floor/coagulation{icon_state="5,8";} : /turf/open/floor/coagulation/icon5_8 +/turf/open/floor/coagulation{icon_state="6,8";} : /turf/open/floor/coagulation/icon6_8 +/turf/open/floor/coagulation{icon_state="6,8-2";} : /turf/open/floor/coagulation/icon6_8_2 +/turf/open/floor/coagulation{icon_state="7,0";} : /turf/open/floor/coagulation/icon7_0 +/turf/open/floor/coagulation{icon_state="7,1";} : /turf/open/floor/coagulation/icon7_1 +/turf/open/floor/coagulation{icon_state="7,7";} : /turf/open/floor/coagulation/icon7_7 +/turf/open/floor/coagulation{icon_state="7,7-2";} : /turf/open/floor/coagulation/icon7_7_2 +/turf/open/floor/coagulation{icon_state="7,8";} : /turf/open/floor/coagulation/icon7_8 +/turf/open/floor/coagulation{icon_state="7,8-2";} : /turf/open/floor/coagulation/icon7_8_2 +/turf/open/floor/coagulation{icon_state="8,0";} : /turf/open/floor/coagulation/icon8_0 +/turf/open/floor/coagulation{icon_state="8,3";} : /turf/open/floor/coagulation/icon8_3 +/turf/open/floor/coagulation{icon_state="8,4";} : /turf/open/floor/coagulation/icon8_4 +/turf/open/floor/coagulation{icon_state="8,6";} : /turf/open/floor/coagulation/icon8_6 +/turf/open/floor/coagulation{icon_state="8,7";} : /turf/open/floor/coagulation/icon8_7 +/turf/open/floor/coagulation{icon_state="8,7-2";} : /turf/open/floor/coagulation/icon8_7_2 +/turf/open/floor/coagulation{icon_state="8,8";} : /turf/open/floor/coagulation/icon8_8 +/turf/open/floor/corsat{dir=10;icon_state="blue";} : /turf/open/floor/corsat/blue/southwest +/turf/open/floor/corsat{dir=10;icon_state="bluegrey";} : /turf/open/floor/corsat/bluegrey/southwest +/turf/open/floor/corsat{dir=10;icon_state="brown";} : /turf/open/floor/corsat/brown/southwest +/turf/open/floor/corsat{dir=10;icon_state="corsat_teleporter_static";} : /turf/open/floor/corsat/corsat_teleporter_static/southwest +/turf/open/floor/corsat{dir=10;icon_state="darkgreen";} : /turf/open/floor/corsat/darkgreen/southwest +/turf/open/floor/corsat{dir=10;icon_state="green";} : /turf/open/floor/corsat/green/southwest +/turf/open/floor/corsat{dir=10;icon_state="greenwhite";} : /turf/open/floor/corsat/greenwhite/southwest +/turf/open/floor/corsat{dir=10;icon_state="purple";} : /turf/open/floor/corsat/purple/southwest +/turf/open/floor/corsat{dir=10;icon_state="purplewhite";} : /turf/open/floor/corsat/purplewhite/southwest +/turf/open/floor/corsat{dir=10;icon_state="red";} : /turf/open/floor/corsat/red/southwest +/turf/open/floor/corsat{dir=10;icon_state="tcomms";} : /turf/open/floor/corsat/tcomms/southwest +/turf/open/floor/corsat{dir=10;icon_state="white";} : /turf/open/floor/corsat/white/southwest +/turf/open/floor/corsat{dir=10;icon_state="whitebluefull";} : /turf/open/floor/corsat/whitebluefull/southwest +/turf/open/floor/corsat{dir=10;icon_state="whitetan";} : /turf/open/floor/corsat/whitetan/southwest +/turf/open/floor/corsat{dir=10;icon_state="yellow";} : /turf/open/floor/corsat/yellow/southwest +/turf/open/floor/corsat{dir=1;icon_state="blue";} : /turf/open/floor/corsat/blue/north +/turf/open/floor/corsat{dir=1;icon_state="bluecorner";} : /turf/open/floor/corsat/bluecorner/north +/turf/open/floor/corsat{dir=1;icon_state="bluegrey";} : /turf/open/floor/corsat/bluegrey/north +/turf/open/floor/corsat{dir=1;icon_state="bluegreycorner";} : /turf/open/floor/corsat/bluegreycorner/north +/turf/open/floor/corsat{dir=1;icon_state="brown";} : /turf/open/floor/corsat/brown/north +/turf/open/floor/corsat{dir=1;icon_state="browncorner";} : /turf/open/floor/corsat/browncorner/north +/turf/open/floor/corsat{dir=1;icon_state="darkgreen";} : /turf/open/floor/corsat/darkgreen/north +/turf/open/floor/corsat{dir=1;icon_state="darkgreencorner";} : /turf/open/floor/corsat/darkgreencorner/north +/turf/open/floor/corsat{dir=1;icon_state="green";} : /turf/open/floor/corsat/green/north +/turf/open/floor/corsat{dir=1;icon_state="greencorner";} : /turf/open/floor/corsat/greencorner/north +/turf/open/floor/corsat{dir=1;icon_state="greenwhite";} : /turf/open/floor/corsat/greenwhite/north +/turf/open/floor/corsat{dir=1;icon_state="greenwhitecorner";} : /turf/open/floor/corsat/greenwhitecorner/north +/turf/open/floor/corsat{dir=1;icon_state="purple";} : /turf/open/floor/corsat/purple/north +/turf/open/floor/corsat{dir=1;icon_state="purplecorner";} : /turf/open/floor/corsat/purplecorner/north +/turf/open/floor/corsat{dir=1;icon_state="purplewhite";} : /turf/open/floor/corsat/purplewhite/north +/turf/open/floor/corsat{dir=1;icon_state="purplewhitecorner";} : /turf/open/floor/corsat/purplewhitecorner/north +/turf/open/floor/corsat{dir=1;icon_state="red";} : /turf/open/floor/corsat/red/north +/turf/open/floor/corsat{dir=1;icon_state="redcorner";} : /turf/open/floor/corsat/redcorner/north +/turf/open/floor/corsat{dir=1;icon_state="squareswood";} : /turf/open/floor/corsat/squareswood/north +/turf/open/floor/corsat{dir=1;icon_state="tan";} : /turf/open/floor/corsat/tan/north +/turf/open/floor/corsat{dir=1;icon_state="white";} : /turf/open/floor/corsat/white/north +/turf/open/floor/corsat{dir=1;icon_state="whitecorner";} : /turf/open/floor/corsat/whitecorner/north +/turf/open/floor/corsat{dir=1;icon_state="whitetan";} : /turf/open/floor/corsat/whitetan/north +/turf/open/floor/corsat{dir=1;icon_state="whitetancorner";} : /turf/open/floor/corsat/whitetancorner/north +/turf/open/floor/corsat{dir=1;icon_state="yellow";} : /turf/open/floor/corsat/yellow/north +/turf/open/floor/corsat{dir=1;icon_state="yellowcorner";} : /turf/open/floor/corsat/yellowcorner/north +/turf/open/floor/corsat{dir=4;icon_state="blue";} : /turf/open/floor/corsat/blue/east +/turf/open/floor/corsat{dir=4;icon_state="bluecorner";} : /turf/open/floor/corsat/bluecorner/east +/turf/open/floor/corsat{dir=4;icon_state="bluegrey";} : /turf/open/floor/corsat/bluegrey/east +/turf/open/floor/corsat{dir=4;icon_state="bluegreycorner";} : /turf/open/floor/corsat/bluegreycorner/east +/turf/open/floor/corsat{dir=4;icon_state="brown";} : /turf/open/floor/corsat/brown/east +/turf/open/floor/corsat{dir=4;icon_state="browncorner";} : /turf/open/floor/corsat/browncorner/east +/turf/open/floor/corsat{dir=4;icon_state="darkgreen";} : /turf/open/floor/corsat/darkgreen/east +/turf/open/floor/corsat{dir=4;icon_state="darkgreencorner";} : /turf/open/floor/corsat/darkgreencorner/east +/turf/open/floor/corsat{dir=4;icon_state="green";} : /turf/open/floor/corsat/green/east +/turf/open/floor/corsat{dir=4;icon_state="greencorner";} : /turf/open/floor/corsat/greencorner/east +/turf/open/floor/corsat{dir=4;icon_state="greenwhite";} : /turf/open/floor/corsat/greenwhite/east +/turf/open/floor/corsat{dir=4;icon_state="greenwhitecorner";} : /turf/open/floor/corsat/greenwhitecorner/east +/turf/open/floor/corsat{dir=4;icon_state="purple";} : /turf/open/floor/corsat/purple/east +/turf/open/floor/corsat{dir=4;icon_state="purplecorner";} : /turf/open/floor/corsat/purplecorner/east +/turf/open/floor/corsat{dir=4;icon_state="purplewhite";} : /turf/open/floor/corsat/purplewhite/east +/turf/open/floor/corsat{dir=4;icon_state="purplewhitecorner";} : /turf/open/floor/corsat/purplewhitecorner/east +/turf/open/floor/corsat{dir=4;icon_state="red";} : /turf/open/floor/corsat/red/east +/turf/open/floor/corsat{dir=4;icon_state="redcorner";} : /turf/open/floor/corsat/redcorner/east +/turf/open/floor/corsat{dir=4;icon_state="white";} : /turf/open/floor/corsat/white/east +/turf/open/floor/corsat{dir=4;icon_state="whitecorner";} : /turf/open/floor/corsat/whitecorner/east +/turf/open/floor/corsat{dir=4;icon_state="whitetan";} : /turf/open/floor/corsat/whitetan/east +/turf/open/floor/corsat{dir=4;icon_state="whitetancorner";} : /turf/open/floor/corsat/whitetancorner/east +/turf/open/floor/corsat{dir=4;icon_state="yellow";} : /turf/open/floor/corsat/yellow/east +/turf/open/floor/corsat{dir=4;icon_state="yellowcorner";} : /turf/open/floor/corsat/yellowcorner/east +/turf/open/floor/corsat{dir=5;icon_state="blue";} : /turf/open/floor/corsat/blue/northeast +/turf/open/floor/corsat{dir=5;icon_state="bluegrey";} : /turf/open/floor/corsat/bluegrey/northeast +/turf/open/floor/corsat{dir=5;icon_state="brown";} : /turf/open/floor/corsat/brown/northeast +/turf/open/floor/corsat{dir=5;icon_state="darkgreen";} : /turf/open/floor/corsat/darkgreen/northeast +/turf/open/floor/corsat{dir=5;icon_state="green";} : /turf/open/floor/corsat/green/northeast +/turf/open/floor/corsat{dir=5;icon_state="greenwhite";} : /turf/open/floor/corsat/greenwhite/northeast +/turf/open/floor/corsat{dir=5;icon_state="purple";} : /turf/open/floor/corsat/purple/northeast +/turf/open/floor/corsat{dir=5;icon_state="purplewhite";} : /turf/open/floor/corsat/purplewhite/northeast +/turf/open/floor/corsat{dir=5;icon_state="red";} : /turf/open/floor/corsat/red/northeast +/turf/open/floor/corsat{dir=5;icon_state="white";} : /turf/open/floor/corsat/white/northeast +/turf/open/floor/corsat{dir=5;icon_state="whitetan";} : /turf/open/floor/corsat/whitetan/northeast +/turf/open/floor/corsat{dir=5;icon_state="yellow";} : /turf/open/floor/corsat/yellow/northeast +/turf/open/floor/corsat{dir=6;icon_state="blue";} : /turf/open/floor/corsat/blue/southeast +/turf/open/floor/corsat{dir=6;icon_state="bluegrey";} : /turf/open/floor/corsat/bluegrey/southeast +/turf/open/floor/corsat{dir=6;icon_state="brown";} : /turf/open/floor/corsat/brown/southeast +/turf/open/floor/corsat{dir=6;icon_state="darkgreen";} : /turf/open/floor/corsat/darkgreen/southeast +/turf/open/floor/corsat{dir=6;icon_state="green";} : /turf/open/floor/corsat/green/southeast +/turf/open/floor/corsat{dir=6;icon_state="greenwhite";} : /turf/open/floor/corsat/greenwhite/southeast +/turf/open/floor/corsat{dir=6;icon_state="purple";} : /turf/open/floor/corsat/purple/southeast +/turf/open/floor/corsat{dir=6;icon_state="purplewhite";} : /turf/open/floor/corsat/purplewhite/southeast +/turf/open/floor/corsat{dir=6;icon_state="red";} : /turf/open/floor/corsat/red/southeast +/turf/open/floor/corsat{dir=6;icon_state="white";} : /turf/open/floor/corsat/white/southeast +/turf/open/floor/corsat{dir=6;icon_state="whitetan";} : /turf/open/floor/corsat/whitetan/southeast +/turf/open/floor/corsat{dir=6;icon_state="yellow";} : /turf/open/floor/corsat/yellow/southeast +/turf/open/floor/corsat{dir=8;icon_state="blue";} : /turf/open/floor/corsat/blue/west +/turf/open/floor/corsat{dir=8;icon_state="bluecorner";} : /turf/open/floor/corsat/bluecorner/west +/turf/open/floor/corsat{dir=8;icon_state="bluegrey";} : /turf/open/floor/corsat/bluegrey/west +/turf/open/floor/corsat{dir=8;icon_state="bluegreycorner";} : /turf/open/floor/corsat/bluegreycorner/west +/turf/open/floor/corsat{dir=8;icon_state="brown";} : /turf/open/floor/corsat/brown/west +/turf/open/floor/corsat{dir=8;icon_state="browncorner";} : /turf/open/floor/corsat/browncorner/west +/turf/open/floor/corsat{dir=8;icon_state="darkgreen";} : /turf/open/floor/corsat/darkgreen/west +/turf/open/floor/corsat{dir=8;icon_state="darkgreencorner";} : /turf/open/floor/corsat/darkgreencorner/west +/turf/open/floor/corsat{dir=8;icon_state="green";} : /turf/open/floor/corsat/green/west +/turf/open/floor/corsat{dir=8;icon_state="greencorner";} : /turf/open/floor/corsat/greencorner/west +/turf/open/floor/corsat{dir=8;icon_state="greenwhite";} : /turf/open/floor/corsat/greenwhite/west +/turf/open/floor/corsat{dir=8;icon_state="greenwhitecorner";} : /turf/open/floor/corsat/greenwhitecorner/west +/turf/open/floor/corsat{dir=8;icon_state="purple";} : /turf/open/floor/corsat/purple/west +/turf/open/floor/corsat{dir=8;icon_state="purplecorner";} : /turf/open/floor/corsat/purplecorner/west +/turf/open/floor/corsat{dir=8;icon_state="purplewhite";} : /turf/open/floor/corsat/purplewhite/west +/turf/open/floor/corsat{dir=8;icon_state="purplewhitecorner";} : /turf/open/floor/corsat/purplewhitecorner/west +/turf/open/floor/corsat{dir=8;icon_state="red";} : /turf/open/floor/corsat/red/west +/turf/open/floor/corsat{dir=8;icon_state="redcorner";} : /turf/open/floor/corsat/redcorner/west +/turf/open/floor/corsat{dir=8;icon_state="white";} : /turf/open/floor/corsat/white/west +/turf/open/floor/corsat{dir=8;icon_state="whitecorner";} : /turf/open/floor/corsat/whitecorner/west +/turf/open/floor/corsat{dir=8;icon_state="whitetan";} : /turf/open/floor/corsat/whitetan/west +/turf/open/floor/corsat{dir=8;icon_state="whitetancorner";} : /turf/open/floor/corsat/whitetancorner/west +/turf/open/floor/corsat{dir=8;icon_state="yellow";} : /turf/open/floor/corsat/yellow/west +/turf/open/floor/corsat{dir=8;icon_state="yellowcorner";} : /turf/open/floor/corsat/yellowcorner/west +/turf/open/floor/corsat{dir=9;icon_state="blue";} : /turf/open/floor/corsat/blue/northwest +/turf/open/floor/corsat{dir=9;icon_state="bluegrey";} : /turf/open/floor/corsat/bluegrey/northwest +/turf/open/floor/corsat{dir=9;icon_state="brown";} : /turf/open/floor/corsat/brown/northwest +/turf/open/floor/corsat{dir=9;icon_state="darkgreen";} : /turf/open/floor/corsat/darkgreen/northwest +/turf/open/floor/corsat{dir=9;icon_state="green";} : /turf/open/floor/corsat/green/northwest +/turf/open/floor/corsat{dir=9;icon_state="greenwhite";} : /turf/open/floor/corsat/greenwhite/northwest +/turf/open/floor/corsat{dir=9;icon_state="purple";} : /turf/open/floor/corsat/purple/northwest +/turf/open/floor/corsat{dir=9;icon_state="purplewhite";} : /turf/open/floor/corsat/purplewhite/northwest +/turf/open/floor/corsat{dir=9;icon_state="red";} : /turf/open/floor/corsat/red/northwest +/turf/open/floor/corsat{dir=9;icon_state="white";} : /turf/open/floor/corsat/white/northwest +/turf/open/floor/corsat{dir=9;icon_state="whitetan";} : /turf/open/floor/corsat/whitetan/northwest +/turf/open/floor/corsat{dir=9;icon_state="yellow";} : /turf/open/floor/corsat/yellow/northwest +/turf/open/floor/corsat{icon_state="arrow_east";} : /turf/open/floor/corsat/arrow_east +/turf/open/floor/corsat{icon_state="arrow_north";} : /turf/open/floor/corsat/arrow_north +/turf/open/floor/corsat{icon_state="arrow_south";} : /turf/open/floor/corsat/arrow_south +/turf/open/floor/corsat{icon_state="arrow_west";} : /turf/open/floor/corsat/arrow_west +/turf/open/floor/corsat{icon_state="blue";} : /turf/open/floor/corsat/blue +/turf/open/floor/corsat{icon_state="bluecorner";} : /turf/open/floor/corsat/bluecorner +/turf/open/floor/corsat{icon_state="bluegrey";} : /turf/open/floor/corsat/bluegrey +/turf/open/floor/corsat{icon_state="bluegreycorner";} : /turf/open/floor/corsat/bluegreycorner +/turf/open/floor/corsat{icon_state="brown";} : /turf/open/floor/corsat/brown +/turf/open/floor/corsat{icon_state="browncorner";} : /turf/open/floor/corsat/browncorner +/turf/open/floor/corsat{icon_state="cargo";} : /turf/open/floor/corsat/cargo +/turf/open/floor/corsat{icon_state="damaged1";} : /turf/open/floor/corsat/damaged1 +/turf/open/floor/corsat{icon_state="darkgreen";} : /turf/open/floor/corsat/darkgreen +/turf/open/floor/corsat{icon_state="darkgreencorner";} : /turf/open/floor/corsat/darkgreencorner +/turf/open/floor/corsat{icon_state="gamma";} : /turf/open/floor/corsat/gamma +/turf/open/floor/corsat{icon_state="green";} : /turf/open/floor/corsat/green +/turf/open/floor/corsat{icon_state="greencorner";} : /turf/open/floor/corsat/greencorner +/turf/open/floor/corsat{icon_state="greenwhite";} : /turf/open/floor/corsat/greenwhite +/turf/open/floor/corsat{icon_state="greenwhitecorner";} : /turf/open/floor/corsat/greenwhitecorner +/turf/open/floor/corsat{icon_state="lightplate";} : /turf/open/floor/corsat/lightplate +/turf/open/floor/corsat{icon_state="marked";} : /turf/open/floor/corsat/marked +/turf/open/floor/corsat{icon_state="officesquares";} : /turf/open/floor/corsat/officesquares +/turf/open/floor/corsat{icon_state="omega";} : /turf/open/floor/corsat/omega +/turf/open/floor/corsat{icon_state="plate";} : /turf/open/floor/corsat/plate +/turf/open/floor/corsat{icon_state="purple";} : /turf/open/floor/corsat/purple +/turf/open/floor/corsat{icon_state="purplecorner";} : /turf/open/floor/corsat/purplecorner +/turf/open/floor/corsat{icon_state="purplewhite";} : /turf/open/floor/corsat/purplewhite +/turf/open/floor/corsat{icon_state="purplewhitecorner";} : /turf/open/floor/corsat/purplewhitecorner +/turf/open/floor/corsat{icon_state="red";dir=10;} : /turf/open/floor/corsat/red/southwest +/turf/open/floor/corsat{icon_state="red";dir=1;} : /turf/open/floor/corsat/red/north +/turf/open/floor/corsat{icon_state="red";dir=4;} : /turf/open/floor/corsat/red/east +/turf/open/floor/corsat{icon_state="red";dir=5;} : /turf/open/floor/corsat/red/northeast +/turf/open/floor/corsat{icon_state="red";dir=6;} : /turf/open/floor/corsat/red/southeast +/turf/open/floor/corsat{icon_state="red";dir=8;} : /turf/open/floor/corsat/red/west +/turf/open/floor/corsat{icon_state="red";dir=9;} : /turf/open/floor/corsat/red/northwest +/turf/open/floor/corsat{icon_state="red";} : /turf/open/floor/corsat/red +/turf/open/floor/corsat{icon_state="redcorner";dir=1;} : /turf/open/floor/corsat/redcorner/north +/turf/open/floor/corsat{icon_state="redcorner";dir=4;} : /turf/open/floor/corsat/redcorner/east +/turf/open/floor/corsat{icon_state="redcorner";} : /turf/open/floor/corsat/redcorner +/turf/open/floor/corsat{icon_state="retrosquares";} : /turf/open/floor/corsat/retrosquares +/turf/open/floor/corsat{icon_state="retrosquareslight";} : /turf/open/floor/corsat/retrosquareslight +/turf/open/floor/corsat{icon_state="sigma";} : /turf/open/floor/corsat/sigma +/turf/open/floor/corsat{icon_state="spiralplate";} : /turf/open/floor/corsat/spiralplate +/turf/open/floor/corsat{icon_state="spiralwoodalt";} : /turf/open/floor/corsat/spiralwoodalt +/turf/open/floor/corsat{icon_state="squares";} : /turf/open/floor/corsat/squares +/turf/open/floor/corsat{icon_state="sterileplate";} : /turf/open/floor/corsat/sterileplate +/turf/open/floor/corsat{icon_state="theta";} : /turf/open/floor/corsat/theta +/turf/open/floor/corsat{icon_state="white";} : /turf/open/floor/corsat/white +/turf/open/floor/corsat{icon_state="whitecorner";} : /turf/open/floor/corsat/whitecorner +/turf/open/floor/corsat{icon_state="whitetan";} : /turf/open/floor/corsat/whitetan +/turf/open/floor/corsat{icon_state="whitetancorner";} : /turf/open/floor/corsat/whitetancorner +/turf/open/floor/corsat{icon_state="yellow";dir=1;} : /turf/open/floor/corsat/yellow/north +/turf/open/floor/corsat{icon_state="yellow";dir=4;} : /turf/open/floor/corsat/yellow/east +/turf/open/floor/corsat{icon_state="yellow";} : /turf/open/floor/corsat/yellow +/turf/open/floor/corsat{icon_state="yellowcorner";dir=4;} : /turf/open/floor/corsat/yellowcorner/east +/turf/open/floor/corsat{icon_state="yellowcorner";} : /turf/open/floor/corsat/yellowcorner +/turf/open/floor/engine{color="#AAAAAA";} : /turf/open/floor/engine/simulator_center +/turf/open/floor/filtrationside{dir=10;} : /turf/open/floor/filtrationside/southwest +/turf/open/floor/filtrationside{dir=1;} : /turf/open/floor/filtrationside/north +/turf/open/floor/filtrationside{dir=4;} : /turf/open/floor/filtrationside/east +/turf/open/floor/filtrationside{dir=5;} : /turf/open/floor/filtrationside/northeast +/turf/open/floor/filtrationside{dir=6;} : /turf/open/floor/filtrationside/southeast +/turf/open/floor/filtrationside{dir=8;} : /turf/open/floor/filtrationside/west +/turf/open/floor/filtrationside{dir=9;} : /turf/open/floor/filtrationside/northwest +/turf/open/floor/holofloor{dir=2;icon_state="cult";} : /turf/open/floor/holofloor/cult/south +/turf/open/floor/holofloor{icon_state="cult";} : /turf/open/floor/holofloor/cult +/turf/open/floor/icefloor{icon='icons/turf/shuttle.dmi';icon_state="floor6";} : /turf/open/floor/icefloor/shuttle_floor6 +/turf/open/floor/icefloor{icon='icons/turf/shuttle.dmi';icon_state="floor7";} : /turf/open/floor/icefloor/shuttle_floor7 +/turf/open/floor/icefloor{icon='icons/turf/shuttle.dmi';icon_state="vfloor";} : /turf/open/floor/icefloor/shuttle_vfloor +/turf/open/floor/icefloor{icon_state="ramptop";} : /turf/open/floor/icefloor/ramptop +/turf/open/floor/icefloor{icon_state="rockvault";} : /turf/open/floor/icefloor/rockvault +/turf/open/floor/kutjevo/colors/blue/edge{dir=4;} : /turf/open/floor/kutjevo/colors/blue/edge/east +/turf/open/floor/kutjevo/colors/blue/edge{dir=8;} : /turf/open/floor/kutjevo/colors/blue/edge/west +/turf/open/floor/kutjevo/colors/cyan/edge{dir=1;} : /turf/open/floor/kutjevo/colors/cyan/edge/north +/turf/open/floor/kutjevo/colors/cyan/edge{dir=4;} : /turf/open/floor/kutjevo/colors/cyan/edge/east +/turf/open/floor/kutjevo/colors/cyan/edge{dir=8;} : /turf/open/floor/kutjevo/colors/cyan/edge/west +/turf/open/floor/kutjevo/colors/cyan/inner_corner{dir=1;} : /turf/open/floor/kutjevo/colors/cyan/inner_corner/north +/turf/open/floor/kutjevo/colors/cyan/inner_corner{dir=4;} : /turf/open/floor/kutjevo/colors/cyan/inner_corner/east +/turf/open/floor/kutjevo/colors/cyan/inner_corner{dir=8;} : /turf/open/floor/kutjevo/colors/cyan/inner_corner/west +/turf/open/floor/kutjevo/colors/orange/edge{dir=10;} : /turf/open/floor/kutjevo/colors/orange/edge/southwest +/turf/open/floor/kutjevo/colors/orange/edge{dir=1;} : /turf/open/floor/kutjevo/colors/orange/edge/north +/turf/open/floor/kutjevo/colors/orange/edge{dir=4;} : /turf/open/floor/kutjevo/colors/orange/edge/east +/turf/open/floor/kutjevo/colors/orange/edge{dir=5;} : /turf/open/floor/kutjevo/colors/orange/edge/northeast +/turf/open/floor/kutjevo/colors/orange/edge{dir=6;} : /turf/open/floor/kutjevo/colors/orange/edge/southeast +/turf/open/floor/kutjevo/colors/orange/edge{dir=8;} : /turf/open/floor/kutjevo/colors/orange/edge/west +/turf/open/floor/kutjevo/colors/orange/edge{dir=9;} : /turf/open/floor/kutjevo/colors/orange/edge/northwest +/turf/open/floor/kutjevo/colors/orange/inner_corner{dir=1;} : /turf/open/floor/kutjevo/colors/orange/inner_corner/north +/turf/open/floor/kutjevo/colors/orange/inner_corner{dir=4;} : /turf/open/floor/kutjevo/colors/orange/inner_corner/east +/turf/open/floor/kutjevo/colors/orange/inner_corner{dir=8;} : /turf/open/floor/kutjevo/colors/orange/inner_corner/west +/turf/open/floor/kutjevo/colors/purple/edge{dir=1;} : /turf/open/floor/kutjevo/colors/purple/edge/north +/turf/open/floor/kutjevo/colors/purple/edge{dir=4;} : /turf/open/floor/kutjevo/colors/purple/edge/east +/turf/open/floor/kutjevo/colors/purple/edge{dir=5;} : /turf/open/floor/kutjevo/colors/purple/edge/northeast +/turf/open/floor/kutjevo/colors/purple/edge{dir=8;} : /turf/open/floor/kutjevo/colors/purple/edge/west +/turf/open/floor/kutjevo/colors/purple/inner_corner{dir=1;} : /turf/open/floor/kutjevo/colors/purple/inner_corner/north +/turf/open/floor/kutjevo/colors/purple/inner_corner{dir=4;} : /turf/open/floor/kutjevo/colors/purple/inner_corner/east +/turf/open/floor/kutjevo/colors/purple/inner_corner{dir=8;} : /turf/open/floor/kutjevo/colors/purple/inner_corner/west +/turf/open/floor/kutjevo/multi_tiles{dir=10;} : /turf/open/floor/kutjevo/multi_tiles/southwest +/turf/open/floor/kutjevo/multi_tiles{dir=1;} : /turf/open/floor/kutjevo/multi_tiles/north +/turf/open/floor/kutjevo/multi_tiles{dir=4;} : /turf/open/floor/kutjevo/multi_tiles/east +/turf/open/floor/kutjevo/multi_tiles{dir=6;} : /turf/open/floor/kutjevo/multi_tiles/southeast +/turf/open/floor/kutjevo/multi_tiles{dir=8;} : /turf/open/floor/kutjevo/multi_tiles/west +/turf/open/floor/kutjevo/tan/alt_edge{dir=10;} : /turf/open/floor/kutjevo/tan/alt_edge/southwest +/turf/open/floor/kutjevo/tan/alt_edge{dir=1;} : /turf/open/floor/kutjevo/tan/alt_edge/north +/turf/open/floor/kutjevo/tan/alt_edge{dir=4;} : /turf/open/floor/kutjevo/tan/alt_edge/east +/turf/open/floor/kutjevo/tan/alt_edge{dir=5;} : /turf/open/floor/kutjevo/tan/alt_edge/northeast +/turf/open/floor/kutjevo/tan/alt_edge{dir=6;} : /turf/open/floor/kutjevo/tan/alt_edge/southeast +/turf/open/floor/kutjevo/tan/alt_edge{dir=8;} : /turf/open/floor/kutjevo/tan/alt_edge/west +/turf/open/floor/kutjevo/tan/alt_edge{dir=9;} : /turf/open/floor/kutjevo/tan/alt_edge/northwest +/turf/open/floor/kutjevo/tan/alt_inner_edge{dir=1;} : /turf/open/floor/kutjevo/tan/alt_inner_edge/north +/turf/open/floor/kutjevo/tan/alt_inner_edge{dir=4;} : /turf/open/floor/kutjevo/tan/alt_inner_edge/east +/turf/open/floor/kutjevo/tan/alt_inner_edge{dir=8;} : /turf/open/floor/kutjevo/tan/alt_inner_edge/west +/turf/open/floor/kutjevo/tan/grey_edge{dir=10;} : /turf/open/floor/kutjevo/tan/grey_edge/southwest +/turf/open/floor/kutjevo/tan/grey_edge{dir=1;} : /turf/open/floor/kutjevo/tan/grey_edge/north +/turf/open/floor/kutjevo/tan/grey_edge{dir=4;} : /turf/open/floor/kutjevo/tan/grey_edge/east +/turf/open/floor/kutjevo/tan/grey_edge{dir=5;} : /turf/open/floor/kutjevo/tan/grey_edge/northeast +/turf/open/floor/kutjevo/tan/grey_edge{dir=6;} : /turf/open/floor/kutjevo/tan/grey_edge/southeast +/turf/open/floor/kutjevo/tan/grey_edge{dir=8;} : /turf/open/floor/kutjevo/tan/grey_edge/west +/turf/open/floor/kutjevo/tan/grey_edge{dir=9;} : /turf/open/floor/kutjevo/tan/grey_edge/northwest +/turf/open/floor/kutjevo/tan/grey_inner_edge{dir=1;} : /turf/open/floor/kutjevo/tan/grey_inner_edge/north +/turf/open/floor/kutjevo/tan/grey_inner_edge{dir=4;} : /turf/open/floor/kutjevo/tan/grey_inner_edge/east +/turf/open/floor/kutjevo/tan/grey_inner_edge{dir=8;} : /turf/open/floor/kutjevo/tan/grey_inner_edge/west +/turf/open/floor/kutjevo/tan/multi_tiles{dir=1;} : /turf/open/floor/kutjevo/tan/multi_tiles/north +/turf/open/floor/kutjevo/tan/multi_tiles{dir=4;} : /turf/open/floor/kutjevo/tan/multi_tiles/east +/turf/open/floor/kutjevo/tan/multi_tiles{dir=6;} : /turf/open/floor/kutjevo/tan/multi_tiles/southeast +/turf/open/floor/kutjevo/tan/multi_tiles{dir=8;} : /turf/open/floor/kutjevo/tan/multi_tiles/west +/turf/open/floor/mech_bay_recharge_floor{name="Shuttle Landing Lights";} : /turf/open/floor/mech_bay_recharge_floor/shuttle_landing_lights +/turf/open/floor/plating/almayer{allow_construction=0;} : /turf/open/floor/plating/almayer/no_build +/turf/open/floor/plating/icefloor{dir=10;icon_state="warnplate";} : /turf/open/floor/plating/icefloor/warnplate/southwest +/turf/open/floor/plating/icefloor{dir=1;icon_state="warnplate";} : /turf/open/floor/plating/icefloor/warnplate/north +/turf/open/floor/plating/icefloor{dir=4;icon_state="warnplate";} : /turf/open/floor/plating/icefloor/warnplate/east +/turf/open/floor/plating/icefloor{dir=5;icon_state="warnplate";} : /turf/open/floor/plating/icefloor/warnplate/northeast +/turf/open/floor/plating/icefloor{dir=6;icon_state="warnplate";} : /turf/open/floor/plating/icefloor/warnplate/southeast +/turf/open/floor/plating/icefloor{dir=8;icon_state="warnplate";} : /turf/open/floor/plating/icefloor/warnplate/west +/turf/open/floor/plating/icefloor{dir=9;icon_state="warnplate";} : /turf/open/floor/plating/icefloor/warnplate/northwest +/turf/open/floor/plating/icefloor{icon_state="asteroidplating";} : /turf/open/floor/plating/icefloor/asteroidplating +/turf/open/floor/plating/icefloor{icon_state="warnplate";} : /turf/open/floor/plating/icefloor/warnplate +/turf/open/floor/plating/kutjevo{icon_state="panelscorched";} : /turf/open/floor/plating/kutjevo/panelscorched +/turf/open/floor/plating/kutjevo{icon_state="platingdmg1";} : /turf/open/floor/plating/kutjevo/platingdmg1 +/turf/open/floor/plating/kutjevo{icon_state="platingdmg3";} : /turf/open/floor/plating/kutjevo/platingdmg3 +/turf/open/floor/plating{burnt=1;dir=8;icon_state="platingdmg3";} : /turf/open/floor/plating/burnt_platingdmg3/west +/turf/open/floor/plating{dir=10;icon_state="asteroidwarning";} : /turf/open/floor/plating/asteroidwarning/southwest +/turf/open/floor/plating{dir=10;icon_state="warnplate";} : /turf/open/floor/plating/warnplate/southwest +/turf/open/floor/plating{dir=1;icon_state="asteroidfloor";} : /turf/open/floor/plating/asteroidfloor/north +/turf/open/floor/plating{dir=1;icon_state="asteroidwarning";} : /turf/open/floor/plating/asteroidwarning/north +/turf/open/floor/plating{dir=1;icon_state="warnplate";} : /turf/open/floor/plating/warnplate/north +/turf/open/floor/plating{dir=1;icon_state="warnplatecorner";} : /turf/open/floor/plating/warnplatecorner/north +/turf/open/floor/plating{dir=4;icon_state="asteroidwarning";} : /turf/open/floor/plating/asteroidwarning/east +/turf/open/floor/plating{dir=4;icon_state="warnplate";} : /turf/open/floor/plating/warnplate/east +/turf/open/floor/plating{dir=5;icon_state="asteroidwarning";} : /turf/open/floor/plating/asteroidwarning/northeast +/turf/open/floor/plating{dir=5;icon_state="warnplate";} : /turf/open/floor/plating/warnplate/northeast +/turf/open/floor/plating{dir=6;icon_state="asteroidwarning";} : /turf/open/floor/plating/asteroidwarning/southeast +/turf/open/floor/plating{dir=6;icon_state="warnplate";} : /turf/open/floor/plating/warnplate/southeast +/turf/open/floor/plating{dir=8;icon_state="asteroidwarning";} : /turf/open/floor/plating/asteroidwarning/west +/turf/open/floor/plating{dir=8;icon_state="platingdmg2";} : /turf/open/floor/plating/platingdmg2/west +/turf/open/floor/plating{dir=8;icon_state="platingdmg3";} : /turf/open/floor/plating/platingdmg3/west +/turf/open/floor/plating{dir=8;icon_state="warnplate";} : /turf/open/floor/plating/warnplate/west +/turf/open/floor/plating{dir=9;icon_state="asteroidwarning";} : /turf/open/floor/plating/asteroidwarning/northwest +/turf/open/floor/plating{dir=9;icon_state="warnplate";} : /turf/open/floor/plating/warnplate/northwest +/turf/open/floor/plating{icon_state="asteroidwarning";} : /turf/open/floor/plating/asteroidwarning +/turf/open/floor/plating{icon_state="panelscorched";} : /turf/open/floor/plating/panelscorched +/turf/open/floor/plating{icon_state="platebot";} : /turf/open/floor/plating/platebot +/turf/open/floor/plating{icon_state="platebotc";} : /turf/open/floor/plating/platebotc +/turf/open/floor/plating{icon_state="platingdmg1";} : /turf/open/floor/plating/platingdmg1 +/turf/open/floor/plating{icon_state="platingdmg2";} : /turf/open/floor/plating/platingdmg2 +/turf/open/floor/plating{icon_state="platingdmg3";} : /turf/open/floor/plating/platingdmg3 +/turf/open/floor/plating{icon_state="warnplate";} : /turf/open/floor/plating/warnplate +/turf/open/floor/plating{icon_state="wood";} : /turf/open/floor/plating/wood +/turf/open/floor/plating{icon_state="wood-broken2";} : /turf/open/floor/plating/wood_broken2 +/turf/open/floor/plating{icon_state="wood-broken3";} : /turf/open/floor/plating/wood_broken3 +/turf/open/floor/plating{icon_state="wood-broken4";} : /turf/open/floor/plating/wood_broken4 +/turf/open/floor/plating{icon_state="wood-broken5";} : /turf/open/floor/plating/wood_broken5 +/turf/open/floor/plating{icon_state="wood-broken6";} : /turf/open/floor/plating/wood_broken6 +/turf/open/floor/prison/chapel_carpet{dir=1;icon_state="doubleside";} : /turf/open/floor/prison/chapel_carpet/doubleside/north +/turf/open/floor/prison/chapel_carpet{icon_state="doubleside";} : /turf/open/floor/prison/chapel_carpet/doubleside +/turf/open/floor/prison{dir=10;icon_state="blue";} : /turf/open/floor/prison/blue/southwest +/turf/open/floor/prison{dir=10;icon_state="bright_clean";} : /turf/open/floor/prison/bright_clean/southwest +/turf/open/floor/prison{dir=10;icon_state="bright_clean2";} : /turf/open/floor/prison/bright_clean2/southwest +/turf/open/floor/prison{dir=10;icon_state="bright_clean_marked";} : /turf/open/floor/prison/bright_clean_marked/southwest +/turf/open/floor/prison{dir=10;icon_state="damaged1";} : /turf/open/floor/prison/damaged1/southwest +/turf/open/floor/prison{dir=10;icon_state="damaged2";} : /turf/open/floor/prison/damaged2/southwest +/turf/open/floor/prison{dir=10;icon_state="darkbrown2";} : /turf/open/floor/prison/darkbrown2/southwest +/turf/open/floor/prison{dir=10;icon_state="darkbrown3";} : /turf/open/floor/prison/darkbrown3/southwest +/turf/open/floor/prison{dir=10;icon_state="darkbrowncorners2";} : /turf/open/floor/prison/darkbrowncorners2/southwest +/turf/open/floor/prison{dir=10;icon_state="darkpurple2";} : /turf/open/floor/prison/darkpurple2/southwest +/turf/open/floor/prison{dir=10;icon_state="darkred2";} : /turf/open/floor/prison/darkred2/southwest +/turf/open/floor/prison{dir=10;icon_state="darkredcorners2";} : /turf/open/floor/prison/darkredcorners2/southwest +/turf/open/floor/prison{dir=10;icon_state="darkredfull2";} : /turf/open/floor/prison/darkredfull2/southwest +/turf/open/floor/prison{dir=10;icon_state="darkyellow2";} : /turf/open/floor/prison/darkyellow2/southwest +/turf/open/floor/prison{dir=10;icon_state="darkyellowcorners2";} : /turf/open/floor/prison/darkyellowcorners2/southwest +/turf/open/floor/prison{dir=10;icon_state="floor_marked";} : /turf/open/floor/prison/floor_marked/southwest +/turf/open/floor/prison{dir=10;icon_state="floor_plate";} : /turf/open/floor/prison/floor_plate/southwest +/turf/open/floor/prison{dir=10;icon_state="green";} : /turf/open/floor/prison/green/southwest +/turf/open/floor/prison{dir=10;icon_state="greenblue";} : /turf/open/floor/prison/greenblue/southwest +/turf/open/floor/prison{dir=10;icon_state="kitchen";} : /turf/open/floor/prison/kitchen/southwest +/turf/open/floor/prison{dir=10;icon_state="red";} : /turf/open/floor/prison/red/southwest +/turf/open/floor/prison{dir=10;icon_state="sterile_white";} : /turf/open/floor/prison/sterile_white/southwest +/turf/open/floor/prison{dir=10;icon_state="whitegreen";} : /turf/open/floor/prison/whitegreen/southwest +/turf/open/floor/prison{dir=10;icon_state="whitegreenfull";} : /turf/open/floor/prison/whitegreenfull/southwest +/turf/open/floor/prison{dir=10;icon_state="whitepurple";} : /turf/open/floor/prison/whitepurple/southwest +/turf/open/floor/prison{dir=10;icon_state="whitered";} : /turf/open/floor/prison/whitered/southwest +/turf/open/floor/prison{dir=10;icon_state="yellow";} : /turf/open/floor/prison/yellow/southwest +/turf/open/floor/prison{dir=10;icon_state="yellowfull";} : /turf/open/floor/prison/yellowfull/southwest +/turf/open/floor/prison{dir=10;} : /turf/open/floor/prison/southwest +/turf/open/floor/prison{dir=1;icon_state="blue";} : /turf/open/floor/prison/blue/north +/turf/open/floor/prison{dir=1;icon_state="blue_plate";} : /turf/open/floor/prison/blue_plate/north +/turf/open/floor/prison{dir=1;icon_state="bluecorner";} : /turf/open/floor/prison/bluecorner/north +/turf/open/floor/prison{dir=1;icon_state="cell_stripe";} : /turf/open/floor/prison/cell_stripe/north +/turf/open/floor/prison{dir=1;icon_state="darkbrown2";} : /turf/open/floor/prison/darkbrown2/north +/turf/open/floor/prison{dir=1;icon_state="darkbrown3";} : /turf/open/floor/prison/darkbrown3/north +/turf/open/floor/prison{dir=1;icon_state="darkbrowncorners2";} : /turf/open/floor/prison/darkbrowncorners2/north +/turf/open/floor/prison{dir=1;icon_state="darkbrowncorners3";} : /turf/open/floor/prison/darkbrowncorners3/north +/turf/open/floor/prison{dir=1;icon_state="darkpurple2";} : /turf/open/floor/prison/darkpurple2/north +/turf/open/floor/prison{dir=1;icon_state="darkpurplecorners2";} : /turf/open/floor/prison/darkpurplecorners2/north +/turf/open/floor/prison{dir=1;icon_state="darkred2";} : /turf/open/floor/prison/darkred2/north +/turf/open/floor/prison{dir=1;icon_state="darkredcorners2";} : /turf/open/floor/prison/darkredcorners2/north +/turf/open/floor/prison{dir=1;icon_state="darkyellow2";} : /turf/open/floor/prison/darkyellow2/north +/turf/open/floor/prison{dir=1;icon_state="darkyellowcorners2";} : /turf/open/floor/prison/darkyellowcorners2/north +/turf/open/floor/prison{dir=1;icon_state="green";} : /turf/open/floor/prison/green/north +/turf/open/floor/prison{dir=1;icon_state="greenblue";} : /turf/open/floor/prison/greenblue/north +/turf/open/floor/prison{dir=1;icon_state="greenbluecorner";} : /turf/open/floor/prison/greenbluecorner/north +/turf/open/floor/prison{dir=1;icon_state="greencorner";} : /turf/open/floor/prison/greencorner/north +/turf/open/floor/prison{dir=1;icon_state="rampbottom";} : /turf/open/floor/prison/rampbottom/north +/turf/open/floor/prison{dir=1;icon_state="red";} : /turf/open/floor/prison/red/north +/turf/open/floor/prison{dir=1;icon_state="redcorner";} : /turf/open/floor/prison/redcorner/north +/turf/open/floor/prison{dir=1;icon_state="whitegreen";} : /turf/open/floor/prison/whitegreen/north +/turf/open/floor/prison{dir=1;icon_state="whitegreencorner";} : /turf/open/floor/prison/whitegreencorner/north +/turf/open/floor/prison{dir=1;icon_state="whitepurple";} : /turf/open/floor/prison/whitepurple/north +/turf/open/floor/prison{dir=1;icon_state="whitepurplecorner";} : /turf/open/floor/prison/whitepurplecorner/north +/turf/open/floor/prison{dir=1;icon_state="whitered";} : /turf/open/floor/prison/whitered/north +/turf/open/floor/prison{dir=1;icon_state="yellow";} : /turf/open/floor/prison/yellow/north +/turf/open/floor/prison{dir=1;icon_state="yellowcorner";} : /turf/open/floor/prison/yellowcorner/north +/turf/open/floor/prison{dir=2;icon_state="sterile_white";} : /turf/open/floor/prison/sterile_white/south +/turf/open/floor/prison{dir=4;icon_state="blue";} : /turf/open/floor/prison/blue/east +/turf/open/floor/prison{dir=4;icon_state="blue_plate";} : /turf/open/floor/prison/blue_plate/east +/turf/open/floor/prison{dir=4;icon_state="bluecorner";} : /turf/open/floor/prison/bluecorner/east +/turf/open/floor/prison{dir=4;icon_state="cell_stripe";} : /turf/open/floor/prison/cell_stripe/east +/turf/open/floor/prison{dir=4;icon_state="darkbrown2";} : /turf/open/floor/prison/darkbrown2/east +/turf/open/floor/prison{dir=4;icon_state="darkbrown3";} : /turf/open/floor/prison/darkbrown3/east +/turf/open/floor/prison{dir=4;icon_state="darkbrowncorners2";} : /turf/open/floor/prison/darkbrowncorners2/east +/turf/open/floor/prison{dir=4;icon_state="darkbrowncorners3";} : /turf/open/floor/prison/darkbrowncorners3/east +/turf/open/floor/prison{dir=4;icon_state="darkpurple2";} : /turf/open/floor/prison/darkpurple2/east +/turf/open/floor/prison{dir=4;icon_state="darkpurplecorners2";} : /turf/open/floor/prison/darkpurplecorners2/east +/turf/open/floor/prison{dir=4;icon_state="darkred2";} : /turf/open/floor/prison/darkred2/east +/turf/open/floor/prison{dir=4;icon_state="darkredcorners2";} : /turf/open/floor/prison/darkredcorners2/east +/turf/open/floor/prison{dir=4;icon_state="darkyellow2";} : /turf/open/floor/prison/darkyellow2/east +/turf/open/floor/prison{dir=4;icon_state="darkyellowcorners2";} : /turf/open/floor/prison/darkyellowcorners2/east +/turf/open/floor/prison{dir=4;icon_state="darkyellowfull2";} : /turf/open/floor/prison/darkyellowfull2/east +/turf/open/floor/prison{dir=4;icon_state="green";} : /turf/open/floor/prison/green/east +/turf/open/floor/prison{dir=4;icon_state="greenblue";} : /turf/open/floor/prison/greenblue/east +/turf/open/floor/prison{dir=4;icon_state="greenbluecorner";} : /turf/open/floor/prison/greenbluecorner/east +/turf/open/floor/prison{dir=4;icon_state="greencorner";} : /turf/open/floor/prison/greencorner/east +/turf/open/floor/prison{dir=4;icon_state="greenfull";} : /turf/open/floor/prison/greenfull/east +/turf/open/floor/prison{dir=4;icon_state="rampbottom";} : /turf/open/floor/prison/rampbottom/east +/turf/open/floor/prison{dir=4;icon_state="red";} : /turf/open/floor/prison/red/east +/turf/open/floor/prison{dir=4;icon_state="redcorner";} : /turf/open/floor/prison/redcorner/east +/turf/open/floor/prison{dir=4;icon_state="whitegreen";} : /turf/open/floor/prison/whitegreen/east +/turf/open/floor/prison{dir=4;icon_state="whitegreencorner";} : /turf/open/floor/prison/whitegreencorner/east +/turf/open/floor/prison{dir=4;icon_state="whitepurple";} : /turf/open/floor/prison/whitepurple/east +/turf/open/floor/prison{dir=4;icon_state="whitepurplecorner";} : /turf/open/floor/prison/whitepurplecorner/east +/turf/open/floor/prison{dir=4;icon_state="whitered";} : /turf/open/floor/prison/whitered/east +/turf/open/floor/prison{dir=4;icon_state="whiteredcorner";} : /turf/open/floor/prison/whiteredcorner/east +/turf/open/floor/prison{dir=4;icon_state="yellow";} : /turf/open/floor/prison/yellow/east +/turf/open/floor/prison{dir=4;icon_state="yellowcorner";} : /turf/open/floor/prison/yellowcorner/east +/turf/open/floor/prison{dir=5;icon_state="blue";} : /turf/open/floor/prison/blue/northeast +/turf/open/floor/prison{dir=5;icon_state="darkbrown2";} : /turf/open/floor/prison/darkbrown2/northeast +/turf/open/floor/prison{dir=5;icon_state="darkpurple2";} : /turf/open/floor/prison/darkpurple2/northeast +/turf/open/floor/prison{dir=5;icon_state="darkred2";} : /turf/open/floor/prison/darkred2/northeast +/turf/open/floor/prison{dir=5;icon_state="darkyellow2";} : /turf/open/floor/prison/darkyellow2/northeast +/turf/open/floor/prison{dir=5;icon_state="green";} : /turf/open/floor/prison/green/northeast +/turf/open/floor/prison{dir=5;icon_state="greenblue";} : /turf/open/floor/prison/greenblue/northeast +/turf/open/floor/prison{dir=5;icon_state="red";} : /turf/open/floor/prison/red/northeast +/turf/open/floor/prison{dir=5;icon_state="whitegreen";} : /turf/open/floor/prison/whitegreen/northeast +/turf/open/floor/prison{dir=5;icon_state="whitepurple";} : /turf/open/floor/prison/whitepurple/northeast +/turf/open/floor/prison{dir=5;icon_state="whitered";} : /turf/open/floor/prison/whitered/northeast +/turf/open/floor/prison{dir=5;icon_state="yellow";} : /turf/open/floor/prison/yellow/northeast +/turf/open/floor/prison{dir=6;icon_state="blue";} : /turf/open/floor/prison/blue/southeast +/turf/open/floor/prison{dir=6;icon_state="darkbrown2";} : /turf/open/floor/prison/darkbrown2/southeast +/turf/open/floor/prison{dir=6;icon_state="darkpurple2";} : /turf/open/floor/prison/darkpurple2/southeast +/turf/open/floor/prison{dir=6;icon_state="darkred2";} : /turf/open/floor/prison/darkred2/southeast +/turf/open/floor/prison{dir=6;icon_state="darkyellow2";} : /turf/open/floor/prison/darkyellow2/southeast +/turf/open/floor/prison{dir=6;icon_state="green";} : /turf/open/floor/prison/green/southeast +/turf/open/floor/prison{dir=6;icon_state="greenblue";} : /turf/open/floor/prison/greenblue/southeast +/turf/open/floor/prison{dir=6;icon_state="red";} : /turf/open/floor/prison/red/southeast +/turf/open/floor/prison{dir=6;icon_state="whitegreen";} : /turf/open/floor/prison/whitegreen/southeast +/turf/open/floor/prison{dir=6;icon_state="whitepurple";} : /turf/open/floor/prison/whitepurple/southeast +/turf/open/floor/prison{dir=6;icon_state="whitered";} : /turf/open/floor/prison/whitered/southeast +/turf/open/floor/prison{dir=6;icon_state="yellow";} : /turf/open/floor/prison/yellow/southeast +/turf/open/floor/prison{dir=8;icon_state="blue";} : /turf/open/floor/prison/blue/west +/turf/open/floor/prison{dir=8;icon_state="blue_plate";} : /turf/open/floor/prison/blue_plate/west +/turf/open/floor/prison{dir=8;icon_state="bluecorner";} : /turf/open/floor/prison/bluecorner/west +/turf/open/floor/prison{dir=8;icon_state="bluefull";} : /turf/open/floor/prison/bluefull/west +/turf/open/floor/prison{dir=8;icon_state="cell_stripe";} : /turf/open/floor/prison/cell_stripe/west +/turf/open/floor/prison{dir=8;icon_state="darkbrown2";} : /turf/open/floor/prison/darkbrown2/west +/turf/open/floor/prison{dir=8;icon_state="darkbrown3";} : /turf/open/floor/prison/darkbrown3/west +/turf/open/floor/prison{dir=8;icon_state="darkbrowncorners2";} : /turf/open/floor/prison/darkbrowncorners2/west +/turf/open/floor/prison{dir=8;icon_state="darkbrowncorners3";} : /turf/open/floor/prison/darkbrowncorners3/west +/turf/open/floor/prison{dir=8;icon_state="darkpurple2";} : /turf/open/floor/prison/darkpurple2/west +/turf/open/floor/prison{dir=8;icon_state="darkpurplecorners2";} : /turf/open/floor/prison/darkpurplecorners2/west +/turf/open/floor/prison{dir=8;icon_state="darkred2";} : /turf/open/floor/prison/darkred2/west +/turf/open/floor/prison{dir=8;icon_state="darkredcorners2";} : /turf/open/floor/prison/darkredcorners2/west +/turf/open/floor/prison{dir=8;icon_state="darkyellow2";} : /turf/open/floor/prison/darkyellow2/west +/turf/open/floor/prison{dir=8;icon_state="darkyellowcorners2";} : /turf/open/floor/prison/darkyellowcorners2/west +/turf/open/floor/prison{dir=8;icon_state="floor_marked";} : /turf/open/floor/prison/floor_marked/west +/turf/open/floor/prison{dir=8;icon_state="green";} : /turf/open/floor/prison/green/west +/turf/open/floor/prison{dir=8;icon_state="greenblue";} : /turf/open/floor/prison/greenblue/west +/turf/open/floor/prison{dir=8;icon_state="greenbluecorner";} : /turf/open/floor/prison/greenbluecorner/west +/turf/open/floor/prison{dir=8;icon_state="greencorner";} : /turf/open/floor/prison/greencorner/west +/turf/open/floor/prison{dir=8;icon_state="rampbottom";} : /turf/open/floor/prison/rampbottom/west +/turf/open/floor/prison{dir=8;icon_state="red";} : /turf/open/floor/prison/red/west +/turf/open/floor/prison{dir=8;icon_state="redcorner";} : /turf/open/floor/prison/redcorner/west +/turf/open/floor/prison{dir=8;icon_state="sterile_white";} : /turf/open/floor/prison/sterile_white/west +/turf/open/floor/prison{dir=8;icon_state="whitegreen";} : /turf/open/floor/prison/whitegreen/west +/turf/open/floor/prison{dir=8;icon_state="whitegreencorner";} : /turf/open/floor/prison/whitegreencorner/west +/turf/open/floor/prison{dir=8;icon_state="whitepurple";} : /turf/open/floor/prison/whitepurple/west +/turf/open/floor/prison{dir=8;icon_state="whitepurplecorner";} : /turf/open/floor/prison/whitepurplecorner/west +/turf/open/floor/prison{dir=8;icon_state="whitered";} : /turf/open/floor/prison/whitered/west +/turf/open/floor/prison{dir=8;icon_state="whiteredcorner";} : /turf/open/floor/prison/whiteredcorner/west +/turf/open/floor/prison{dir=8;icon_state="yellow";} : /turf/open/floor/prison/yellow/west +/turf/open/floor/prison{dir=8;icon_state="yellowcorner";} : /turf/open/floor/prison/yellowcorner/west +/turf/open/floor/prison{dir=8;} : /turf/open/floor/prison/west +/turf/open/floor/prison{dir=9;icon_state="blue";} : /turf/open/floor/prison/blue/northwest +/turf/open/floor/prison{dir=9;icon_state="darkbrown2";} : /turf/open/floor/prison/darkbrown2/northwest +/turf/open/floor/prison{dir=9;icon_state="darkbrown3";} : /turf/open/floor/prison/darkbrown3/northwest +/turf/open/floor/prison{dir=9;icon_state="darkpurple2";} : /turf/open/floor/prison/darkpurple2/northwest +/turf/open/floor/prison{dir=9;icon_state="darkpurplefull2";} : /turf/open/floor/prison/darkpurplefull2/northwest +/turf/open/floor/prison{dir=9;icon_state="darkred2";} : /turf/open/floor/prison/darkred2/northwest +/turf/open/floor/prison{dir=9;icon_state="darkyellow2";} : /turf/open/floor/prison/darkyellow2/northwest +/turf/open/floor/prison{dir=9;icon_state="green";} : /turf/open/floor/prison/green/northwest +/turf/open/floor/prison{dir=9;icon_state="greenblue";} : /turf/open/floor/prison/greenblue/northwest +/turf/open/floor/prison{dir=9;icon_state="greenfull";} : /turf/open/floor/prison/greenfull/northwest +/turf/open/floor/prison{dir=9;icon_state="red";} : /turf/open/floor/prison/red/northwest +/turf/open/floor/prison{dir=9;icon_state="whitegreen";} : /turf/open/floor/prison/whitegreen/northwest +/turf/open/floor/prison{dir=9;icon_state="whitepurple";} : /turf/open/floor/prison/whitepurple/northwest +/turf/open/floor/prison{dir=9;icon_state="whitered";} : /turf/open/floor/prison/whitered/northwest +/turf/open/floor/prison{dir=9;icon_state="yellow";} : /turf/open/floor/prison/yellow/northwest +/turf/open/floor/prison{icon_state="blue";} : /turf/open/floor/prison/blue +/turf/open/floor/prison{icon_state="blue_plate";} : /turf/open/floor/prison/blue_plate +/turf/open/floor/prison{icon_state="bluecorner";} : /turf/open/floor/prison/bluecorner +/turf/open/floor/prison{icon_state="bluefull";} : /turf/open/floor/prison/bluefull +/turf/open/floor/prison{icon_state="bright_clean2";} : /turf/open/floor/prison/bright_clean2 +/turf/open/floor/prison{icon_state="bright_clean_marked";} : /turf/open/floor/prison/bright_clean_marked +/turf/open/floor/prison{icon_state="cell_stripe";} : /turf/open/floor/prison/cell_stripe +/turf/open/floor/prison{icon_state="damaged2";} : /turf/open/floor/prison/damaged2 +/turf/open/floor/prison{icon_state="damaged3";} : /turf/open/floor/prison/damaged3 +/turf/open/floor/prison{icon_state="darkbrown2";} : /turf/open/floor/prison/darkbrown2 +/turf/open/floor/prison{icon_state="darkbrown3";} : /turf/open/floor/prison/darkbrown3 +/turf/open/floor/prison{icon_state="darkbrowncorners2";} : /turf/open/floor/prison/darkbrowncorners2 +/turf/open/floor/prison{icon_state="darkbrowncorners3";} : /turf/open/floor/prison/darkbrowncorners3 +/turf/open/floor/prison{icon_state="darkbrownfull2";} : /turf/open/floor/prison/darkbrownfull2 +/turf/open/floor/prison{icon_state="darkpurple2";} : /turf/open/floor/prison/darkpurple2 +/turf/open/floor/prison{icon_state="darkpurplecorners2";} : /turf/open/floor/prison/darkpurplecorners2 +/turf/open/floor/prison{icon_state="darkpurplefull2";} : /turf/open/floor/prison/darkpurplefull2 +/turf/open/floor/prison{icon_state="darkred2";} : /turf/open/floor/prison/darkred2 +/turf/open/floor/prison{icon_state="darkredcorners2";} : /turf/open/floor/prison/darkredcorners2 +/turf/open/floor/prison{icon_state="darkredfull2";} : /turf/open/floor/prison/darkredfull2 +/turf/open/floor/prison{icon_state="darkyellow2";} : /turf/open/floor/prison/darkyellow2 +/turf/open/floor/prison{icon_state="darkyellowcorners2";} : /turf/open/floor/prison/darkyellowcorners2 +/turf/open/floor/prison{icon_state="darkyellowfull2";} : /turf/open/floor/prison/darkyellowfull2 +/turf/open/floor/prison{icon_state="floor_marked";} : /turf/open/floor/prison/floor_marked +/turf/open/floor/prison{icon_state="floor_plate";} : /turf/open/floor/prison/floor_plate +/turf/open/floor/prison{icon_state="floorscorched1";} : /turf/open/floor/prison/floorscorched1 +/turf/open/floor/prison{icon_state="floorscorched2";} : /turf/open/floor/prison/floorscorched2 +/turf/open/floor/prison{icon_state="green";} : /turf/open/floor/prison/green +/turf/open/floor/prison{icon_state="greenblue";dir=10;} : /turf/open/floor/prison/greenblue/southwest +/turf/open/floor/prison{icon_state="greenblue";dir=1;} : /turf/open/floor/prison/greenblue/north +/turf/open/floor/prison{icon_state="greenblue";dir=4;} : /turf/open/floor/prison/greenblue/east +/turf/open/floor/prison{icon_state="greenblue";dir=5;} : /turf/open/floor/prison/greenblue/northeast +/turf/open/floor/prison{icon_state="greenblue";dir=6;} : /turf/open/floor/prison/greenblue/southeast +/turf/open/floor/prison{icon_state="greenblue";dir=8;} : /turf/open/floor/prison/greenblue/west +/turf/open/floor/prison{icon_state="greenblue";dir=9;} : /turf/open/floor/prison/greenblue/northwest +/turf/open/floor/prison{icon_state="greenblue";} : /turf/open/floor/prison/greenblue +/turf/open/floor/prison{icon_state="greenbluecorner";dir=4;} : /turf/open/floor/prison/greenbluecorner/east +/turf/open/floor/prison{icon_state="greenbluecorner";} : /turf/open/floor/prison/greenbluecorner +/turf/open/floor/prison{icon_state="greencorner";} : /turf/open/floor/prison/greencorner +/turf/open/floor/prison{icon_state="greenfull";} : /turf/open/floor/prison/greenfull +/turf/open/floor/prison{icon_state="kitchen";} : /turf/open/floor/prison/kitchen +/turf/open/floor/prison{icon_state="panelscorched";} : /turf/open/floor/prison/panelscorched +/turf/open/floor/prison{icon_state="platingdmg1";} : /turf/open/floor/prison/platingdmg1 +/turf/open/floor/prison{icon_state="platingdmg2";} : /turf/open/floor/prison/platingdmg2 +/turf/open/floor/prison{icon_state="platingdmg3";} : /turf/open/floor/prison/platingdmg3 +/turf/open/floor/prison{icon_state="rampbottom";} : /turf/open/floor/prison/rampbottom +/turf/open/floor/prison{icon_state="red";dir=10;} : /turf/open/floor/prison/red/southwest +/turf/open/floor/prison{icon_state="red";dir=1;} : /turf/open/floor/prison/red/north +/turf/open/floor/prison{icon_state="red";dir=4;} : /turf/open/floor/prison/red/east +/turf/open/floor/prison{icon_state="red";dir=5;} : /turf/open/floor/prison/red/northeast +/turf/open/floor/prison{icon_state="red";dir=6;} : /turf/open/floor/prison/red/southeast +/turf/open/floor/prison{icon_state="red";dir=8;} : /turf/open/floor/prison/red/west +/turf/open/floor/prison{icon_state="red";dir=9;} : /turf/open/floor/prison/red/northwest +/turf/open/floor/prison{icon_state="red";} : /turf/open/floor/prison/red +/turf/open/floor/prison{icon_state="redcorner";dir=1;} : /turf/open/floor/prison/redcorner/north +/turf/open/floor/prison{icon_state="redcorner";dir=4;} : /turf/open/floor/prison/redcorner/east +/turf/open/floor/prison{icon_state="redcorner";} : /turf/open/floor/prison/redcorner +/turf/open/floor/prison{icon_state="redfull";} : /turf/open/floor/prison/redfull +/turf/open/floor/prison{icon_state="sterile_white";} : /turf/open/floor/prison/sterile_white +/turf/open/floor/prison{icon_state="whitegreen";} : /turf/open/floor/prison/whitegreen +/turf/open/floor/prison{icon_state="whitegreencorner";} : /turf/open/floor/prison/whitegreencorner +/turf/open/floor/prison{icon_state="whitegreenfull";} : /turf/open/floor/prison/whitegreenfull +/turf/open/floor/prison{icon_state="whitepurple";} : /turf/open/floor/prison/whitepurple +/turf/open/floor/prison{icon_state="whitepurplecorner";} : /turf/open/floor/prison/whitepurplecorner +/turf/open/floor/prison{icon_state="whitepurplefull";} : /turf/open/floor/prison/whitepurplefull +/turf/open/floor/prison{icon_state="whitered";} : /turf/open/floor/prison/whitered +/turf/open/floor/prison{icon_state="yellow";} : /turf/open/floor/prison/yellow +/turf/open/floor/prison{icon_state="yellowcorner";} : /turf/open/floor/prison/yellowcorner +/turf/open/floor/prison{icon_state="yellowfull";} : /turf/open/floor/prison/yellowfull +/turf/open/floor/shiva{dir=10;icon_state="blue";} : /turf/open/floor/shiva/blue/southwest +/turf/open/floor/shiva{dir=10;icon_state="green";} : /turf/open/floor/shiva/green/southwest +/turf/open/floor/shiva{dir=10;icon_state="purple";} : /turf/open/floor/shiva/purple/southwest +/turf/open/floor/shiva{dir=10;icon_state="red";} : /turf/open/floor/shiva/red/southwest +/turf/open/floor/shiva{dir=10;icon_state="wred";} : /turf/open/floor/shiva/wred/southwest +/turf/open/floor/shiva{dir=10;icon_state="yellow";} : /turf/open/floor/shiva/yellow/southwest +/turf/open/floor/shiva{dir=1;icon_state="blue";} : /turf/open/floor/shiva/blue/north +/turf/open/floor/shiva{dir=1;icon_state="green";} : /turf/open/floor/shiva/green/north +/turf/open/floor/shiva{dir=1;icon_state="greencorners";} : /turf/open/floor/shiva/greencorners/north +/turf/open/floor/shiva{dir=1;icon_state="multi_tiles";} : /turf/open/floor/shiva/multi_tiles/north +/turf/open/floor/shiva{dir=1;icon_state="purple";} : /turf/open/floor/shiva/purple/north +/turf/open/floor/shiva{dir=1;icon_state="purplefull";} : /turf/open/floor/shiva/purplefull/north +/turf/open/floor/shiva{dir=1;icon_state="red";} : /turf/open/floor/shiva/red/north +/turf/open/floor/shiva{dir=1;icon_state="redcorners";} : /turf/open/floor/shiva/redcorners/north +/turf/open/floor/shiva{dir=1;icon_state="snow_mat";} : /turf/open/floor/shiva/snow_mat/north +/turf/open/floor/shiva{dir=1;icon_state="wred";} : /turf/open/floor/shiva/wred/north +/turf/open/floor/shiva{dir=1;icon_state="wredcorners";} : /turf/open/floor/shiva/wredcorners/north +/turf/open/floor/shiva{dir=1;icon_state="yellow";} : /turf/open/floor/shiva/yellow/north +/turf/open/floor/shiva{dir=1;icon_state="yellowcorners";} : /turf/open/floor/shiva/yellowcorners/north +/turf/open/floor/shiva{dir=1;} : /turf/open/floor/shiva/north +/turf/open/floor/shiva{dir=4;icon_state="blue";} : /turf/open/floor/shiva/blue/east +/turf/open/floor/shiva{dir=4;icon_state="green";} : /turf/open/floor/shiva/green/east +/turf/open/floor/shiva{dir=4;icon_state="greencorners";} : /turf/open/floor/shiva/greencorners/east +/turf/open/floor/shiva{dir=4;icon_state="multi_tiles";} : /turf/open/floor/shiva/multi_tiles/east +/turf/open/floor/shiva{dir=4;icon_state="purple";} : /turf/open/floor/shiva/purple/east +/turf/open/floor/shiva{dir=4;icon_state="purplefull";} : /turf/open/floor/shiva/purplefull/east +/turf/open/floor/shiva{dir=4;icon_state="red";} : /turf/open/floor/shiva/red/east +/turf/open/floor/shiva{dir=4;icon_state="redcorners";} : /turf/open/floor/shiva/redcorners/east +/turf/open/floor/shiva{dir=4;icon_state="snow_mat";} : /turf/open/floor/shiva/snow_mat/east +/turf/open/floor/shiva{dir=4;icon_state="wred";} : /turf/open/floor/shiva/wred/east +/turf/open/floor/shiva{dir=4;icon_state="wredcorners";} : /turf/open/floor/shiva/wredcorners/east +/turf/open/floor/shiva{dir=4;icon_state="yellow";} : /turf/open/floor/shiva/yellow/east +/turf/open/floor/shiva{dir=4;icon_state="yellowcorners";} : /turf/open/floor/shiva/yellowcorners/east +/turf/open/floor/shiva{dir=5;icon_state="blue";} : /turf/open/floor/shiva/blue/northeast +/turf/open/floor/shiva{dir=5;icon_state="green";} : /turf/open/floor/shiva/green/northeast +/turf/open/floor/shiva{dir=5;icon_state="purple";} : /turf/open/floor/shiva/purple/northeast +/turf/open/floor/shiva{dir=5;icon_state="red";} : /turf/open/floor/shiva/red/northeast +/turf/open/floor/shiva{dir=5;icon_state="wred";} : /turf/open/floor/shiva/wred/northeast +/turf/open/floor/shiva{dir=5;icon_state="yellow";} : /turf/open/floor/shiva/yellow/northeast +/turf/open/floor/shiva{dir=6;icon_state="blue";} : /turf/open/floor/shiva/blue/southeast +/turf/open/floor/shiva{dir=6;icon_state="green";} : /turf/open/floor/shiva/green/southeast +/turf/open/floor/shiva{dir=6;icon_state="multi_tiles";} : /turf/open/floor/shiva/multi_tiles/southeast +/turf/open/floor/shiva{dir=6;icon_state="purple";} : /turf/open/floor/shiva/purple/southeast +/turf/open/floor/shiva{dir=6;icon_state="red";} : /turf/open/floor/shiva/red/southeast +/turf/open/floor/shiva{dir=6;icon_state="wred";} : /turf/open/floor/shiva/wred/southeast +/turf/open/floor/shiva{dir=6;icon_state="yellow";} : /turf/open/floor/shiva/yellow/southeast +/turf/open/floor/shiva{dir=8;icon_state="blue";} : /turf/open/floor/shiva/blue/west +/turf/open/floor/shiva{dir=8;icon_state="bluecorners";} : /turf/open/floor/shiva/bluecorners/west +/turf/open/floor/shiva{dir=8;icon_state="bluefull";} : /turf/open/floor/shiva/bluefull/west +/turf/open/floor/shiva{dir=8;icon_state="green";} : /turf/open/floor/shiva/green/west +/turf/open/floor/shiva{dir=8;icon_state="greencorners";} : /turf/open/floor/shiva/greencorners/west +/turf/open/floor/shiva{dir=8;icon_state="greenfull";} : /turf/open/floor/shiva/greenfull/west +/turf/open/floor/shiva{dir=8;icon_state="multi_tiles";} : /turf/open/floor/shiva/multi_tiles/west +/turf/open/floor/shiva{dir=8;icon_state="purple";} : /turf/open/floor/shiva/purple/west +/turf/open/floor/shiva{dir=8;icon_state="purplecorners";} : /turf/open/floor/shiva/purplecorners/west +/turf/open/floor/shiva{dir=8;icon_state="purplefull";} : /turf/open/floor/shiva/purplefull/west +/turf/open/floor/shiva{dir=8;icon_state="red";} : /turf/open/floor/shiva/red/west +/turf/open/floor/shiva{dir=8;icon_state="redcorners";} : /turf/open/floor/shiva/redcorners/west +/turf/open/floor/shiva{dir=8;icon_state="redfull";} : /turf/open/floor/shiva/redfull/west +/turf/open/floor/shiva{dir=8;icon_state="snow_mat";} : /turf/open/floor/shiva/snow_mat/west +/turf/open/floor/shiva{dir=8;icon_state="wred";} : /turf/open/floor/shiva/wred/west +/turf/open/floor/shiva{dir=8;icon_state="wredcorners";} : /turf/open/floor/shiva/wredcorners/west +/turf/open/floor/shiva{dir=8;icon_state="yellow";} : /turf/open/floor/shiva/yellow/west +/turf/open/floor/shiva{dir=8;icon_state="yellowcorners";} : /turf/open/floor/shiva/yellowcorners/west +/turf/open/floor/shiva{dir=8;icon_state="yellowfull";} : /turf/open/floor/shiva/yellowfull/west +/turf/open/floor/shiva{dir=9;icon_state="blue";} : /turf/open/floor/shiva/blue/northwest +/turf/open/floor/shiva{dir=9;icon_state="green";} : /turf/open/floor/shiva/green/northwest +/turf/open/floor/shiva{dir=9;icon_state="purple";} : /turf/open/floor/shiva/purple/northwest +/turf/open/floor/shiva{dir=9;icon_state="red";} : /turf/open/floor/shiva/red/northwest +/turf/open/floor/shiva{dir=9;icon_state="wred";} : /turf/open/floor/shiva/wred/northwest +/turf/open/floor/shiva{dir=9;icon_state="yellow";} : /turf/open/floor/shiva/yellow/northwest +/turf/open/floor/shiva{icon_state="blue";} : /turf/open/floor/shiva/blue +/turf/open/floor/shiva{icon_state="bluecorners";} : /turf/open/floor/shiva/bluecorners +/turf/open/floor/shiva{icon_state="bluefull";} : /turf/open/floor/shiva/bluefull +/turf/open/floor/shiva{icon_state="floor3";} : /turf/open/floor/shiva/floor3 +/turf/open/floor/shiva{icon_state="green";} : /turf/open/floor/shiva/green +/turf/open/floor/shiva{icon_state="greencorners";} : /turf/open/floor/shiva/greencorners +/turf/open/floor/shiva{icon_state="greenfull";} : /turf/open/floor/shiva/greenfull +/turf/open/floor/shiva{icon_state="multi_tiles";} : /turf/open/floor/shiva/multi_tiles +/turf/open/floor/shiva{icon_state="purple";} : /turf/open/floor/shiva/purple +/turf/open/floor/shiva{icon_state="purplecorners";} : /turf/open/floor/shiva/purplecorners +/turf/open/floor/shiva{icon_state="purplefull";} : /turf/open/floor/shiva/purplefull +/turf/open/floor/shiva{icon_state="radiator_tile";} : /turf/open/floor/shiva/radiator_tile +/turf/open/floor/shiva{icon_state="radiator_tile2";} : /turf/open/floor/shiva/radiator_tile2 +/turf/open/floor/shiva{icon_state="red";} : /turf/open/floor/shiva/red +/turf/open/floor/shiva{icon_state="redcorners";} : /turf/open/floor/shiva/redcorners +/turf/open/floor/shiva{icon_state="redfull";} : /turf/open/floor/shiva/redfull +/turf/open/floor/shiva{icon_state="snow_mat";} : /turf/open/floor/shiva/snow_mat +/turf/open/floor/shiva{icon_state="wred";} : /turf/open/floor/shiva/wred +/turf/open/floor/shiva{icon_state="wredcorners";} : /turf/open/floor/shiva/wredcorners +/turf/open/floor/shiva{icon_state="wredfull";} : /turf/open/floor/shiva/wredfull +/turf/open/floor/shiva{icon_state="yellow";} : /turf/open/floor/shiva/yellow +/turf/open/floor/shiva{icon_state="yellowcorners";} : /turf/open/floor/shiva/yellowcorners +/turf/open/floor/shiva{icon_state="yellowfull";} : /turf/open/floor/shiva/yellowfull +/turf/open/floor/strata{color="#5e5d5d";dir=10;icon_state="multi_tiles";} : /turf/open/floor/strata/grey_multi_tiles/southwest +/turf/open/floor/strata{color="#5e5d5d";icon_state="multi_tiles";} : /turf/open/floor/strata/grey_multi_tiles +/turf/open/floor/strata{desc="Faux wooden floor boards, certified fire resistant. Begrudgingly put in place of actual wood due to concerns about 'fire safety'. Whatever that means.";icon='icons/turf/floors/floors.dmi';icon_state="wood";} : /turf/open/floor/strata/faux_wood +/turf/open/floor/strata{desc="This metal floor has been painted to look like one made of wood. Unfortunately, wood and high pressure internal atmosphere don't mix well. Wood is a major fire hazard don't'cha know.";icon='icons/turf/floors/floors.dmi';icon_state="wood";} : /turf/open/floor/strata/faux_metal +/turf/open/floor/strata{dir=10;icon_state="multi_tiles";} : /turf/open/floor/strata/multi_tiles/southwest +/turf/open/floor/strata{dir=10;icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3/southwest +/turf/open/floor/strata{dir=1;icon_state="blue4";} : /turf/open/floor/strata/blue4/north +/turf/open/floor/strata{dir=1;icon_state="red3";} : /turf/open/floor/strata/red3/north +/turf/open/floor/strata{dir=1;icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3/north +/turf/open/floor/strata{dir=1;icon_state="white_cyan4";} : /turf/open/floor/strata/white_cyan4/north +/turf/open/floor/strata{dir=2;icon_state="red3";} : /turf/open/floor/strata/red3/south +/turf/open/floor/strata{dir=2;icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3/south +/turf/open/floor/strata{dir=2;icon_state="white_cyan4";} : /turf/open/floor/strata/white_cyan4/south +/turf/open/floor/strata{dir=4;icon_state="blue3";} : /turf/open/floor/strata/blue3/east +/turf/open/floor/strata{dir=4;icon_state="cyan1";} : /turf/open/floor/strata/cyan1/east +/turf/open/floor/strata{dir=4;icon_state="cyan2";} : /turf/open/floor/strata/cyan2/east +/turf/open/floor/strata{dir=4;icon_state="cyan3";} : /turf/open/floor/strata/cyan3/east +/turf/open/floor/strata{dir=4;icon_state="cyan4";} : /turf/open/floor/strata/cyan4/east +/turf/open/floor/strata{dir=4;icon_state="floor3";} : /turf/open/floor/strata/floor3/east +/turf/open/floor/strata{dir=4;icon_state="orange_edge";} : /turf/open/floor/strata/orange_edge/east +/turf/open/floor/strata{dir=4;icon_state="red3";} : /turf/open/floor/strata/red3/east +/turf/open/floor/strata{dir=4;icon_state="white_cyan1";} : /turf/open/floor/strata/white_cyan1/east +/turf/open/floor/strata{dir=4;icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3/east +/turf/open/floor/strata{dir=4;icon_state="white_cyan4";} : /turf/open/floor/strata/white_cyan4/east +/turf/open/floor/strata{dir=5;icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3/northeast +/turf/open/floor/strata{dir=6;icon_state="multi_tiles";} : /turf/open/floor/strata/multi_tiles/southeast +/turf/open/floor/strata{dir=6;icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3/southeast +/turf/open/floor/strata{dir=8;icon_state="blue3";} : /turf/open/floor/strata/blue3/west +/turf/open/floor/strata{dir=8;icon_state="cyan3";} : /turf/open/floor/strata/cyan3/west +/turf/open/floor/strata{dir=8;icon_state="multi_tiles";} : /turf/open/floor/strata/multi_tiles/west +/turf/open/floor/strata{dir=8;icon_state="orange_edge";} : /turf/open/floor/strata/orange_edge/west +/turf/open/floor/strata{dir=8;icon_state="red3";} : /turf/open/floor/strata/red3/west +/turf/open/floor/strata{dir=8;icon_state="white_cyan2";} : /turf/open/floor/strata/white_cyan2/west +/turf/open/floor/strata{dir=8;icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3/west +/turf/open/floor/strata{dir=8;icon_state="white_cyan4";} : /turf/open/floor/strata/white_cyan4/west +/turf/open/floor/strata{dir=9;icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3/northwest +/turf/open/floor/strata{icon_state="blue1";} : /turf/open/floor/strata/blue1 +/turf/open/floor/strata{icon_state="blue3";dir=1;} : /turf/open/floor/strata/blue3/north +/turf/open/floor/strata{icon_state="blue4";} : /turf/open/floor/strata/blue4 +/turf/open/floor/strata{icon_state="damaged3";} : /turf/open/floor/strata/damaged3 +/turf/open/floor/strata{icon_state="fake_wood";} : /turf/open/floor/strata/fake_wood +/turf/open/floor/strata{icon_state="floor2";} : /turf/open/floor/strata/floor2 +/turf/open/floor/strata{icon_state="floor3";} : /turf/open/floor/strata/floor3 +/turf/open/floor/strata{icon_state="floorscorched1";} : /turf/open/floor/strata/floorscorched1 +/turf/open/floor/strata{icon_state="floorscorched2";} : /turf/open/floor/strata/floorscorched2 +/turf/open/floor/strata{icon_state="green1";} : /turf/open/floor/strata/green1 +/turf/open/floor/strata{icon_state="green3";dir=1;} : /turf/open/floor/strata/green3/north +/turf/open/floor/strata{icon_state="green3";dir=4;} : /turf/open/floor/strata/green3/east +/turf/open/floor/strata{icon_state="green3";dir=5;} : /turf/open/floor/strata/green3/northeast +/turf/open/floor/strata{icon_state="green3";dir=8;} : /turf/open/floor/strata/green3/west +/turf/open/floor/strata{icon_state="green3";dir=9;} : /turf/open/floor/strata/green3/northwest +/turf/open/floor/strata{icon_state="green3";} : /turf/open/floor/strata/green3 +/turf/open/floor/strata{icon_state="green4";dir=1;} : /turf/open/floor/strata/green4/north +/turf/open/floor/strata{icon_state="green4";dir=4;} : /turf/open/floor/strata/green4/east +/turf/open/floor/strata{icon_state="green4";dir=8;} : /turf/open/floor/strata/green4/west +/turf/open/floor/strata{icon_state="green4";} : /turf/open/floor/strata/green4 +/turf/open/floor/strata{icon_state="multi_tiles";} : /turf/open/floor/strata/multi_tiles +/turf/open/floor/strata{icon_state="orange_cover";} : /turf/open/floor/strata/orange_cover +/turf/open/floor/strata{icon_state="orange_icorner";dir=1;} : /turf/open/floor/strata/orange_icorner/north +/turf/open/floor/strata{icon_state="orange_icorner";dir=8;} : /turf/open/floor/strata/orange_icorner/west +/turf/open/floor/strata{icon_state="orange_tile";} : /turf/open/floor/strata/orange_tile +/turf/open/floor/strata{icon_state="purp1";} : /turf/open/floor/strata/purp1 +/turf/open/floor/strata{icon_state="purp2";} : /turf/open/floor/strata/purp2 +/turf/open/floor/strata{icon_state="purp3";dir=4;} : /turf/open/floor/strata/purp3/east +/turf/open/floor/strata{icon_state="red1";} : /turf/open/floor/strata/red1 +/turf/open/floor/strata{icon_state="red2";} : /turf/open/floor/strata/red2 +/turf/open/floor/strata{icon_state="red3";} : /turf/open/floor/strata/red3 +/turf/open/floor/strata{icon_state="red4";dir=1;} : /turf/open/floor/strata/red4/north +/turf/open/floor/strata{icon_state="red4";dir=4;} : /turf/open/floor/strata/red4/east +/turf/open/floor/strata{icon_state="red4";dir=8;} : /turf/open/floor/strata/red4/west +/turf/open/floor/strata{icon_state="white_cyan1";} : /turf/open/floor/strata/white_cyan1 +/turf/open/floor/strata{icon_state="white_cyan2";} : /turf/open/floor/strata/white_cyan2 +/turf/open/floor/strata{icon_state="white_cyan3";} : /turf/open/floor/strata/white_cyan3 +/turf/open/floor/strata{icon_state="white_cyan4";} : /turf/open/floor/strata/white_cyan4 +/turf/open/floor/tdome{dir=1;icon_state="w-y0";} : /turf/open/floor/tdome/w_y0/north +/turf/open/floor/tdome{dir=1;icon_state="w-y1";} : /turf/open/floor/tdome/w_y1/north +/turf/open/floor/tdome{dir=1;icon_state="w-y2";} : /turf/open/floor/tdome/w_y2/north +/turf/open/floor/tdome{dir=5;} : /turf/open/floor/tdome/northeast +/turf/open/floor/tdome{icon_state="bluefull";} : /turf/open/floor/tdome/bluefull +/turf/open/floor/tdome{icon_state="redfull";} : /turf/open/floor/tdome/redfull +/turf/open/floor/tdome{icon_state="tcomms";} : /turf/open/floor/tdome/tcomms +/turf/open/floor/tdome{icon_state="test_floor4";} : /turf/open/floor/tdome/test_floor4 +/turf/open/floor/wood{icon_state="wood-broken";} : /turf/open/floor/wood/wood_broken +/turf/open/floor/wood{icon_state="wood-broken2";} : /turf/open/floor/wood/wood_broken2 +/turf/open/floor/wood{icon_state="wood-broken3";} : /turf/open/floor/wood/wood_broken3 +/turf/open/floor/wood{icon_state="wood-broken4";} : /turf/open/floor/wood/wood_broken4 +/turf/open/floor/wood{icon_state="wood-broken5";} : /turf/open/floor/wood/wood_broken5 +/turf/open/floor/wood{icon_state="wood-broken6";} : /turf/open/floor/wood/wood_broken6 +/turf/open/floor/wood{icon_state="wood-broken7";} : /turf/open/floor/wood/wood_broken7 +/turf/open/floor{color="#525151";icon_state="dark2";} : /turf/open/floor/grey_dark2 +/turf/open/floor{desc="A sophisticated device that captures and converts light from the system's star into energy for the station.";icon_state="solarpanel";name="solarpanel";} : /turf/open/floor/solarpanel +/turf/open/floor{dir=10;icon_state="asteroidwarning";} : /turf/open/floor/asteroidwarning/southwest +/turf/open/floor{dir=10;icon_state="darkblue2";} : /turf/open/floor/darkblue2/southwest +/turf/open/floor{dir=10;icon_state="darkbrown2";} : /turf/open/floor/darkbrown2/southwest +/turf/open/floor{dir=10;icon_state="darkgreen2";} : /turf/open/floor/darkgreen2/southwest +/turf/open/floor{dir=10;icon_state="darkpurple2";} : /turf/open/floor/darkpurple2/southwest +/turf/open/floor{dir=10;icon_state="darkred2";} : /turf/open/floor/darkred2/southwest +/turf/open/floor{dir=10;icon_state="darkyellow2";} : /turf/open/floor/darkyellow2/southwest +/turf/open/floor{dir=10;icon_state="podhatch";} : /turf/open/floor/podhatch/southwest +/turf/open/floor{dir=10;icon_state="purple";} : /turf/open/floor/purple/southwest +/turf/open/floor{dir=10;icon_state="red";} : /turf/open/floor/red/southwest +/turf/open/floor{dir=10;icon_state="warning";} : /turf/open/floor/warning/southwest +/turf/open/floor{dir=10;icon_state="warnwhite";} : /turf/open/floor/warnwhite/southwest +/turf/open/floor{dir=10;icon_state="whiteblue";} : /turf/open/floor/whiteblue/southwest +/turf/open/floor{dir=10;icon_state="whitegreen";} : /turf/open/floor/whitegreen/southwest +/turf/open/floor{dir=10;icon_state="whitepurple";} : /turf/open/floor/whitepurple/southwest +/turf/open/floor{dir=10;icon_state="whitered";} : /turf/open/floor/whitered/southwest +/turf/open/floor{dir=10;icon_state="whiteyellow";} : /turf/open/floor/whiteyellow/southwest +/turf/open/floor{dir=1;icon_state="asteroidfloor";} : /turf/open/floor/asteroidfloor/north +/turf/open/floor{dir=1;icon_state="asteroidwarning";} : /turf/open/floor/asteroidwarning/north +/turf/open/floor{dir=1;icon_state="bot";} : /turf/open/floor/bot/north +/turf/open/floor{dir=1;icon_state="chapel";} : /turf/open/floor/chapel/north +/turf/open/floor{dir=1;icon_state="darkblue2";} : /turf/open/floor/darkblue2/north +/turf/open/floor{dir=1;icon_state="darkbrown2";} : /turf/open/floor/darkbrown2/north +/turf/open/floor{dir=1;icon_state="darkbrowncorners2";} : /turf/open/floor/darkbrowncorners2/north +/turf/open/floor{dir=1;icon_state="darkgreen2";} : /turf/open/floor/darkgreen2/north +/turf/open/floor{dir=1;icon_state="darkgreencorners2";} : /turf/open/floor/darkgreencorners2/north +/turf/open/floor{dir=1;icon_state="darkpurple2";} : /turf/open/floor/darkpurple2/north +/turf/open/floor{dir=1;icon_state="darkpurplecorners2";} : /turf/open/floor/darkpurplecorners2/north +/turf/open/floor{dir=1;icon_state="darkred2";} : /turf/open/floor/darkred2/north +/turf/open/floor{dir=1;icon_state="darkredcorners2";} : /turf/open/floor/darkredcorners2/north +/turf/open/floor{dir=1;icon_state="darkyellow2";} : /turf/open/floor/darkyellow2/north +/turf/open/floor{dir=1;icon_state="darkyellowcorners2";} : /turf/open/floor/darkyellowcorners2/north +/turf/open/floor{dir=1;icon_state="elevatorshaft";} : /turf/open/floor/elevatorshaft/north +/turf/open/floor{dir=1;icon_state="green";} : /turf/open/floor/green/north +/turf/open/floor{dir=1;icon_state="loadingarea";} : /turf/open/floor/loadingarea/north +/turf/open/floor{dir=1;icon_state="podhatch";} : /turf/open/floor/podhatch/north +/turf/open/floor{dir=1;icon_state="podhatchfloor";} : /turf/open/floor/podhatchfloor/north +/turf/open/floor{dir=1;icon_state="purple";} : /turf/open/floor/purple/north +/turf/open/floor{dir=1;icon_state="rampbottom";} : /turf/open/floor/rampbottom/north +/turf/open/floor{dir=1;icon_state="red";} : /turf/open/floor/red/north +/turf/open/floor{dir=1;icon_state="redcorner";} : /turf/open/floor/redcorner/north +/turf/open/floor{dir=1;icon_state="vault";} : /turf/open/floor/vault2/north +/turf/open/floor{dir=1;icon_state="warning";} : /turf/open/floor/warning/north +/turf/open/floor{dir=1;icon_state="warningcorner";} : /turf/open/floor/warningcorner/north +/turf/open/floor{dir=1;icon_state="warnwhite";} : /turf/open/floor/warnwhite/north +/turf/open/floor{dir=1;icon_state="whiteblue";} : /turf/open/floor/whiteblue/north +/turf/open/floor{dir=1;icon_state="whitebluecorner";} : /turf/open/floor/whitebluecorner/north +/turf/open/floor{dir=1;icon_state="whitegreen";} : /turf/open/floor/whitegreen/north +/turf/open/floor{dir=1;icon_state="whitegreencorner";} : /turf/open/floor/whitegreencorner/north +/turf/open/floor{dir=1;icon_state="whitepurple";} : /turf/open/floor/whitepurple/north +/turf/open/floor{dir=1;icon_state="whitepurplecorner";} : /turf/open/floor/whitepurplecorner/north +/turf/open/floor{dir=1;icon_state="whitered";} : /turf/open/floor/whitered/north +/turf/open/floor{dir=1;icon_state="whiteredcorner";} : /turf/open/floor/whiteredcorner/north +/turf/open/floor{dir=1;icon_state="whiteyellow";} : /turf/open/floor/whiteyellow/north +/turf/open/floor{dir=1;icon_state="whiteyellowcorner";} : /turf/open/floor/whiteyellowcorner/north +/turf/open/floor{dir=4;icon_state="asteroidwarning";} : /turf/open/floor/asteroidwarning/east +/turf/open/floor{dir=4;icon_state="chapel";} : /turf/open/floor/chapel/east +/turf/open/floor{dir=4;icon_state="darkblue2";} : /turf/open/floor/darkblue2/east +/turf/open/floor{dir=4;icon_state="darkbrown2";} : /turf/open/floor/darkbrown2/east +/turf/open/floor{dir=4;icon_state="darkbrowncorners2";} : /turf/open/floor/darkbrowncorners2/east +/turf/open/floor{dir=4;icon_state="darkgreen2";} : /turf/open/floor/darkgreen2/east +/turf/open/floor{dir=4;icon_state="darkgreencorners2";} : /turf/open/floor/darkgreencorners2/east +/turf/open/floor{dir=4;icon_state="darkpurple2";} : /turf/open/floor/darkpurple2/east +/turf/open/floor{dir=4;icon_state="darkpurplecorners2";} : /turf/open/floor/darkpurplecorners2/east +/turf/open/floor{dir=4;icon_state="darkred2";} : /turf/open/floor/darkred2/east +/turf/open/floor{dir=4;icon_state="darkredcorners2";} : /turf/open/floor/darkredcorners2/east +/turf/open/floor{dir=4;icon_state="darkyellow2";} : /turf/open/floor/darkyellow2/east +/turf/open/floor{dir=4;icon_state="darkyellowcorners2";} : /turf/open/floor/darkyellowcorners2/east +/turf/open/floor{dir=4;icon_state="loadingarea";} : /turf/open/floor/loadingarea/east +/turf/open/floor{dir=4;icon_state="purple";} : /turf/open/floor/purple/east +/turf/open/floor{dir=4;icon_state="red";} : /turf/open/floor/red/east +/turf/open/floor{dir=4;icon_state="redcorner";} : /turf/open/floor/redcorner/east +/turf/open/floor{dir=4;icon_state="warning";} : /turf/open/floor/warning/east +/turf/open/floor{dir=4;icon_state="warningcorner";} : /turf/open/floor/warningcorner/east +/turf/open/floor{dir=4;icon_state="warnwhite";} : /turf/open/floor/warnwhite/east +/turf/open/floor{dir=4;icon_state="whiteblue";} : /turf/open/floor/whiteblue/east +/turf/open/floor{dir=4;icon_state="whitebluecorner";} : /turf/open/floor/whitebluecorner/east +/turf/open/floor{dir=4;icon_state="whitegreen";} : /turf/open/floor/whitegreen/east +/turf/open/floor{dir=4;icon_state="whitegreencorner";} : /turf/open/floor/whitegreencorner/east +/turf/open/floor{dir=4;icon_state="whitepurple";} : /turf/open/floor/whitepurple/east +/turf/open/floor{dir=4;icon_state="whitepurplecorner";} : /turf/open/floor/whitepurplecorner/east +/turf/open/floor{dir=4;icon_state="whitered";} : /turf/open/floor/whitered/east +/turf/open/floor{dir=4;icon_state="whiteredcorner";} : /turf/open/floor/whiteredcorner/east +/turf/open/floor{dir=4;icon_state="whiteyellow";} : /turf/open/floor/whiteyellow/east +/turf/open/floor{dir=4;icon_state="whiteyellowcorner";} : /turf/open/floor/whiteyellowcorner/east +/turf/open/floor{dir=4;icon_state="whiteyellowfull";} : /turf/open/floor/whiteyellowfull/east +/turf/open/floor{dir=5;icon_state="asteroidwarning";} : /turf/open/floor/asteroidwarning/northeast +/turf/open/floor{dir=5;icon_state="chapel";} : /turf/open/floor/chapel/northeast +/turf/open/floor{dir=5;icon_state="darkblue2";} : /turf/open/floor/darkblue2/northeast +/turf/open/floor{dir=5;icon_state="darkbrown2";} : /turf/open/floor/darkbrown2/northeast +/turf/open/floor{dir=5;icon_state="darkgreen2";} : /turf/open/floor/darkgreen2/northeast +/turf/open/floor{dir=5;icon_state="darkpurple2";} : /turf/open/floor/darkpurple2/northeast +/turf/open/floor{dir=5;icon_state="darkred2";} : /turf/open/floor/darkred2/northeast +/turf/open/floor{dir=5;icon_state="darkyellow2";} : /turf/open/floor/darkyellow2/northeast +/turf/open/floor{dir=5;icon_state="podhatch";} : /turf/open/floor/podhatch/northeast +/turf/open/floor{dir=5;icon_state="purple";} : /turf/open/floor/purple/northeast +/turf/open/floor{dir=5;icon_state="red";} : /turf/open/floor/red/northeast +/turf/open/floor{dir=5;icon_state="vault";} : /turf/open/floor/vault2/northeast +/turf/open/floor{dir=5;icon_state="warning";} : /turf/open/floor/warning/northeast +/turf/open/floor{dir=5;icon_state="warnwhite";} : /turf/open/floor/warnwhite/northeast +/turf/open/floor{dir=5;icon_state="whiteblue";} : /turf/open/floor/whiteblue/northeast +/turf/open/floor{dir=5;icon_state="whitebluefull";} : /turf/open/floor/whitebluefull/northeast +/turf/open/floor{dir=5;icon_state="whitegreen";} : /turf/open/floor/whitegreen/northeast +/turf/open/floor{dir=5;icon_state="whitegreen_v";} : /turf/open/floor/whitegreen_v/northeast +/turf/open/floor{dir=5;icon_state="whitegreenfull";} : /turf/open/floor/whitegreenfull/northeast +/turf/open/floor{dir=5;icon_state="whitepurple";} : /turf/open/floor/whitepurple/northeast +/turf/open/floor{dir=5;icon_state="whitered";} : /turf/open/floor/whitered/northeast +/turf/open/floor{dir=5;icon_state="whiteyellow";} : /turf/open/floor/whiteyellow/northeast +/turf/open/floor{dir=6;icon_state="asteroidwarning";} : /turf/open/floor/asteroidwarning/southeast +/turf/open/floor{dir=6;icon_state="darkblue2";} : /turf/open/floor/darkblue2/southeast +/turf/open/floor{dir=6;icon_state="darkbrown2";} : /turf/open/floor/darkbrown2/southeast +/turf/open/floor{dir=6;icon_state="darkgreen2";} : /turf/open/floor/darkgreen2/southeast +/turf/open/floor{dir=6;icon_state="darkpurple2";} : /turf/open/floor/darkpurple2/southeast +/turf/open/floor{dir=6;icon_state="darkred2";} : /turf/open/floor/darkred2/southeast +/turf/open/floor{dir=6;icon_state="darkyellow2";} : /turf/open/floor/darkyellow2/southeast +/turf/open/floor{dir=6;icon_state="podhatch";} : /turf/open/floor/podhatch/southeast +/turf/open/floor{dir=6;icon_state="purple";} : /turf/open/floor/purple/southeast +/turf/open/floor{dir=6;icon_state="red";} : /turf/open/floor/red/southeast +/turf/open/floor{dir=6;icon_state="warning";} : /turf/open/floor/warning/southeast +/turf/open/floor{dir=6;icon_state="warnwhite";} : /turf/open/floor/warnwhite/southeast +/turf/open/floor{dir=6;icon_state="whiteblue";} : /turf/open/floor/whiteblue/southeast +/turf/open/floor{dir=6;icon_state="whitegreen";} : /turf/open/floor/whitegreen/southeast +/turf/open/floor{dir=6;icon_state="whitepurple";} : /turf/open/floor/whitepurple/southeast +/turf/open/floor{dir=6;icon_state="whitered";} : /turf/open/floor/whitered/southeast +/turf/open/floor{dir=6;icon_state="whiteyellow";} : /turf/open/floor/whiteyellow/southeast +/turf/open/floor{dir=8;icon_state="asteroidwarning";} : /turf/open/floor/asteroidwarning/west +/turf/open/floor{dir=8;icon_state="barber";} : /turf/open/floor/barber/west +/turf/open/floor{dir=8;icon_state="carpet10-8";} : /turf/open/floor/carpet10_8/west +/turf/open/floor{dir=8;icon_state="carpet11-12";} : /turf/open/floor/carpet11_12/west +/turf/open/floor{dir=8;icon_state="carpet13-5";} : /turf/open/floor/carpet13_5/west +/turf/open/floor{dir=8;icon_state="carpet14-10";} : /turf/open/floor/carpet14_10/west +/turf/open/floor{dir=8;icon_state="carpet15-15";} : /turf/open/floor/carpet15_15/west +/turf/open/floor{dir=8;icon_state="carpet5-1";} : /turf/open/floor/carpet5_1/west +/turf/open/floor{dir=8;icon_state="carpet6-2";} : /turf/open/floor/carpet6_2/west +/turf/open/floor{dir=8;icon_state="carpet7-3";} : /turf/open/floor/carpet7_3/west +/turf/open/floor{dir=8;icon_state="carpet9-4";} : /turf/open/floor/carpet9_4/west +/turf/open/floor{dir=8;icon_state="chapel";} : /turf/open/floor/chapel/west +/turf/open/floor{dir=8;icon_state="damaged2";} : /turf/open/floor/damaged2/west +/turf/open/floor{dir=8;icon_state="damaged3";} : /turf/open/floor/damaged3/west +/turf/open/floor{dir=8;icon_state="damaged4";} : /turf/open/floor/damaged4/west +/turf/open/floor{dir=8;icon_state="damaged5";} : /turf/open/floor/damaged5/west +/turf/open/floor{dir=8;icon_state="darkblue2";} : /turf/open/floor/darkblue2/west +/turf/open/floor{dir=8;icon_state="darkbrown2";} : /turf/open/floor/darkbrown2/west +/turf/open/floor{dir=8;icon_state="darkbrowncorners2";} : /turf/open/floor/darkbrowncorners2/west +/turf/open/floor{dir=8;icon_state="darkgreen2";} : /turf/open/floor/darkgreen2/west +/turf/open/floor{dir=8;icon_state="darkgreencorners2";} : /turf/open/floor/darkgreencorners2/west +/turf/open/floor{dir=8;icon_state="darkpurple2";} : /turf/open/floor/darkpurple2/west +/turf/open/floor{dir=8;icon_state="darkpurplecorners2";} : /turf/open/floor/darkpurplecorners2/west +/turf/open/floor{dir=8;icon_state="darkred2";} : /turf/open/floor/darkred2/west +/turf/open/floor{dir=8;icon_state="darkredcorners2";} : /turf/open/floor/darkredcorners2/west +/turf/open/floor{dir=8;icon_state="darkyellow2";} : /turf/open/floor/darkyellow2/west +/turf/open/floor{dir=8;icon_state="darkyellowcorners2";} : /turf/open/floor/darkyellowcorners2/west +/turf/open/floor{dir=8;icon_state="loadingarea";} : /turf/open/floor/loadingarea/west +/turf/open/floor{dir=8;icon_state="purple";} : /turf/open/floor/purple/west +/turf/open/floor{dir=8;icon_state="purplecorner";} : /turf/open/floor/purplecorner/west +/turf/open/floor{dir=8;icon_state="red";} : /turf/open/floor/red/west +/turf/open/floor{dir=8;icon_state="redcorner";} : /turf/open/floor/redcorner/west +/turf/open/floor{dir=8;icon_state="vault";} : /turf/open/floor/vault2/west +/turf/open/floor{dir=8;icon_state="warning";} : /turf/open/floor/warning/west +/turf/open/floor{dir=8;icon_state="warningcorner";} : /turf/open/floor/warningcorner/west +/turf/open/floor{dir=8;icon_state="warnwhite";} : /turf/open/floor/warnwhite/west +/turf/open/floor{dir=8;icon_state="whiteblue";} : /turf/open/floor/whiteblue/west +/turf/open/floor{dir=8;icon_state="whitebluecorner";} : /turf/open/floor/whitebluecorner/west +/turf/open/floor{dir=8;icon_state="whitegreen";} : /turf/open/floor/whitegreen/west +/turf/open/floor{dir=8;icon_state="whitegreencorner";} : /turf/open/floor/whitegreencorner/west +/turf/open/floor{dir=8;icon_state="whitepurple";} : /turf/open/floor/whitepurple/west +/turf/open/floor{dir=8;icon_state="whitepurplecorner";} : /turf/open/floor/whitepurplecorner/west +/turf/open/floor{dir=8;icon_state="whitered";} : /turf/open/floor/whitered/west +/turf/open/floor{dir=8;icon_state="whiteredcorner";} : /turf/open/floor/whiteredcorner/west +/turf/open/floor{dir=8;icon_state="whiteyellow";} : /turf/open/floor/whiteyellow/west +/turf/open/floor{dir=8;icon_state="whiteyellowcorner";} : /turf/open/floor/whiteyellowcorner/west +/turf/open/floor{dir=9;icon_state="asteroidwarning";} : /turf/open/floor/asteroidwarning/northwest +/turf/open/floor{dir=9;icon_state="brown";} : /turf/open/floor/brown/northwest +/turf/open/floor{dir=9;icon_state="darkblue2";} : /turf/open/floor/darkblue2/northwest +/turf/open/floor{dir=9;icon_state="darkbrown2";} : /turf/open/floor/darkbrown2/northwest +/turf/open/floor{dir=9;icon_state="darkgreen2";} : /turf/open/floor/darkgreen2/northwest +/turf/open/floor{dir=9;icon_state="darkpurple2";} : /turf/open/floor/darkpurple2/northwest +/turf/open/floor{dir=9;icon_state="darkred2";} : /turf/open/floor/darkred2/northwest +/turf/open/floor{dir=9;icon_state="darkyellow2";} : /turf/open/floor/darkyellow2/northwest +/turf/open/floor{dir=9;icon_state="green";} : /turf/open/floor/green/northwest +/turf/open/floor{dir=9;icon_state="podhatch";} : /turf/open/floor/podhatch/northwest +/turf/open/floor{dir=9;icon_state="purple";} : /turf/open/floor/purple/northwest +/turf/open/floor{dir=9;icon_state="red";} : /turf/open/floor/red/northwest +/turf/open/floor{dir=9;icon_state="redfull";} : /turf/open/floor/redfull/northwest +/turf/open/floor{dir=9;icon_state="warning";} : /turf/open/floor/warning/northwest +/turf/open/floor{dir=9;icon_state="warnwhite";} : /turf/open/floor/warnwhite/northwest +/turf/open/floor{dir=9;icon_state="whiteblue";} : /turf/open/floor/whiteblue/northwest +/turf/open/floor{dir=9;icon_state="whitegreen";} : /turf/open/floor/whitegreen/northwest +/turf/open/floor{dir=9;icon_state="whitegreen_v";} : /turf/open/floor/whitegreen_v/northwest +/turf/open/floor{dir=9;icon_state="whitepurple";} : /turf/open/floor/whitepurple/northwest +/turf/open/floor{dir=9;icon_state="whitered";} : /turf/open/floor/whitered/northwest +/turf/open/floor{dir=9;icon_state="whiteyellow";} : /turf/open/floor/whiteyellow/northwest +/turf/open/floor{icon_state="asteroid";} : /turf/open/floor/asteroid +/turf/open/floor{icon_state="asteroidfloor";dir=1;} : /turf/open/floor/asteroidfloor/north +/turf/open/floor{icon_state="asteroidplating";} : /turf/open/floor/asteroidplating +/turf/open/floor{icon_state="asteroidwarning";dir=10;} : /turf/open/floor/asteroidwarning/southwest +/turf/open/floor{icon_state="asteroidwarning";dir=1;} : /turf/open/floor/asteroidwarning/north +/turf/open/floor{icon_state="asteroidwarning";dir=4;} : /turf/open/floor/asteroidwarning/east +/turf/open/floor{icon_state="asteroidwarning";dir=5;} : /turf/open/floor/asteroidwarning/northeast +/turf/open/floor{icon_state="asteroidwarning";dir=6;} : /turf/open/floor/asteroidwarning/southeast +/turf/open/floor{icon_state="asteroidwarning";dir=8;} : /turf/open/floor/asteroidwarning/west +/turf/open/floor{icon_state="asteroidwarning";dir=9;} : /turf/open/floor/asteroidwarning/northwest +/turf/open/floor{icon_state="asteroidwarning";} : /turf/open/floor/asteroidwarning +/turf/open/floor{icon_state="bar";} : /turf/open/floor/bar +/turf/open/floor{icon_state="bcircuit";} : /turf/open/floor/bcircuit +/turf/open/floor{icon_state="bluecorner";} : /turf/open/floor/bluecorner +/turf/open/floor{icon_state="blueyellowfull";} : /turf/open/floor/blueyellowfull +/turf/open/floor{icon_state="bot";} : /turf/open/floor/bot +/turf/open/floor{icon_state="cafeteria";} : /turf/open/floor/cafeteria +/turf/open/floor{icon_state="chapel";} : /turf/open/floor/chapel +/turf/open/floor{icon_state="cmo";} : /turf/open/floor/cmo +/turf/open/floor{icon_state="cult";} : /turf/open/floor/cult +/turf/open/floor{icon_state="damaged2";} : /turf/open/floor/damaged2 +/turf/open/floor{icon_state="damaged3";} : /turf/open/floor/damaged3 +/turf/open/floor{icon_state="damaged4";} : /turf/open/floor/damaged4 +/turf/open/floor{icon_state="damaged5";} : /turf/open/floor/damaged5 +/turf/open/floor{icon_state="dark";} : /turf/open/floor/dark +/turf/open/floor{icon_state="dark2";} : /turf/open/floor/dark2 +/turf/open/floor{icon_state="darkblue2";} : /turf/open/floor/darkblue2 +/turf/open/floor{icon_state="darkbluecorners2";} : /turf/open/floor/darkbluecorners2 +/turf/open/floor{icon_state="darkbrown2";} : /turf/open/floor/darkbrown2 +/turf/open/floor{icon_state="darkbrowncorners2";} : /turf/open/floor/darkbrowncorners2 +/turf/open/floor{icon_state="darkgreen2";} : /turf/open/floor/darkgreen2 +/turf/open/floor{icon_state="darkgreencorners2";} : /turf/open/floor/darkgreencorners2 +/turf/open/floor{icon_state="darkish";} : /turf/open/floor/darkish +/turf/open/floor{icon_state="darkpurple2";} : /turf/open/floor/darkpurple2 +/turf/open/floor{icon_state="darkpurplecorners2";} : /turf/open/floor/darkpurplecorners2 +/turf/open/floor{icon_state="darkred2";} : /turf/open/floor/darkred2 +/turf/open/floor{icon_state="darkredcorners2";} : /turf/open/floor/darkredcorners2 +/turf/open/floor{icon_state="darkyellow2";} : /turf/open/floor/darkyellow2 +/turf/open/floor{icon_state="darkyellowcorners2";} : /turf/open/floor/darkyellowcorners2 +/turf/open/floor{icon_state="delivery";} : /turf/open/floor/delivery +/turf/open/floor{icon_state="floor4";} : /turf/open/floor/floor4 +/turf/open/floor{icon_state="floorscorched1";} : /turf/open/floor/floorscorched1 +/turf/open/floor{icon_state="floorscorched2";} : /turf/open/floor/floorscorched2 +/turf/open/floor{icon_state="freezerfloor";} : /turf/open/floor/freezerfloor +/turf/open/floor{icon_state="grimy";} : /turf/open/floor/grimy +/turf/open/floor{icon_state="hydrofloor";} : /turf/open/floor/hydrofloor +/turf/open/floor{icon_state="loadingarea";} : /turf/open/floor/loadingarea +/turf/open/floor{icon_state="neutral";} : /turf/open/floor/neutral +/turf/open/floor{icon_state="panelscorched";} : /turf/open/floor/panelscorched +/turf/open/floor{icon_state="platebot";} : /turf/open/floor/platebot +/turf/open/floor{icon_state="platingdmg1";} : /turf/open/floor/platingdmg1 +/turf/open/floor{icon_state="platingdmg3";} : /turf/open/floor/platingdmg3 +/turf/open/floor{icon_state="podhatch";} : /turf/open/floor/podhatch +/turf/open/floor{icon_state="podhatchfloor";} : /turf/open/floor/podhatchfloor +/turf/open/floor{icon_state="purple";} : /turf/open/floor/purple +/turf/open/floor{icon_state="purplecorner";} : /turf/open/floor/purplecorner +/turf/open/floor{icon_state="rampbottom";} : /turf/open/floor/rampbottom +/turf/open/floor{icon_state="red";} : /turf/open/floor/red +/turf/open/floor{icon_state="redcorner";} : /turf/open/floor/redcorner +/turf/open/floor{icon_state="redyellowfull";} : /turf/open/floor/redyellowfull +/turf/open/floor{icon_state="vault";} : /turf/open/floor/vault2 +/turf/open/floor{icon_state="wall_thermite";} : /turf/open/floor/wall_thermite +/turf/open/floor{icon_state="warning";} : /turf/open/floor/warning +/turf/open/floor{icon_state="warnwhite";dir=1;} : /turf/open/floor/warnwhite/north +/turf/open/floor{icon_state="warnwhite";} : /turf/open/floor/warnwhite +/turf/open/floor{icon_state="white";} : /turf/open/floor/white +/turf/open/floor{icon_state="whiteblue";} : /turf/open/floor/whiteblue +/turf/open/floor{icon_state="whitebluecorner";} : /turf/open/floor/whitebluecorner +/turf/open/floor{icon_state="whitebluefull";} : /turf/open/floor/whitebluefull +/turf/open/floor{icon_state="whitegreen";} : /turf/open/floor/whitegreen +/turf/open/floor{icon_state="whitegreencorner";} : /turf/open/floor/whitegreencorner +/turf/open/floor{icon_state="whitegreenfull";} : /turf/open/floor/whitegreenfull +/turf/open/floor{icon_state="whitepurple";} : /turf/open/floor/whitepurple +/turf/open/floor{icon_state="whitepurplecorner";} : /turf/open/floor/whitepurplecorner +/turf/open/floor{icon_state="whitepurplefull";} : /turf/open/floor/whitepurplefull +/turf/open/floor{icon_state="whitered";} : /turf/open/floor/whitered +/turf/open/floor{icon_state="whiteredcorner";} : /turf/open/floor/whiteredcorner +/turf/open/floor{icon_state="whiteredfull";} : /turf/open/floor/whiteredfull +/turf/open/floor{icon_state="whiteyellow";} : /turf/open/floor/whiteyellow +/turf/open/floor{icon_state="whiteyellowcorner";} : /turf/open/floor/whiteyellowcorner +/turf/open/floor{icon_state="whiteyellowfull";} : /turf/open/floor/whiteyellowfull +/turf/open/floor{icon_state="wood";} : /turf/open/floor/wood +/turf/open/floor{icon_state="yellowfull";} : /turf/open/floor/yellowfull +/turf/open/gm/coast{dir=1;} : /turf/open/gm/coast/south +/turf/open/gm/coast{dir=4;icon_state="beachcorner";} : /turf/open/gm/coast/beachcorner/south_east +/turf/open/gm/coast{dir=8;icon_state="beachcorner2";} : /turf/open/gm/coast/beachcorner2/south_east +/turf/open/gm/coast{dir=8;} : /turf/open/gm/coast/east +/turf/open/gm/coast{dir=9;} : /turf/open/gm/coast/south_east +/turf/open/gm/dirtgrassborder/weedable{icon_state="grass1";} : /turf/open/gm/dirtgrassborder/weedable/grass1 +/turf/open/gm/dirtgrassborder2{dir=1;} : /turf/open/gm/dirtgrassborder2/north +/turf/open/gm/dirtgrassborder2{dir=4;} : /turf/open/gm/dirtgrassborder2/east +/turf/open/gm/dirtgrassborder2{dir=8;} : /turf/open/gm/dirtgrassborder2/west +/turf/open/gm/dirtgrassborder2{icon_state="wall2";} : /turf/open/gm/dirtgrassborder2/wall2 +/turf/open/gm/dirtgrassborder2{icon_state="wall3";} : /turf/open/gm/dirtgrassborder2/wall3 +/turf/open/gm/dirtgrassborder{dir=1;icon_state="grassdirt_corner";} : /turf/open/gm/dirtgrassborder/grassdirt_corner/north_east +/turf/open/gm/dirtgrassborder{dir=1;icon_state="grassdirt_corner2";} : /turf/open/gm/dirtgrassborder/grassdirt_corner2/south_east +/turf/open/gm/dirtgrassborder{dir=4;icon_state="grassdirt_corner";} : /turf/open/gm/dirtgrassborder/grassdirt_corner/south_east +/turf/open/gm/dirtgrassborder{dir=4;icon_state="grassdirt_corner2";} : /turf/open/gm/dirtgrassborder/grassdirt_corner2/north_east +/turf/open/gm/dirtgrassborder{dir=4;} : /turf/open/gm/dirtgrassborder/west +/turf/open/gm/dirtgrassborder{dir=8;} : /turf/open/gm/dirtgrassborder/east +/turf/open/gm/dirtgrassborder{icon_state="desert";} : /turf/open/gm/dirtgrassborder/desert +/turf/open/gm/dirtgrassborder{icon_state="desert0";} : /turf/open/gm/dirtgrassborder/desert0 +/turf/open/gm/dirtgrassborder{icon_state="desert1";} : /turf/open/gm/dirtgrassborder/desert1 +/turf/open/gm/dirtgrassborder{icon_state="desert2";} : /turf/open/gm/dirtgrassborder/desert2 +/turf/open/gm/dirtgrassborder{icon_state="desert3";} : /turf/open/gm/dirtgrassborder/desert3 +/turf/open/gm/dirtgrassborder{icon_state="desert_dug";} : /turf/open/gm/dirtgrassborder/desert_dug +/turf/open/gm/dirt{icon_state="desert0";} : /turf/open/gm/dirt/desert0 +/turf/open/gm/dirt{icon_state="desert1";} : /turf/open/gm/dirt/desert1 +/turf/open/gm/dirt{icon_state="desert2";} : /turf/open/gm/dirt/desert2 +/turf/open/gm/dirt{icon_state="desert3";} : /turf/open/gm/dirt/desert3 +/turf/open/gm/dirt{icon_state="desert_dug";} : /turf/open/gm/dirt/desert_dug +/turf/open/gm/grass{icon_state="grass2";} : /turf/open/gm/grass/grass2 +/turf/open/gm/river/desert/deep{base_river_slowdown=0;} : /turf/open/gm/river/desert/deep/no_slowdown +/turf/open/gm/river/desert/deep{icon='icons/turf/floors/desert_water_toxic.dmi';} : /turf/open/gm/river/desert/deep/toxic +/turf/open/gm/river/desert/shallow_corner{dir=1;} : /turf/open/gm/river/desert/shallow_corner/north +/turf/open/gm/river/desert/shallow_corner{dir=4;} : /turf/open/gm/river/desert/shallow_corner/east +/turf/open/gm/river/desert/shallow_corner{dir=8;} : /turf/open/gm/river/desert/shallow_corner/west +/turf/open/gm/river/desert/shallow_edge/covered{dir=1;} : /turf/open/gm/river/desert/shallow_edge/covered/north +/turf/open/gm/river/desert/shallow_edge/covered{dir=4;} : /turf/open/gm/river/desert/shallow_edge/covered/east +/turf/open/gm/river/desert/shallow_edge/covered{dir=5;} : /turf/open/gm/river/desert/shallow_edge/covered/northeast +/turf/open/gm/river/desert/shallow_edge/covered{dir=8;} : /turf/open/gm/river/desert/shallow_edge/covered/west +/turf/open/gm/river/desert/shallow_edge{dir=10;} : /turf/open/gm/river/desert/shallow_edge/southwest +/turf/open/gm/river/desert/shallow_edge{dir=1;} : /turf/open/gm/river/desert/shallow_edge/north +/turf/open/gm/river/desert/shallow_edge{dir=4;} : /turf/open/gm/river/desert/shallow_edge/east +/turf/open/gm/river/desert/shallow_edge{dir=5;} : /turf/open/gm/river/desert/shallow_edge/northeast +/turf/open/gm/river/desert/shallow_edge{dir=6;} : /turf/open/gm/river/desert/shallow_edge/southeast +/turf/open/gm/river/desert/shallow_edge{dir=8;} : /turf/open/gm/river/desert/shallow_edge/west +/turf/open/gm/river/desert/shallow_edge{dir=9;} : /turf/open/gm/river/desert/shallow_edge/northwest +/turf/open/gm/river/desert/shallow{icon='icons/turf/floors/desert_water_toxic.dmi';} : /turf/open/gm/river/desert/shallow/toxic +/turf/open/gm/river/desert/shallow{name="pool";} : /turf/open/gm/river/desert/shallow/pool +/turf/open/gm/river/ocean{name="deep ocean";default_name="deep ocean";} : /turf/open/gm/river/ocean/deep_ocean +/turf/open/gm/river{color="#990000";name="pool";} : /turf/open/gm/river/darkred_pool +/turf/open/gm/river{color="#990000";} : /turf/open/gm/river/darkred +/turf/open/gm/river{color="#995555";name="pool";} : /turf/open/gm/river/red_pool +/turf/open/gm/river{color="#995555";} : /turf/open/gm/river/red +/turf/open/gm/river{name="pool";} : /turf/open/gm/river/pool +/turf/open/gm/river{name="shallow ocean";default_name="shallow ocean";} : /turf/open/gm/river/shallow_ocean_shallow_ocean +/turf/open/jungle/impenetrable{icon_state="grass_clear";} : /turf/open/jungle/impenetrable/grass_clear +/turf/open/jungle{bushes_spawn=0;icon_state="grass_impenetrable";} : /turf/open/jungle/impenetrable +/turf/open/mars_cave{icon_state="mars_cave_10";} : /turf/open/mars_cave/mars_cave_10 +/turf/open/mars_cave{icon_state="mars_cave_11";} : /turf/open/mars_cave/mars_cave_11 +/turf/open/mars_cave{icon_state="mars_cave_12";} : /turf/open/mars_cave/mars_cave_12 +/turf/open/mars_cave{icon_state="mars_cave_13";} : /turf/open/mars_cave/mars_cave_13 +/turf/open/mars_cave{icon_state="mars_cave_14";} : /turf/open/mars_cave/mars_cave_14 +/turf/open/mars_cave{icon_state="mars_cave_15";} : /turf/open/mars_cave/mars_cave_15 +/turf/open/mars_cave{icon_state="mars_cave_16";} : /turf/open/mars_cave/mars_cave_16 +/turf/open/mars_cave{icon_state="mars_cave_17";} : /turf/open/mars_cave/mars_cave_17 +/turf/open/mars_cave{icon_state="mars_cave_18";} : /turf/open/mars_cave/mars_cave_18 +/turf/open/mars_cave{icon_state="mars_cave_19";} : /turf/open/mars_cave/mars_cave_19 +/turf/open/mars_cave{icon_state="mars_cave_2";} : /turf/open/mars_cave/mars_cave_2 +/turf/open/mars_cave{icon_state="mars_cave_20";} : /turf/open/mars_cave/mars_cave_20 +/turf/open/mars_cave{icon_state="mars_cave_22";} : /turf/open/mars_cave/mars_cave_22 +/turf/open/mars_cave{icon_state="mars_cave_23";} : /turf/open/mars_cave/mars_cave_23 +/turf/open/mars_cave{icon_state="mars_cave_3";} : /turf/open/mars_cave/mars_cave_3 +/turf/open/mars_cave{icon_state="mars_cave_4";} : /turf/open/mars_cave/mars_cave_4 +/turf/open/mars_cave{icon_state="mars_cave_5";} : /turf/open/mars_cave/mars_cave_5 +/turf/open/mars_cave{icon_state="mars_cave_6";} : /turf/open/mars_cave/mars_cave_6 +/turf/open/mars_cave{icon_state="mars_cave_7";} : /turf/open/mars_cave/mars_cave_7 +/turf/open/mars_cave{icon_state="mars_cave_8";} : /turf/open/mars_cave/mars_cave_8 +/turf/open/mars_cave{icon_state="mars_cave_9";} : /turf/open/mars_cave/mars_cave_9 +/turf/open/mars_cave{icon_state="mars_dirt_4";} : /turf/open/mars_cave/mars_dirt_4 +/turf/open/mars_cave{icon_state="mars_dirt_5";} : /turf/open/mars_cave/mars_dirt_5 +/turf/open/mars_cave{icon_state="mars_dirt_6";} : /turf/open/mars_cave/mars_dirt_6 +/turf/open/mars_cave{icon_state="mars_dirt_7";} : /turf/open/mars_cave/mars_dirt_7 +/turf/open/mars_dirt{icon_state="mars_cave_10";} : /turf/open/mars_dirt/mars_cave_10 +/turf/open/mars_dirt{icon_state="mars_cave_11";} : /turf/open/mars_dirt/mars_cave_11 +/turf/open/mars_dirt{icon_state="mars_cave_3";} : /turf/open/mars_dirt/mars_cave_3 +/turf/open/mars_dirt{icon_state="mars_cave_6";} : /turf/open/mars_dirt/mars_cave_6 +/turf/open/mars_dirt{icon_state="mars_cave_7";} : /turf/open/mars_dirt/mars_cave_7 +/turf/open/mars_dirt{icon_state="mars_cave_8";} : /turf/open/mars_dirt/mars_cave_8 +/turf/open/mars{icon_state="mars_cave_10";} : /turf/open/mars/mars_cave_10 +/turf/open/mars{icon_state="mars_dirt_10";} : /turf/open/mars/mars_dirt_10 +/turf/open/mars{icon_state="mars_dirt_11";} : /turf/open/mars/mars_dirt_11 +/turf/open/mars{icon_state="mars_dirt_12";} : /turf/open/mars/mars_dirt_12 +/turf/open/mars{icon_state="mars_dirt_13";} : /turf/open/mars/mars_dirt_13 +/turf/open/mars{icon_state="mars_dirt_14";} : /turf/open/mars/mars_dirt_14 +/turf/open/mars{icon_state="mars_dirt_3";} : /turf/open/mars/mars_dirt_3 +/turf/open/mars{icon_state="mars_dirt_5";} : /turf/open/mars/mars_dirt_5 +/turf/open/mars{icon_state="mars_dirt_6";} : /turf/open/mars/mars_dirt_6 +/turf/open/mars{icon_state="mars_dirt_8";} : /turf/open/mars/mars_dirt_8 +/turf/open/mars{icon_state="mars_dirt_9";} : /turf/open/mars/mars_dirt_9 +/turf/open/organic/grass{desc="It'll get in your shoes no matter what you do.";name="astroturf";} : /turf/open/organic/grass/astroturf +/turf/open/organic/grass{name="astroturf";} : /turf/open/organic/grass/astroturf +/turf/open/shuttle/dropship{icon_state="floor8";} : /turf/open/shuttle/dropship/light_grey_single_wide_left_to_right +/turf/open/shuttle/dropship{icon_state="rasputin10";supports_surgery=1;} : /turf/open/shuttle/dropship/can_surgery/light_grey_top +/turf/open/shuttle/dropship{icon_state="rasputin10";} : /turf/open/shuttle/dropship/light_grey_top +/turf/open/shuttle/dropship{icon_state="rasputin12";supports_surgery=1;} : /turf/open/shuttle/dropship/can_surgery/dark_grey_bottom +/turf/open/shuttle/dropship{icon_state="rasputin12";} : /turf/open/shuttle/dropship/dark_grey_bottom +/turf/open/shuttle/dropship{icon_state="rasputin13";} : /turf/open/shuttle/dropship/light_grey_middle +/turf/open/shuttle/dropship{icon_state="rasputin15";} : /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down +/turf/open/shuttle/dropship{icon_state="rasputin3";} : /turf/open/shuttle/dropship/light_grey_single_wide_up_to_down +/turf/open/shuttle/dropship{icon_state="rasputin4";} : /turf/open/shuttle/dropship/light_grey_bottom_left +/turf/open/shuttle/dropship{icon_state="rasputin5";} : /turf/open/shuttle/dropship/light_grey_left_to_right +/turf/open/shuttle/dropship{icon_state="rasputin6";} : /turf/open/shuttle/dropship/light_grey_top_left +/turf/open/shuttle/dropship{icon_state="rasputin7";} : /turf/open/shuttle/dropship/light_grey_top_right +/turf/open/shuttle/dropship{icon_state="rasputin8";} : /turf/open/shuttle/dropship/light_grey_bottom_right +/turf/open/shuttle/escapepod{icon_state="floor0";dir=1;} : /turf/open/shuttle/escapepod/floor0/north +/turf/open/shuttle/escapepod{icon_state="floor0";dir=8;} : /turf/open/shuttle/escapepod/floor0/west +/turf/open/shuttle/escapepod{icon_state="floor0";} : /turf/open/shuttle/escapepod/floor0 +/turf/open/shuttle/escapepod{icon_state="floor1";dir=4;} : /turf/open/shuttle/escapepod/floor1/east +/turf/open/shuttle/escapepod{icon_state="floor1";} : /turf/open/shuttle/escapepod/floor1 +/turf/open/shuttle/escapepod{icon_state="floor11";} : /turf/open/shuttle/escapepod/floor11 +/turf/open/shuttle/escapepod{icon_state="floor12";} : /turf/open/shuttle/escapepod/floor12 +/turf/open/shuttle/escapepod{icon_state="floor2";} : /turf/open/shuttle/escapepod/floor2 +/turf/open/shuttle/escapepod{icon_state="floor4";} : /turf/open/shuttle/escapepod/floor4 +/turf/open/shuttle/escapepod{icon_state="floor5";} : /turf/open/shuttle/escapepod/floor5 +/turf/open/shuttle/escapepod{icon_state="floor7";} : /turf/open/shuttle/escapepod/floor7 +/turf/open/shuttle/escapepod{icon_state="floor8";} : /turf/open/shuttle/escapepod/floor8 +/turf/open/shuttle/escapepod{icon_state="floor9";} : /turf/open/shuttle/escapepod/floor9 +/turf/open/shuttle/escapepod{dir=1;} : /turf/open/shuttle/escapepod/north +/turf/open/shuttle/escapepod{dir=4;} : /turf/open/shuttle/escapepod/east +/turf/open/shuttle/escapepod{dir=8;} : /turf/open/shuttle/escapepod/west +/turf/open/shuttle/lifeboat{dir=1;icon_state="plating_striped";} : /turf/open/shuttle/lifeboat/plating_striped/north +/turf/open/shuttle/lifeboat{icon_state="plate";} : /turf/open/shuttle/lifeboat/plate +/turf/open/shuttle/lifeboat{icon_state="plating_striped";} : /turf/open/shuttle/lifeboat/plating_striped +/turf/open/shuttle/lifeboat{icon_state="test_floor4";} : /turf/open/shuttle/lifeboat/test_floor4 +/turf/open/shuttle/vehicle{icon_state="dark_sterile";} : /turf/open/shuttle/vehicle/dark_sterile +/turf/open/shuttle/vehicle{icon_state="dark_sterile_green_11";} : /turf/open/shuttle/vehicle/dark_sterile_green_11 +/turf/open/shuttle/vehicle{icon_state="dark_sterile_green_12";} : /turf/open/shuttle/vehicle/dark_sterile_green_12 +/turf/open/shuttle/vehicle{icon_state="dark_sterile_green_13";} : /turf/open/shuttle/vehicle/dark_sterile_green_13 +/turf/open/shuttle/vehicle{icon_state="dark_sterile_green_14";} : /turf/open/shuttle/vehicle/dark_sterile_green_14 +/turf/open/shuttle/vehicle{icon_state="dark_sterile_green_5";} : /turf/open/shuttle/vehicle/dark_sterile_green_5 +/turf/open/shuttle/vehicle{icon_state="dark_sterile_green_6";} : /turf/open/shuttle/vehicle/dark_sterile_green_6 +/turf/open/shuttle/vehicle{icon_state="dark_sterile_green_7";} : /turf/open/shuttle/vehicle/dark_sterile_green_7 +/turf/open/shuttle/vehicle{icon_state="dark_sterile_green_8";} : /turf/open/shuttle/vehicle/dark_sterile_green_8 +/turf/open/shuttle/vehicle{icon_state="floor_0_1_15";} : /turf/open/shuttle/vehicle/floor_0_1_15 +/turf/open/shuttle/vehicle{icon_state="floor_1_1";} : /turf/open/shuttle/vehicle/floor_1_1 +/turf/open/shuttle/vehicle{icon_state="floor_1_10";} : /turf/open/shuttle/vehicle/floor_1_10 +/turf/open/shuttle/vehicle{icon_state="floor_1_11";} : /turf/open/shuttle/vehicle/floor_1_11 +/turf/open/shuttle/vehicle{icon_state="floor_1_12";} : /turf/open/shuttle/vehicle/floor_1_12 +/turf/open/shuttle/vehicle{icon_state="floor_1_13";} : /turf/open/shuttle/vehicle/floor_1_13 +/turf/open/shuttle/vehicle{icon_state="floor_1_14";} : /turf/open/shuttle/vehicle/floor_1_14 +/turf/open/shuttle/vehicle{icon_state="floor_1_1_3";} : /turf/open/shuttle/vehicle/floor_1_1_3 +/turf/open/shuttle/vehicle{icon_state="floor_1_2";} : /turf/open/shuttle/vehicle/floor_1_2 +/turf/open/shuttle/vehicle{icon_state="floor_1_3_3";} : /turf/open/shuttle/vehicle/floor_1_3_3 +/turf/open/shuttle/vehicle{icon_state="floor_1_5";} : /turf/open/shuttle/vehicle/floor_1_5 +/turf/open/shuttle/vehicle{icon_state="floor_1_6";} : /turf/open/shuttle/vehicle/floor_1_6 +/turf/open/shuttle/vehicle{icon_state="floor_1_7";} : /turf/open/shuttle/vehicle/floor_1_7 +/turf/open/shuttle/vehicle{icon_state="floor_1_8";} : /turf/open/shuttle/vehicle/floor_1_8 +/turf/open/shuttle/vehicle{icon_state="floor_1_9";} : /turf/open/shuttle/vehicle/floor_1_9 +/turf/open/shuttle/vehicle{icon_state="floor_3";} : /turf/open/shuttle/vehicle/floor_3 +/turf/open/shuttle/vehicle{icon_state="floor_3_10_1";} : /turf/open/shuttle/vehicle/floor_3_10_1 +/turf/open/shuttle/vehicle{icon_state="floor_3_11";} : /turf/open/shuttle/vehicle/floor_3_11 +/turf/open/shuttle/vehicle{icon_state="floor_3_12";} : /turf/open/shuttle/vehicle/floor_3_12 +/turf/open/shuttle/vehicle{icon_state="floor_3_13";} : /turf/open/shuttle/vehicle/floor_3_13 +/turf/open/shuttle/vehicle{icon_state="floor_3_1_1";} : /turf/open/shuttle/vehicle/floor_3_1_1 +/turf/open/shuttle/vehicle{icon_state="floor_3_3";} : /turf/open/shuttle/vehicle/floor_3_3 +/turf/open/shuttle/vehicle{icon_state="floor_3_4";} : /turf/open/shuttle/vehicle/floor_3_4 +/turf/open/shuttle/vehicle{icon_state="floor_3_5";} : /turf/open/shuttle/vehicle/floor_3_5 +/turf/open/shuttle/vehicle{icon_state="floor_3_6";} : /turf/open/shuttle/vehicle/floor_3_6 +/turf/open/shuttle/vehicle{icon_state="floor_3_7";} : /turf/open/shuttle/vehicle/floor_3_7 +/turf/open/shuttle/vehicle{icon_state="floor_3_7_1";} : /turf/open/shuttle/vehicle/floor_3_7_1 +/turf/open/shuttle/vehicle{icon_state="floor_3_8";} : /turf/open/shuttle/vehicle/floor_3_8 +/turf/open/shuttle/vehicle{icon_state="floor_3_8_1";} : /turf/open/shuttle/vehicle/floor_3_8_1 +/turf/open/shuttle/vehicle{icon_state="floor_3_9";} : /turf/open/shuttle/vehicle/floor_3_9 +/turf/open/shuttle/vehicle{icon_state="floor_3_9_1";} : /turf/open/shuttle/vehicle/floor_3_9_1 +/turf/open/shuttle{icon_state="floor4";} : /turf/open/shuttle/bright_red +/turf/open/shuttle{icon_state="floor6";} : /turf/open/shuttle/red +/turf/open/shuttle{icon_state="floor7";} : /turf/open/shuttle/black + +/turf/open/shuttle/dropship/can_surgery/dark_grey : /turf/open/shuttle/dropship/can_surgery/medium_grey_single_wide_up_to_down +/turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_top_to_bottom : /turf/open/shuttle/dropship/can_surgery/light_grey_single_wide_up_to_down \ No newline at end of file