diff --git a/code/game/machinery/computer/dropship_weapons.dm b/code/game/machinery/computer/dropship_weapons.dm index a10a28a2ab..f7c35a0430 100644 --- a/code/game/machinery/computer/dropship_weapons.dm +++ b/code/game/machinery/computer/dropship_weapons.dm @@ -695,10 +695,10 @@ if(CEILING_GLASS) is_outside = TRUE if(!is_outside && !cavebreaker) //cavebreaker doesn't care - to_chat(weapon_operator, SPAN_WARNING("INVALID TARGET: target must be visible from high altitude.")) + to_chat(weapon_operator, SPAN_WARNING("WARNING: Target obstructed by terrain features.")) return FALSE if (protected_by_pylon(TURF_PROTECTION_CAS, TU)) - to_chat(weapon_operator, SPAN_WARNING("INVALID TARGET: biological-pattern interference with signal.")) + to_chat(weapon_operator, SPAN_WARNING("WARNING: Signal garbled, launch aborted.")) return FALSE if(!DEW.ammo_equipped.can_fire_at(TU, weapon_operator)) return FALSE @@ -808,10 +808,10 @@ if (!istype(dropship)) return FALSE if (!dropship.in_flyby || dropship.mode != SHUTTLE_CALL) - to_chat(user, SPAN_WARNING("Has to be in Fly By mode")) + to_chat(user, SPAN_WARNING("You must be making a flyby!")) return FALSE if (dropship.timer && dropship.timeLeft(1) < firemission_envelope.flyoff_period) - to_chat(user, SPAN_WARNING("Not enough time to complete the Fire Mission")) + to_chat(user, SPAN_WARNING("Not enough time on station to complete the firemission.")) return FALSE var/datum/cas_signal/recorded_loc = firemission_envelope.recorded_loc var/obj/source = recorded_loc.signal_loc @@ -847,7 +847,7 @@ return if(firemission_envelope.recorded_loc.obstructed_signal()) if(firemission_envelope.user_is_guided(user)) - to_chat(user, SPAN_WARNING("Signal Obstructed. You have to go in blind.")) + to_chat(user, SPAN_WARNING("Signal obstructed. You have to go in blind.")) return var/sx = 0 var/sy = 0 @@ -873,7 +873,7 @@ var/area/laser_area = get_area(shootloc) if(!istype(laser_area) || CEILING_IS_PROTECTED(laser_area.ceiling, CEILING_PROTECTION_TIER_1)) if(firemission_envelope.user_is_guided(user)) - to_chat(user, SPAN_WARNING("Vision Obstructed. You have to go in blind.")) + to_chat(user, SPAN_WARNING("Vision obstructed. You have to go in blind.")) firemission_envelope.change_current_loc() else firemission_envelope.change_current_loc(shootloc) diff --git a/code/game/machinery/vending/vending_types.dm b/code/game/machinery/vending/vending_types.dm index fb824e7397..b671e3a133 100644 --- a/code/game/machinery/vending/vending_types.dm +++ b/code/game/machinery/vending/vending_types.dm @@ -282,6 +282,20 @@ /obj/item/tape/regulation = 5, ) +/obj/structure/machinery/vending/security/upp + name = "\improper People's Police Equipment Vendor" + desc = "A standard security vendor used by security forces of the UPP." + req_access = list(ACCESS_CIVILIAN_BRIG) + products = list( + /obj/item/handcuffs = 8, + /obj/item/reagent_container/spray/pepper = 4, + /obj/item/device/flashlight = 4, + /obj/item/storage/belt/security/MP/UPP = 4, + /obj/item/device/flash = 5, + /obj/item/storage/box/evidence = 6, + /obj/item/tape/regulation = 5, + ) + /obj/structure/machinery/vending/sea name = "\improper SeaTech" desc = "An equipment vendor designed to save lives" diff --git a/code/game/objects/items/devices/motion_detector.dm b/code/game/objects/items/devices/motion_detector.dm index 4dbcc13a72..4b00c6594d 100644 --- a/code/game/objects/items/devices/motion_detector.dm +++ b/code/game/objects/items/devices/motion_detector.dm @@ -225,6 +225,10 @@ range_bounds.set_shape(cur_turf.x, cur_turf.y, detector_range * 2) + var/list/ping_receivers = list() + for(var/mob/living/carbon/human/humans in range(1, human_user)) + ping_receivers += humans + var/list/ping_candidates = SSquadtree.players_in_range(range_bounds, cur_turf.z, QTREE_EXCLUDE_OBSERVER | QTREE_SCAN_MOBS) for(var/A in ping_candidates) @@ -237,7 +241,8 @@ apply_debuff(M) ping_count++ if(human_user) - show_blip(human_user, M) + for(var/mob/living/carbon/human/show_ping_to as anything in ping_receivers) + show_blip(show_ping_to, M) for(var/mob/hologram/holo as anything in GLOB.hologram_list) if(!holo.motion_sensed) diff --git a/code/game/objects/structures/crates_lockers/closets/job_closets.dm b/code/game/objects/structures/crates_lockers/closets/job_closets.dm index 2379837c97..f5fee64f1a 100644 --- a/code/game/objects/structures/crates_lockers/closets/job_closets.dm +++ b/code/game/objects/structures/crates_lockers/closets/job_closets.dm @@ -82,12 +82,6 @@ /obj/structure/closet/secure_closet/platoon_sergeant/Initialize() . = ..() - new /obj/item/weapon/gun/rifle/m41aMK1(src) - new /obj/item/ammo_magazine/rifle/m41aMK1(src) - new /obj/item/ammo_magazine/rifle/m41aMK1(src) - new /obj/item/ammo_magazine/rifle/m41aMK1(src) - new /obj/item/ammo_magazine/rifle/m41aMK1(src) - new /obj/item/ammo_magazine/rifle/m41aMK1(src) new /obj/item/clothing/head/helmet/marine/leader(src) new /obj/item/device/binoculars/range/designator(src) new /obj/item/device/whistle(src) @@ -99,12 +93,6 @@ /obj/structure/closet/secure_closet/platoon_sergeant_forecon/Initialize() . = ..() - new /obj/item/weapon/gun/rifle/m41aMK1(src) - new /obj/item/ammo_magazine/rifle/m41aMK1(src) - new /obj/item/ammo_magazine/rifle/m41aMK1(src) - new /obj/item/ammo_magazine/rifle/m41aMK1(src) - new /obj/item/ammo_magazine/rifle/m41aMK1(src) - new /obj/item/ammo_magazine/rifle/m41aMK1(src) new /obj/item/device/binoculars/range/designator(src) new /obj/item/device/whistle(src) @@ -115,7 +103,6 @@ /obj/structure/closet/secure_closet/squad_sergeant/Initialize() . = ..() - new /obj/item/clothing/head/helmet/marine/rto(src) new /obj/item/device/binoculars/range/designator(src) new /obj/item/device/whistle(src) diff --git a/code/modules/clothing/glasses/night.dm b/code/modules/clothing/glasses/night.dm index 07385310e4..297254ec67 100644 --- a/code/modules/clothing/glasses/night.dm +++ b/code/modules/clothing/glasses/night.dm @@ -89,7 +89,7 @@ /obj/item/clothing/glasses/night/m56_goggles name = "\improper M56 head mounted sight" gender = NEUTER - desc = "A headset and goggles system for the M56 Smartgun. Has a low-res short-range imager, allowing for view of terrain." + desc = "A headset and goggles system for the M56 Smartgun weapon system. Has a low-res short-range imager, allowing for view of terrain." icon = 'icons/obj/items/clothing/glasses.dmi' icon_state = "m56_goggles" deactive_state = "m56_goggles_0" diff --git a/code/modules/clothing/head/head.dm b/code/modules/clothing/head/head.dm index f4f81192ba..4e135a7918 100644 --- a/code/modules/clothing/head/head.dm +++ b/code/modules/clothing/head/head.dm @@ -391,7 +391,7 @@ /obj/item/clothing/head/cmcap/flap name = "\improper USCM expedition cap" - desc = "It's a cap, with flaps. A patch stitched across the front reads \"USS ALMAYER\"." + desc = "A casual cap issued as part of the non-combat uniform. While it only protects from the sun, it's much more comfortable than a helmet. This one comes with flaps to keep the sun off your neck." icon = 'icons/obj/items/clothing/cm_hats.dmi' icon_state = "flapcap" flags_marine_hat = HAT_GARB_OVERLAY diff --git a/code/modules/clothing/head/helmet.dm b/code/modules/clothing/head/helmet.dm index 6ecd2c7cd6..7f796e4a2c 100644 --- a/code/modules/clothing/head/helmet.dm +++ b/code/modules/clothing/head/helmet.dm @@ -952,8 +952,7 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list( flags_inventory = BLOCKSHARPOBJ flags_inv_hide = HIDEEARS|HIDETOPHAIR flags_marine_helmet = HELMET_GARB_OVERLAY - flags_item = MOB_LOCK_ON_EQUIP - specialty = "M45 ghillie" + specialty = "M10 ghillie" /obj/item/clothing/head/helmet/marine/CO name = "\improper M10 pattern commanding officer helmet" diff --git a/code/modules/clothing/suits/marine_armor/smartgunner.dm b/code/modules/clothing/suits/marine_armor/smartgunner.dm index 0b3b1f7635..b1e5fa7494 100644 --- a/code/modules/clothing/suits/marine_armor/smartgunner.dm +++ b/code/modules/clothing/suits/marine_armor/smartgunner.dm @@ -1,6 +1,6 @@ /obj/item/clothing/suit/storage/marine/smartgunner name = "\improper M56 combat harness" - desc = "Lightweight vest composed of ballistic micromesh and a ceramic composite chestplate. Also contains the computers, straps, and bracing required for operating the M56 Smartgun itself." + desc = "Lightweight vest composed of ballistic micromesh and a ceramic composite chestplate for practical protection, as well as the computers, straps, and armature required for operating the M56 Smartgun itself." icon_state = "8" item_state = "armor" armor_laser = CLOTHING_ARMOR_LOW diff --git a/code/modules/gear_presets/uscm.dm b/code/modules/gear_presets/uscm.dm index 506965a88b..acbd85a43d 100644 --- a/code/modules/gear_presets/uscm.dm +++ b/code/modules/gear_presets/uscm.dm @@ -26,7 +26,7 @@ var/ert_squad = FALSE /datum/equipment_preset/uscm/load_status(mob/living/carbon/human/new_human) - new_human.nutrition = rand(NUTRITION_VERYLOW, NUTRITION_LOW) + new_human.nutrition = NUTRITION_VERYLOW /datum/equipment_preset/uscm/load_preset(mob/living/carbon/human/new_human, randomise, count_participant) . = ..() @@ -110,13 +110,6 @@ dress_under = list(/obj/item/clothing/under/marine/dress/blues) dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues) -/datum/equipment_preset/uscm/pfc/load_gear(mob/living/carbon/human/new_human) - var/back_item = /obj/item/storage/backpack/marine/satchel - if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) - back_item = /obj/item/storage/backpack/marine - - new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - /datum/equipment_preset/uscm/pfc/lesser_rank name = parent_type::name + " (Lesser Rank)" paygrades = list(PAY_SHORT_ME1 = JOB_PLAYTIME_TIER_0) @@ -129,13 +122,6 @@ faction_group = list(FACTION_UPP) faction = FACTION_UPP -/datum/equipment_preset/uscm/pfc/upp/load_gear(mob/living/carbon/human/new_human) - var/back_item = /obj/item/storage/backpack/lightpack/upp - if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) - back_item = /obj/item/storage/backpack/marine - - new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - /datum/equipment_preset/uscm/pfc/upp/lesser_rank name = parent_type::name + " (Lesser Rank)" paygrades = list(PAY_SHORT_UE1 = JOB_PLAYTIME_TIER_0) @@ -145,14 +131,6 @@ paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) skills = /datum/skills/pfc/recon -/datum/equipment_preset/uscm/pfc/forecon/load_gear(mob/living/carbon/human/new_human) - var/back_item = /obj/item/storage/backpack/marine/satchel/standard - if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) - back_item = /obj/item/storage/backpack/marine/standard - - new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - - /datum/equipment_preset/uscm/pfc/forecon/lesser_rank name = parent_type::name + " (Lesser Rank)" paygrades = list(PAY_SHORT_ME2 = JOB_PLAYTIME_TIER_0) @@ -174,14 +152,6 @@ dress_under = list(/obj/item/clothing/under/marine/dress/blues) dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues) -/datum/equipment_preset/uscm/sg/load_gear(mob/living/carbon/human/new_human) - var/back_item = /obj/item/storage/backpack/marine/satchel - if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) - back_item = /obj/item/storage/backpack/marine - - new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - - /datum/equipment_preset/uscm/sg/lesser_rank name = parent_type::name + " (Lesser Rank)" paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) @@ -196,13 +166,6 @@ faction_group = list(FACTION_UPP) faction = FACTION_UPP -/datum/equipment_preset/uscm/sg/upp/load_gear(mob/living/carbon/human/new_human) - var/back_item = /obj/item/storage/backpack/lightpack/upp - if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) - back_item = /obj/item/storage/backpack/marine - - new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - /datum/equipment_preset/uscm/sg/upp/lesser_rank name = parent_type::name + " (Lesser Rank)" paygrades = list(PAY_SHORT_UE3 = JOB_PLAYTIME_TIER_0) @@ -212,36 +175,12 @@ paygrades = list(PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_0) skills = /datum/skills/smartgunner/recon -/datum/equipment_preset/uscm/sg/forecon/load_gear(mob/living/carbon/human/new_human) - var/back_item = /obj/item/storage/backpack/marine/satchel/standard - if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) - back_item = /obj/item/storage/backpack/marine/standard - - new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - /datum/equipment_preset/uscm/sg/forecon/lesser_rank name = parent_type::name + " (Lesser Rank)" paygrades = list(PAY_SHORT_ME1 = JOB_PLAYTIME_TIER_0) //*****************************************************************************************************/ -/datum/equipment_preset/uscm/sg/full - name = "USCM Squad Smartgunner (Full)" - flags = EQUIPMENT_PRESET_EXTRA|EQUIPMENT_PRESET_MARINE - -/datum/equipment_preset/uscm/sg/full/load_gear(mob/living/carbon/human/new_human) - new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine(new_human), WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/marine/smartgunner(new_human), WEAR_JACKET) - new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smartgun(new_human), WEAR_J_STORE) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/specrag(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/night/m56_goggles/no_nightvision(new_human), WEAR_EYES) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/smartgunner/full(new_human), WEAR_WAIST) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine(new_human), WEAR_HANDS) - -/datum/equipment_preset/uscm/sg/full/load_status(mob/living/carbon/human/new_human) - return //No cryo munchies - /datum/equipment_preset/uscm/rto name = "USCM Radio Telephone Operator" flags = EQUIPMENT_PRESET_START_OF_ROUND|EQUIPMENT_PRESET_MARINE @@ -255,13 +194,6 @@ minimap_icon = "rto" -/datum/equipment_preset/uscm/rto/load_gear(mob/living/carbon/human/new_human) - var/back_item = /obj/item/storage/backpack/marine/satchel - if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) - back_item = /obj/item/storage/backpack/marine - - new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - /datum/equipment_preset/uscm/rto/lesser_rank name = parent_type::name + " (Lesser Rank)" paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) @@ -390,14 +322,6 @@ dress_under = list(/obj/item/clothing/under/marine/dress/blues) dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues) -/datum/equipment_preset/uscm/spec/load_gear(mob/living/carbon/human/new_human) - var/back_item = /obj/item/storage/backpack/marine/satchel - if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) - back_item = /obj/item/storage/backpack/marine - - new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/specrag(new_human), WEAR_HEAD) - /datum/equipment_preset/uscm/spec/cryo name = "USCM Cryo Squad Weapons Specialist" auto_squad_name = SQUAD_MARINE_CRYO @@ -450,13 +374,6 @@ dress_under = list(/obj/item/clothing/under/marine/dress/blues) dress_over = list(/obj/item/clothing/suit/storage/jacket/marine/dress/blues) -/datum/equipment_preset/uscm/medic/load_gear(mob/living/carbon/human/new_human) - var/back_item = /obj/item/storage/backpack/marine/satchel/medic - if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) - back_item = /obj/item/storage/backpack/marine/medic - - new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - /datum/equipment_preset/uscm/medic/lesser_rank name = parent_type::name + " (Lesser Rank)" paygrades = list(PAY_SHORT_ME3 = JOB_PLAYTIME_TIER_0) @@ -470,13 +387,6 @@ faction_group = list(FACTION_UPP) faction = FACTION_UPP -/datum/equipment_preset/uscm/medic/upp/load_gear(mob/living/carbon/human/new_human) - var/back_item = /obj/item/storage/backpack/lightpack/upp - if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) - back_item = /obj/item/storage/backpack/marine/medic/upp - - new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - /datum/equipment_preset/uscm/medic/upp/lesser_rank name = parent_type::name + " (Lesser Rank)" paygrades = list(PAY_SHORT_UE3 = JOB_PLAYTIME_TIER_0) @@ -487,13 +397,6 @@ paygrades = list(PAY_SHORT_ME5 = JOB_PLAYTIME_TIER_0) skills = /datum/skills/combat_medic/recon -/datum/equipment_preset/uscm/medic/forecon/load_gear(mob/living/carbon/human/new_human) - var/back_item = /obj/item/storage/backpack/marine/satchel/medic/standard - if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) - back_item = /obj/item/storage/backpack/marine/medic/standard - - new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - /datum/equipment_preset/uscm/medic/forecon/lesser_rank name = parent_type::name + " (Lesser Rank)" paygrades = list(PAY_SHORT_ME4 = JOB_PLAYTIME_TIER_0) @@ -512,13 +415,6 @@ skills = /datum/skills/tl minimap_icon = "tl" -/datum/equipment_preset/uscm/tl/load_gear(mob/living/carbon/human/new_human) - var/back_item = /obj/item/storage/backpack/marine/satchel - if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) - back_item = /obj/item/storage/backpack/marine - - new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - /datum/equipment_preset/uscm/tl/upp name = "UPP Squad Sergeant" paygrades = list(PAY_SHORT_UE5 = JOB_PLAYTIME_TIER_0) @@ -527,13 +423,6 @@ faction_group = list(FACTION_UPP) faction = FACTION_UPP -/datum/equipment_preset/uscm/tl/upp/load_gear(mob/living/carbon/human/new_human) - var/back_item = /obj/item/storage/backpack/lightpack/upp - if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) - back_item = /obj/item/storage/backpack/marine - - new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - /datum/equipment_preset/uscm/tl/forecon name = "FORECON Assistant Squad Leader" assignment = "Assistant Squad Leader" @@ -541,13 +430,6 @@ role_comm_title = "aSL" skills = /datum/skills/tl/recon -/datum/equipment_preset/uscm/tl/forecon/load_gear(mob/living/carbon/human/new_human) - var/back_item = /obj/item/storage/backpack/marine/satchel/standard - if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) - back_item = /obj/item/storage/backpack/marine/standard - - new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - /*****************************************************************************************************/ /datum/equipment_preset/uscm/engineer @@ -597,13 +479,6 @@ minimap_icon = "leader" -/datum/equipment_preset/uscm/leader/load_gear(mob/living/carbon/human/new_human) - var/back_item = /obj/item/storage/backpack/marine/satchel - if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) - back_item = /obj/item/storage/backpack/marine - - new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - /datum/equipment_preset/uscm/leader/lesser_rank name = parent_type::name + " (Lesser Rank)" paygrades = list(PAY_SHORT_ME6 = JOB_PLAYTIME_TIER_0) @@ -616,13 +491,6 @@ faction_group = list(FACTION_UPP) faction = FACTION_UPP -/datum/equipment_preset/uscm/leader/upp/load_gear(mob/living/carbon/human/new_human) - var/back_item = /obj/item/storage/backpack/lightpack/upp - if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) - back_item = /obj/item/storage/backpack/marine - - new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - /datum/equipment_preset/uscm/leader/upp/lesser_rank name = parent_type::name + " (Lesser Rank)" paygrades = list(PAY_SHORT_UE6 = JOB_PLAYTIME_TIER_0) @@ -633,13 +501,6 @@ paygrades = list(PAY_SHORT_ME8 = JOB_PLAYTIME_TIER_0) role_comm_title = "SL" -/datum/equipment_preset/uscm/leader/forecon/load_gear(mob/living/carbon/human/new_human) - var/back_item = /obj/item/storage/backpack/marine/satchel/standard - if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) - back_item = /obj/item/storage/backpack/marine/standard - - new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) - /datum/equipment_preset/uscm/leader/forecon/lesser_rank name = parent_type::name + " (Lesser Rank)" paygrades = list(PAY_SHORT_ME7 = JOB_PLAYTIME_TIER_0) diff --git a/code/modules/gear_presets/uscm_ship.dm b/code/modules/gear_presets/uscm_ship.dm index 3ed328295a..dbacca6dca 100644 --- a/code/modules/gear_presets/uscm_ship.dm +++ b/code/modules/gear_presets/uscm_ship.dm @@ -603,7 +603,7 @@ name = "USCM Platoon Commander (PltCo)" flags = EQUIPMENT_PRESET_START_OF_ROUND|EQUIPMENT_PRESET_MARINE - idtype = /obj/item/card/id/silver + idtype = /obj/item/card/id/dogtag assignment = JOB_SO rank = JOB_SO paygrades = list(PAY_SHORT_MO2 = JOB_PLAYTIME_TIER_0) @@ -618,32 +618,40 @@ . = ..() access = get_access(access_list) -/datum/equipment_preset/uscm_ship/so/load_gear(mob/living/carbon/human/new_human) +/datum/equipment_preset/uscm_ship/so/load_status(mob/living/carbon/human/new_human, client/mob_client) + . = ..() + new_human.nutrition = NUTRITION_VERYLOW + if(!new_human.client) + return + + add_verb(new_human.client, /client/proc/commander_rename_platoon) + +/datum/equipment_preset/uscm_ship/so/lesser_rank + name = parent_type::name + " (Lesser Rank)" + paygrades = list(PAY_SHORT_MO1 = JOB_PLAYTIME_TIER_0) + +/datum/equipment_preset/uscm_ship/so/equipped + name = "USCM Platoon Commander (Equipped)" + flags = EQUIPMENT_PRESET_EXTRA|EQUIPMENT_PRESET_MARINE + +/datum/equipment_preset/uscm_ship/so/equipped/load_status(mob/living/carbon/human/new_human) + new_human.nutrition = NUTRITION_NORMAL + +/datum/equipment_preset/uscm_ship/so/equipped/load_gear(mob/living/carbon/human/new_human) var/back_item = /obj/item/storage/backpack/satchel if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) back_item = /obj/item/storage/backpack/marine new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/mcom(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/bridge(new_human), WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/dress(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/m4a3/vp70(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/cmcap/bridge(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new back_item(new_human), WEAR_BACK) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/medium(new_human), WEAR_L_STORE) new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/medium(new_human), WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range(new_human), WEAR_L_HAND) -/datum/equipment_preset/uscm_ship/so/load_status(mob/living/carbon/human/new_human, client/mob_client) - . = ..() - - if(!new_human.client) - return - - add_verb(new_human.client, /client/proc/commander_rename_platoon) - -/datum/equipment_preset/uscm_ship/so/lesser_rank - name = parent_type::name + " (Lesser Rank)" - paygrades = list(PAY_SHORT_MO1 = JOB_PLAYTIME_TIER_0) - /datum/equipment_preset/uscm_ship/so/upp name = "UPP Platoon Commander (PltCo)" languages = list(LANGUAGE_RUSSIAN, LANGUAGE_ENGLISH) @@ -652,10 +660,21 @@ faction = FACTION_UPP access_list = ACCESS_LIST_UPP_PLATOON -/datum/equipment_preset/uscm_ship/so/upp/load_gear(mob/living/carbon/human/new_human) +/datum/equipment_preset/uscm_ship/so/upp/lesser_rank + name = parent_type::name + " (Lesser Rank)" + paygrades = list(PAY_SHORT_UO1 = JOB_PLAYTIME_TIER_0) + +/datum/equipment_preset/uscm_ship/so/upp/equipped + name = "UPP Platoon Commander (Equipped)" + flags = EQUIPMENT_PRESET_EXTRA|EQUIPMENT_PRESET_MARINE + +/datum/equipment_preset/uscm_ship/so/upp/equipped/load_status(mob/living/carbon/human/new_human) + new_human.nutrition = NUTRITION_NORMAL + +/datum/equipment_preset/uscm_ship/so/upp/equipped/load_gear(mob/living/carbon/human/new_human) new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/UPP/command(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/veteran/UPP/officer(new_human), WEAR_BODY) - new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/dress(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/upp(new_human), WEAR_FEET) new_human.equip_to_slot_or_del(new /obj/item/storage/belt/gun/type47/np92(new_human), WEAR_WAIST) new_human.equip_to_slot_or_del(new /obj/item/clothing/head/uppcap/peaked(new_human), WEAR_HEAD) new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/upp(new_human), WEAR_BACK) @@ -663,10 +682,6 @@ new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/general/large(new_human), WEAR_R_STORE) new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range(new_human), WEAR_L_HAND) -/datum/equipment_preset/uscm_ship/so/upp/lesser_rank - name = parent_type::name + " (Lesser Rank)" - paygrades = list(PAY_SHORT_UO1 = JOB_PLAYTIME_TIER_0) - //*****************************************************************************************************/ /datum/equipment_preset/uscm_ship/sea diff --git a/code/modules/mob/new_player/preferences_setup.dm b/code/modules/mob/new_player/preferences_setup.dm index f0dfdc8925..025a4e227d 100644 --- a/code/modules/mob/new_player/preferences_setup.dm +++ b/code/modules/mob/new_player/preferences_setup.dm @@ -263,7 +263,7 @@ var/datum/job/J = GLOB.RoleAuthority.roles_by_name[JOB_CO] return J.gear_preset_whitelist["[JOB_CO][J.get_whitelist_status(owner)]"] if(JOB_SO) - return /datum/equipment_preset/uscm_ship/so + return /datum/equipment_preset/uscm_ship/so/equipped if(JOB_XO) return /datum/equipment_preset/uscm_ship/xo if(JOB_AUXILIARY_OFFICER) diff --git a/code/modules/projectiles/guns/smartgun.dm b/code/modules/projectiles/guns/smartgun.dm index 776cdfd1b9..2de4a60965 100644 --- a/code/modules/projectiles/guns/smartgun.dm +++ b/code/modules/projectiles/guns/smartgun.dm @@ -3,7 +3,7 @@ //Come get some. /obj/item/weapon/gun/smartgun - name = "\improper M56B smartgun" + name = "\improper M56A2 smartgun" desc = "The actual firearm in the 4-piece M56 Smartgun System. Essentially a heavy, mobile machinegun.\nYou may toggle firing restrictions by using a special action.\nAlt-click it to open the feed cover and allow for reloading." icon = 'icons/obj/items/weapons/guns/guns_by_faction/uscm.dmi' icon_state = "m56" diff --git a/code/modules/shuttle/computers/dropship_computer.dm b/code/modules/shuttle/computers/dropship_computer.dm index 9795428a55..f727f173b4 100644 --- a/code/modules/shuttle/computers/dropship_computer.dm +++ b/code/modules/shuttle/computers/dropship_computer.dm @@ -333,8 +333,8 @@ hijack.fire() GLOB.alt_ctrl_disabled = TRUE - marine_announcement("Unscheduled dropship departure detected from operational area. Hijack likely. Shutting down autopilot.", "Dropship Alert", 'sound/AI/hijack.ogg', logging = ARES_LOG_SECURITY) - log_ares_flight("Unknown", "Unscheduled dropship departure detected from operational area. Hijack likely. Shutting down autopilot.") + marine_announcement("Unknown fault in remote flight control. Resolving as possible hijack. Marking dropship as possibly hostile and disconnecting from sensor matrix.", "Dropship Alert", 'sound/misc/notice2.ogg', logging = ARES_LOG_SECURITY) + log_ares_flight("Unknown", "Unknown fault in remote flight control. Resolving as possible hijack. Marking dropship as possibly hostile and disconnecting from sensor matrix.") var/mob/living/carbon/xenomorph/xeno = user var/hivenumber = XENO_HIVE_NORMAL @@ -391,7 +391,7 @@ .["target_destination"] = shuttle?.in_flyby? "Flyby" : shuttle?.destination.name .["door_status"] = is_remote ? list() : shuttle?.get_door_data() - .["has_flyby_skill"] = skillcheck(user, SKILL_PILOT, SKILL_PILOT_EXPERT) + .["has_flyby_skill"] = skillcheck(user, SKILL_PILOT, SKILL_PILOT_TRAINED) // Launch Alarm Variables .["playing_launch_announcement_alarm"] = shuttle?.playing_launch_announcement_alarm @@ -456,7 +456,7 @@ var/dock_id = params["target"] if(dock_id == DROPSHIP_FLYBY_ID) - if(!skillcheck(user, SKILL_PILOT, SKILL_PILOT_EXPERT)) + if(!skillcheck(user, SKILL_PILOT, SKILL_PILOT_TRAINED)) to_chat(user, SPAN_WARNING("You don't have the skill to perform a flyby.")) return FALSE update_equipment(is_optimised, TRUE) @@ -561,7 +561,7 @@ if(!shuttle) return FALSE if (shuttle.mode != SHUTTLE_IDLE && shuttle.mode != SHUTTLE_RECHARGING) - to_chat(usr, SPAN_WARNING("The Launch Announcement Alarm is designed to tell people that you're going to take off soon.")) + to_chat(usr, SPAN_WARNING("The launch warning alarm is only for alerting people to a takeoff.")) return TRUE shuttle.alarm_sound_loop.start() shuttle.playing_launch_announcement_alarm = TRUE @@ -621,7 +621,7 @@ /obj/structure/machinery/computer/shuttle/dropship/flight/toc name = "dropship control screen" - desc = "A screen on the TOC computer for controlling the dropship linked to it." + desc = "A screen on the TOC computer for controlling the dropship linked to it. Has an abbreviated version of the flight controls and data." icon = 'icons/obj/structures/machinery/computer.dmi' icon_state = "toc_shuttle" shuttleId = DROPSHIP_MIDWAY diff --git a/code/modules/shuttle/dropship.dm b/code/modules/shuttle/dropship.dm index bfba0db660..bc0f66e156 100644 --- a/code/modules/shuttle/dropship.dm +++ b/code/modules/shuttle/dropship.dm @@ -327,8 +327,19 @@ opacity = TRUE /obj/structure/shuttle/part/midway/transparent + desc = "The cockpit canopy transparency of a UD-4 gunship. Composed of a composite material that matches the hull's radar absorbency while providing protection against glare and sniping lasers." opacity = FALSE +/obj/structure/shuttle/part/midway/transparent/nosecone + desc = "Part of the nose assembly of the UD-4 Cheyenne. Contains the forward sensor complex." + +/obj/structure/shuttle/part/midway/gunpod_prop + name = "\improper Midway" + desc = "The nose of a UD-4 Cheyenne dropship. Contains the AESA radar system and the chin-mounted powered gunpod containing the GAU-113/B 25mm rotary autocannon with a 900 round drum." + icon = 'icons/turf/dropship4.dmi' + icon_state = "101a" + opacity = TRUE + /obj/structure/shuttle/part/cyclone name = "\improper Cyclone" icon = 'icons/turf/dropship2.dmi' @@ -336,8 +347,19 @@ opacity = TRUE /obj/structure/shuttle/part/cyclone/transparent + desc = "The cockpit canopy transparency of a UD-4 gunship. Composed of a composite material that matches the hull's radar absorbency while providing protection against glare and sniping lasers." opacity = FALSE +/obj/structure/shuttle/part/cyclone/transparent/nosecone + desc = "Part of the nose assembly of the UD-4 Cheyenne. Contains the forward sensor complex." + +/obj/structure/shuttle/part/cyclone/gunpod_prop + name = "\improper Cyclone" + desc = "The nose of a UD-4 Cheyenne dropship. Contains the AESA radar system and the chin-mounted powered gunpod containing the GAU-113/B 25mm rotary autocannon with a 900 round drum." + icon = 'icons/turf/dropship2.dmi' + icon_state = "101a" + opacity = TRUE + /obj/structure/shuttle/part/tornado name = "\improper Tornado" icon = 'icons/turf/dropship3.dmi' @@ -345,8 +367,19 @@ opacity = TRUE /obj/structure/shuttle/part/tornado/transparent + desc = "The cockpit canopy transparency of a UD-4 gunship. Composed of a composite material that matches the hull's radar absorbency while providing protection against glare and sniping lasers." opacity = FALSE +/obj/structure/shuttle/part/tornado/transparent/nosecone + desc = "Part of the nose assembly of the UD-4 Cheyenne. Contains the forward sensor complex." + +/obj/structure/shuttle/part/tornado/gunpod_prop + name = "\improper Tornado" + desc = "The nose of a UD-4 Cheyenne dropship. Contains the AESA radar system and the chin-mounted powered gunpod containing the GAU-113/B 25mm rotary autocannon with a 900 round drum." + icon = 'icons/turf/dropship3.dmi' + icon_state = "101a" + opacity = TRUE + /obj/structure/shuttle/part/typhoon name = "\improper Typhoon" icon = 'icons/turf/dropship3.dmi' @@ -354,8 +387,19 @@ opacity = TRUE /obj/structure/shuttle/part/typhoon/transparent + desc = "The cockpit canopy transparency of a UD-4 gunship. Composed of a composite material that matches the hull's radar absorbency while providing protection against glare and sniping lasers." opacity = FALSE +/obj/structure/shuttle/part/typhoon/transparent/nosecone + desc = "Part of the nose assembly of the UD-4 Cheyenne. Contains the forward sensor complex." + +/obj/structure/shuttle/part/typhoon/gunpod_prop + name = "\improper Typhoon" + desc = "The nose of a UD-4 Cheyenne dropship. Contains the AESA radar system and the chin-mounted powered gunpod containing the GAU-113/B 25mm rotary autocannon with a 900 round drum." + icon = 'icons/turf/dropship3.dmi' + icon_state = "101a" + opacity = TRUE + /obj/structure/shuttle/part/tripoli name = "\improper Tripoli" icon = 'icons/turf/dropship.dmi' @@ -363,4 +407,15 @@ opacity = TRUE /obj/structure/shuttle/part/tripoli/transparent + desc = "The cockpit canopy transparency of a UD-4 gunship. Composed of a composite material that matches the hull's radar absorbency while providing protection against glare and sniping lasers." opacity = FALSE + +/obj/structure/shuttle/part/tripoli/transparent/nosecone + desc = "Part of the nose assembly of the UD-4 Cheyenne. Contains the forward sensor complex." + +/obj/structure/shuttle/part/tripoli/gunpod_prop + name = "\improper Tripoli" + desc = "The nose of a UD-4 Cheyenne dropship. Contains the AESA radar system and the chin-mounted powered gunpod containing the GAU-113/B 25mm rotary autocannon with a 900 round drum." + icon = 'icons/turf/dropship.dmi' + icon_state = "101a" + opacity = TRUE diff --git a/html/changelogs/archive/2024-09.yml b/html/changelogs/archive/2024-09.yml new file mode 100644 index 0000000000..4a7d473306 --- /dev/null +++ b/html/changelogs/archive/2024-09.yml @@ -0,0 +1,7 @@ +2024-09-04: + AndroBetel: + - rscadd: MD blips now show up for humans in 1 tile radius from MD user. + Max-023: + - rscadd: on Sorokyne, UPP 'Territorial Guard' vendor to replace USCM MP Vendors + - rscdel: on Sorokyne, removed USCM Galley Vendors + - bugfix: on Sorokyne, Replaces USCM/CMB guns, ammunition, and belts with UPP counterparts diff --git a/icons/mob/humans/onmob/head_1.dmi b/icons/mob/humans/onmob/head_1.dmi index 3a95ce87e9..cd7acbc920 100644 Binary files a/icons/mob/humans/onmob/head_1.dmi and b/icons/mob/humans/onmob/head_1.dmi differ diff --git a/icons/mob/humans/onmob/suit_1.dmi b/icons/mob/humans/onmob/suit_1.dmi index c329af5e5f..f0267edd30 100644 Binary files a/icons/mob/humans/onmob/suit_1.dmi and b/icons/mob/humans/onmob/suit_1.dmi differ diff --git a/icons/mob/humans/onmob/uniform_0.dmi b/icons/mob/humans/onmob/uniform_0.dmi index d21af3dff0..2fb0af1fc0 100644 Binary files a/icons/mob/humans/onmob/uniform_0.dmi and b/icons/mob/humans/onmob/uniform_0.dmi differ diff --git a/icons/obj/items/clothing/cm_hats.dmi b/icons/obj/items/clothing/cm_hats.dmi index 84e7d602ab..365cbb9c68 100644 Binary files a/icons/obj/items/clothing/cm_hats.dmi and b/icons/obj/items/clothing/cm_hats.dmi differ diff --git a/icons/obj/items/clothing/cm_suits.dmi b/icons/obj/items/clothing/cm_suits.dmi index 6bf1b1a89b..c601920ff5 100644 Binary files a/icons/obj/items/clothing/cm_suits.dmi and b/icons/obj/items/clothing/cm_suits.dmi differ diff --git a/icons/obj/items/clothing/uniforms.dmi b/icons/obj/items/clothing/uniforms.dmi index feb3764aee..66baecb989 100644 Binary files a/icons/obj/items/clothing/uniforms.dmi and b/icons/obj/items/clothing/uniforms.dmi differ diff --git a/icons/turf/dropship.dmi b/icons/turf/dropship.dmi index d29819f0a6..9b57ef9c59 100644 Binary files a/icons/turf/dropship.dmi and b/icons/turf/dropship.dmi differ diff --git a/icons/turf/dropship2.dmi b/icons/turf/dropship2.dmi index f6db016c9e..03f496a682 100644 Binary files a/icons/turf/dropship2.dmi and b/icons/turf/dropship2.dmi differ diff --git a/icons/turf/dropship3.dmi b/icons/turf/dropship3.dmi index 099410bd6a..ed160f4be5 100644 Binary files a/icons/turf/dropship3.dmi and b/icons/turf/dropship3.dmi differ diff --git a/icons/turf/dropship4.dmi b/icons/turf/dropship4.dmi index db0f58dcee..4452412254 100644 Binary files a/icons/turf/dropship4.dmi and b/icons/turf/dropship4.dmi differ diff --git a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm index d7fc6b6211..8d97e62421 100644 --- a/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm +++ b/maps/map_files/Sorokyne_Strata/Sorokyne_Strata.dmm @@ -186,6 +186,10 @@ /obj/structure/fence, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/cabin_area) +"aaN" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/exterior/paths/cabin_area) "aaO" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/snow, @@ -303,10 +307,6 @@ /obj/effect/landmark/yautja_teleport, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area/central) -"abm" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi/drome) "abo" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, @@ -322,6 +322,14 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) +"abu" = ( +/obj/effect/landmark/xeno_spawn, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) "abv" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer0, @@ -553,15 +561,14 @@ /obj/item/stack/rods, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"aem" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec1) "aen" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/cabin_area) +"aeo" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) "aev" = ( /obj/effect/landmark/corpsespawner/upp, /turf/open/auto_turf/snow/brown_base/layer0, @@ -584,6 +591,9 @@ /obj/structure/bedsheetbin, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/cabin_area) +"aeP" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "aeU" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer1, @@ -761,6 +771,18 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) +"agY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"ahb" = ( +/obj/structure/machinery/bioprinter, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "ahc" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/auto_turf/strata_grass/layer1, @@ -872,12 +894,6 @@ }, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) -"aie" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) "aig" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "genericbush_4" @@ -1030,13 +1046,6 @@ /obj/effect/decal/cleanable/blood, /turf/closed/wall/resin/strata/on_tiles, /area/strata/ag/interior/dorms/hive) -"ajm" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/largecrate/random, -/obj/item/storage/backpack/lightpack, -/obj/item/storage/belt/shotgun, -/turf/open/floor/greengrid, -/area/strata/ag/interior/dorms/hive) "aju" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/snow/brown_base/layer3, @@ -1187,12 +1196,15 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) +"alg" = ( +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) "alh" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/holobadge, -/obj/item/storage/box/holobadge, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) +/obj/structure/machinery/photocopier, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "ali" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 @@ -1206,6 +1218,10 @@ /obj/structure/barricade/snow, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/cabin_area) +"alt" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) "alv" = ( /obj/structure/barricade/snow, /obj/effect/decal/cleanable/blood, @@ -1240,6 +1256,12 @@ /obj/structure/barricade/snow, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/cabin_area) +"amb" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) "ame" = ( /obj/structure/mirror, /turf/closed/wall/strata_outpost, @@ -1311,23 +1333,6 @@ }, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen/personal_storage) -"amS" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms/south) -"amT" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/book/manual/detective, -/turf/open/floor/strata, -/area/strata/ag/interior/dorms) "amU" = ( /obj/structure/platform_decoration/strata/metal{ dir = 8 @@ -1367,6 +1372,12 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) +"anv" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) "anw" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/strata_decals/catwalk/prison, @@ -1404,6 +1415,10 @@ /obj/structure/sign/safety/medical, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen/personal_storage) +"anX" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/platform/east/scrub) "aoa" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "pointybush_1" @@ -1485,6 +1500,12 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) +"apB" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) "apI" = ( /obj/structure/curtain/open/shower, /turf/open/floor/interior/plastic, @@ -1493,21 +1514,16 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/structures/res) +"apQ" = ( +/obj/item/dogtag, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/bar) "apT" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/shuttle/dropship/flight/lz1, /turf/open/floor/plating, /area/strata/ag/interior/landingzone_1) -"apU" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) "aqg" = ( /obj/structure/sign/nosmoking_2, /turf/closed/wall/strata_outpost/reinforced, @@ -1560,6 +1576,13 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) +"ara" = ( +/obj/structure/machinery/light/small, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "are" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer3, @@ -1783,13 +1806,6 @@ /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"atx" = ( -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata, -/area/strata/ag/interior/dorms) "atB" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -2003,10 +2019,6 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/dorms_quad) -"avI" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) "avL" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/engi) @@ -2021,11 +2033,6 @@ /obj/structure/closet/fireaxecabinet, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/engi) -"avZ" = ( -/obj/structure/inflatable/popped/door, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/nearlz2) "awb" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer3, @@ -2185,16 +2192,13 @@ "axm" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball) +"axs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) "axv" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/interior/outpost/gen/bball) -"axy" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 8; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/nearlz1) "axz" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -2399,12 +2403,6 @@ /obj/effect/spawner/random/tool, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) -"azw" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/foyer) "azx" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/nearlz1) @@ -2426,6 +2424,18 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/dorms) +"azK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "azO" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/strata_outpost, @@ -2438,6 +2448,12 @@ }, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms) +"azQ" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "azR" = ( /obj/structure/bed/chair, /obj/structure/barricade/handrail/strata{ @@ -2607,13 +2623,6 @@ /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms) -"aBv" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/item/prop/almayer/box, -/obj/item/coin/marine/engineer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/greengrid, -/area/strata/ag/interior/dorms) "aBw" = ( /obj/structure/reagent_dispensers/watertank, /obj/effect/decal/strata_decals/catwalk/prison, @@ -2632,16 +2641,6 @@ "aBy" = ( /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ug/interior/jungle/deep/structures/res) -"aBD" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) "aBJ" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -2823,12 +2822,6 @@ /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/north_carp) -"aDB" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) "aDE" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) @@ -2888,12 +2881,6 @@ /obj/item/device/flashlight/lamp/green, /turf/open/floor/strata, /area/strata/ug/interior/jungle/deep/minehead/ruins) -"aEA" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "aEC" = ( /obj/structure/barricade/handrail/strata, /turf/open/auto_turf/snow/brown_base/layer0, @@ -3015,11 +3002,6 @@ "aFD" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ag/interior/outpost/maint/canteen_e_1) -"aFF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/folder/blue, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms/south) "aFQ" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/decal/cleanable/blood, @@ -3034,6 +3016,13 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/north_outpost) +"aFW" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 2; + name = "Medical Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) "aFZ" = ( /obj/structure/machinery/light/small, /turf/open/auto_turf/snow/brown_base/layer1, @@ -3079,6 +3068,10 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/mountain) +"aGg" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "aGi" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -3172,6 +3165,11 @@ /obj/structure/sign/poster, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms) +"aHd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "aHh" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/north_outpost) @@ -3232,6 +3230,15 @@ /obj/structure/platform_decoration/strata/metal, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) +"aHG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) "aHM" = ( /obj/item/stool, /obj/structure/machinery/light/small{ @@ -3248,12 +3255,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/adminext) -"aHX" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/minehead/ruins) "aHY" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "pointybush_1" @@ -3288,6 +3289,11 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) +"aIy" = ( +/obj/item/stack/rods, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "aIz" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -3333,6 +3339,13 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/research_decks) +"aIO" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/asphalt/cement/cement15, +/area/strata/ag/exterior/marsh) "aIP" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, @@ -3374,12 +3387,6 @@ /obj/structure/sign/safety/bridge, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/admin) -"aJt" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "aJB" = ( /obj/structure/sign/safety/galley, /turf/closed/wall/strata_outpost, @@ -3636,16 +3643,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/dorms_quad) -"aLD" = ( -/obj/structure/machinery/scoreboard{ - id = "basketball"; - pixel_y = 30 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) "aLF" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /turf/open/floor/strata, @@ -3655,12 +3652,6 @@ /obj/effect/spawner/random/toolbox, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"aLI" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) "aLL" = ( /obj/item/lightstick/planted, /turf/open/auto_turf/snow/brown_base/layer2, @@ -3996,13 +3987,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) -"aOV" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) "aOW" = ( /obj/structure/barricade/snow{ dir = 4 @@ -4054,6 +4038,12 @@ }, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms/south) +"aPf" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) "aPh" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, @@ -4250,18 +4240,6 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"aQU" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"aRc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/crowbar, -/obj/effect/spawner/random/toolbox, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) "aRd" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -4357,6 +4335,12 @@ }, /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/gen/foyer) +"aSi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "aSj" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform_decoration/strata{ @@ -4364,9 +4348,16 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"aSy" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +"aSx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) "aSA" = ( /obj/item/organ/eyes, /obj/effect/decal/cleanable/blood, @@ -4428,10 +4419,6 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) -"aTd" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) "aTe" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer2, @@ -4458,15 +4445,6 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"aTo" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aTp" = ( /obj/structure/largecrate/random/case/small, /turf/open/asphalt/cement, @@ -4497,6 +4475,10 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) +"aTS" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) "aTV" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -4514,6 +4496,10 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) +"aUa" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "aUc" = ( /obj/structure/sign/safety/galley, /turf/closed/wall/strata_outpost, @@ -4524,6 +4510,12 @@ "aUh" = ( /turf/open/gm/coast/east, /area/strata/ug/interior/jungle/deep/north_carp) +"aUi" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "aUn" = ( /obj/structure/platform/strata/metal, /turf/open/auto_turf/snow/brown_base/layer4, @@ -4577,6 +4569,13 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) +"aVb" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement14, +/area/strata/ag/interior/landingzone_1) "aVh" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -4612,13 +4611,6 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) -"aVC" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) "aVD" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/stairs/perspective{ @@ -4961,9 +4953,6 @@ "aYz" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ug/interior/jungle/deep/structures/res) -"aYM" = ( -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/outpost/med) "aYQ" = ( /obj/item/stack/sheet/wood, /turf/open/floor/strata, @@ -4980,6 +4969,10 @@ /obj/item/lightstick/planted, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/north_lz_caves) +"aZa" = ( +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "aZc" = ( /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/north_lz_caves) @@ -5091,6 +5084,10 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) +"aZR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "aZS" = ( /obj/structure/platform/strata/metal{ dir = 8 @@ -5187,15 +5184,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) -"bax" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) "baC" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -5218,6 +5206,9 @@ /obj/item/stack/rods, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) +"baI" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) "baJ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -5356,10 +5347,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/river) -"bcc" = ( -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "bcd" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -5400,6 +5387,9 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) +"bcl" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/vanyard) "bcm" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer2, @@ -5753,6 +5743,16 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/river) +"bej" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "bek" = ( /obj/structure/platform/strata, /obj/structure/platform/strata{ @@ -5778,6 +5778,13 @@ "ben" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh) +"beo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/landingzone_checkpoint) "bep" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -5804,6 +5811,16 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/engi/drome) +"beC" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "beD" = ( /obj/effect/spawner/random/toolbox{ pixel_y = 12 @@ -5845,10 +5862,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/engi/drome) -"beN" = ( -/obj/effect/decal/remains/xeno, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) "beO" = ( /obj/structure/flora/grass/tallgrass/desert/corner{ dir = 5 @@ -6009,15 +6022,6 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/strata, /area/strata/ag/interior/outpost/gen/foyer) -"bfK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) "bfN" = ( /obj/structure/sign/safety/radio_rad, /turf/closed/wall/strata_outpost, @@ -6205,14 +6209,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/river) -"bgR" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/marsh/river) "bgS" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/crash) @@ -6343,19 +6339,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"bhL" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/exterior/marsh/river) "bhM" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/snow, @@ -6413,6 +6396,11 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/crash) +"bid" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/sliceable/bread, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) "bif" = ( /obj/structure/platform/strata, /turf/open/auto_turf/snow/brown_base/layer2, @@ -6435,10 +6423,6 @@ /obj/structure/platform/strata, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh) -"bip" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "biq" = ( /obj/structure/platform_decoration/strata, /turf/open/auto_turf/snow/brown_base/layer1, @@ -6849,13 +6833,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/shed_five_caves) -"bkM" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/interior/outpost/med) "bkO" = ( /obj/structure/barricade/handrail/strata, /turf/open/asphalt/cement, @@ -6905,10 +6882,6 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/shed_five_caves) -"blj" = ( -/obj/structure/bed, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) "blk" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -6965,6 +6938,13 @@ /obj/structure/machinery/space_heater, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) +"blw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" + }, +/obj/effect/decal/warning_stripes, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "blx" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -7094,13 +7074,6 @@ /obj/structure/bed/chair, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"bmx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/landingzone_checkpoint) "bmy" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/snow/brown_base/layer0, @@ -7413,10 +7386,6 @@ /obj/item/lightstick/red/planted, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"bor" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) "bov" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" @@ -7502,10 +7471,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"bpb" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/east_carp) "bpc" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -7633,10 +7598,6 @@ /obj/item/stack/medical/splint, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) -"bqm" = ( -/obj/structure/closet/wardrobe/engineering_yellow, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/personal_storage) "bqo" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer3, @@ -7685,6 +7646,12 @@ }, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/marsh/center) +"bqB" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/asphalt/cement/cement9, +/area/strata/ug/interior/jungle/platform/east/scrub) "bqE" = ( /obj/item/clothing/suit/storage/snow_suit/doctor, /obj/effect/decal/cleanable/blood/oil, @@ -7791,6 +7758,10 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) +"bri" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) "brj" = ( /turf/open/floor/strata, /area/strata/ag/interior/disposals) @@ -8089,10 +8060,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/southresearch) -"bth" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/auto_turf/snow/brown_base/layer4, -/area/strata/ag/exterior/paths/southresearch) "bti" = ( /obj/item/storage/pill_bottle/russianRed, /turf/open/auto_turf/snow/brown_base/layer1, @@ -8196,30 +8163,6 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"btV" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/snow, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata, -/area/strata/ag/interior/disposals) -"btW" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/device/lightreplacer, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata, -/area/strata/ag/interior/disposals) "btX" = ( /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/tcomms/tcomms_deck) @@ -8493,6 +8436,14 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/nearlz2) +"bvT" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "bvU" = ( /obj/effect/decal/cleanable/ash, /obj/structure/barricade/wooden{ @@ -8727,12 +8678,6 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/nearlz2) -"bxb" = ( -/obj/structure/surface/rack, -/obj/item/storage/belt/utility/full, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata, -/area/strata/ag/interior/disposals) "bxc" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer0, @@ -8760,6 +8705,10 @@ /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/nearlz2) +"bxj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "bxk" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 @@ -8820,10 +8769,6 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"bxK" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/test_floor5, -/area/strata/ug/interior/jungle/deep/structures/res) "bxQ" = ( /obj/structure/platform/strata{ dir = 4 @@ -8942,6 +8887,17 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/restricted) +"byt" = ( +/obj/item/stack/snow, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/paths/north_outpost) +"byH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "byN" = ( /obj/structure/platform_decoration/strata, /obj/effect/blocker/sorokyne_cold_water, @@ -8970,18 +8926,20 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"byW" = ( -/obj/structure/inflatable/door, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) +"bze" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "bzh" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior) -"bzU" = ( -/obj/structure/machinery/chem_dispenser/soda/beer, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) +"bzF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/maintenance) "bzV" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 @@ -8999,6 +8957,15 @@ "bAf" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/marsh/river) +"bAh" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) +"bAj" = ( +/obj/structure/machinery/centrifuge, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "bAq" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/strata_outpost/reinforced, @@ -9024,12 +8991,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"bAw" = ( -/obj/structure/surface/rack, -/obj/item/storage/briefcase, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata, -/area/strata/ag/interior/disposals) "bAx" = ( /obj/effect/landmark/crap_item, /obj/effect/decal/strata_decals/catwalk/prison, @@ -9040,14 +9001,6 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/disposals) -"bAz" = ( -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/russianRed, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/disposals) "bAM" = ( /obj/structure/machinery/alarm{ dir = 8; @@ -9072,45 +9025,33 @@ /obj/structure/prop/ice_colony/soil_net, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/marsh/center) -"bBn" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 +"bAU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, -/obj/structure/machinery/door/window/eastright{ +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) +"bAV" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/exterior/paths/north_outpost) +"bAZ" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/m94, +/obj/item/storage/box/m94, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"bBh" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin2) +/turf/open/floor/strata/white_cyan3/north, +/area/strata/ag/interior/outpost/med) "bBr" = ( /obj/structure/flora/bush/ausbushes/genericbush, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"bBu" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"bBI" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) "bBN" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "leafybush_2" @@ -9132,18 +9073,6 @@ "bCz" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/engi/drome) -"bCJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 2 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) "bCP" = ( /obj/structure/window/reinforced/tinted{ dir = 4 @@ -9152,6 +9081,20 @@ /obj/structure/machinery/iv_drip, /turf/open/floor/interior/plastic, /area/strata/ag/interior/paths/cabin_area/central) +"bDh" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/surface/rack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "bDl" = ( /obj/structure/prop/ice_colony/surveying_device/measuring_device{ dir = 8; @@ -9163,6 +9106,17 @@ "bDm" = ( /turf/closed/wall/wood, /area/strata/ug/interior/jungle/deep/minehead) +"bDu" = ( +/obj/item/fuel_cell, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "bDB" = ( /obj/item/trash/plate{ pixel_x = 1; @@ -9218,6 +9172,12 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) +"bEb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "bEh" = ( /obj/structure/platform/strata{ dir = 4 @@ -9226,13 +9186,23 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"bEG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +"bED" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/plating, +/area/strata/ag/exterior/marsh/crash) +"bEL" = ( +/obj/structure/closet/secure_closet/security/soro, +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"bEP" = ( +/obj/structure/prop/ice_colony/surveying_device, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) "bER" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 @@ -9245,10 +9215,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/river) -"bEU" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) "bEV" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -9264,16 +9230,10 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/disposals) -"bEY" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/effect/landmark/good_item, -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/disposals) +"bFa" = ( +/obj/structure/bed/roller, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "bFi" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -9285,15 +9245,43 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"bFk" = ( +"bFu" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"bFD" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + name = "Emergency NanoMed"; + pixel_x = 30 + }, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) "bFG" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/paths/cabin_area) +"bFH" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/slug, +/obj/item/ammo_magazine/handful/shotgun/heavy/slug, +/obj/item/weapon/gun/shotgun/type23/riot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) "bFX" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "sunnybush_1" @@ -9322,34 +9310,50 @@ /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/research_decks) -"bGI" = ( -/obj/item/weapon/gun/revolver/spearhead{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"bGv" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"bGz" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"bGC" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"bHa" = ( +/obj/item/stool, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"bHj" = ( +/turf/closed/wall/strata_ice/jungle, +/area/strata/ug/interior/jungle/deep/minehead) +"bHU" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"bGL" = ( -/obj/structure/bed/chair/comfy{ +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"bHj" = ( -/turf/closed/wall/strata_ice/jungle, -/area/strata/ug/interior/jungle/deep/minehead) -"bIc" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/med) +"bHX" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"bIm" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/nearlz1) "bIt" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/hazardvest, @@ -9383,6 +9387,13 @@ }, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms/maintenance) +"bIG" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "bIH" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -9403,6 +9414,14 @@ "bIM" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/north_lz_caves) +"bIO" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/cheesecakeslice, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "bIV" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 @@ -9418,13 +9437,12 @@ /turf/open/floor/strata, /area/strata/ag/interior/administration) "bJl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/structure/platform/strata/metal{ + dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) "bJG" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -9442,46 +9460,46 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"bKB" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 +"bJY" = ( +/obj/structure/bed/chair{ + dir = 8 }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/med) -"bKF" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"bKg" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"bKi" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) "bKK" = ( /obj/structure/disposalpipe/segment{ dir = 8 }, /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) -"bKM" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) "bKN" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/wood, /area/strata/ag/interior/paths/cabin_area/central) +"bKQ" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "bKT" = ( /obj/structure/platform_decoration/strata/metal{ dir = 4 @@ -9489,12 +9507,6 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/tcomms) -"bKW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) "bLb" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/admin) @@ -9502,16 +9514,10 @@ /obj/structure/floodgate, /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/paths/north_outpost) -"bLm" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/maintenance) "bLw" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) +/obj/structure/filingcabinet, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) "bLz" = ( /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/auto_turf/strata_grass/layer1, @@ -9522,37 +9528,45 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) +"bLM" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "bLR" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/mountain) -"bMg" = ( -/obj/structure/machinery/light/small{ +"bMa" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/blue1, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) +"bMe" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/strata/ug/interior/jungle/platform/east/scrub) +"bMr" = ( +/obj/item/stool, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/gen/bball) "bME" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/mountain) -"bMH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, +"bNb" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"bNd" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) "bNh" = ( /obj/structure/barricade/handrail/strata, /turf/open/asphalt/cement, @@ -9568,34 +9582,22 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) +"bNo" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/coatrack, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) "bNq" = ( /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/paths/north_outpost) -"bNA" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) -"bNC" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/item/cell/high, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/storage/pill_bottle/bicaridine/skillless, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"bNE" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) +"bNH" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "bNM" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, @@ -9616,15 +9618,15 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"bNT" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "bNW" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ag/interior/mountain) +"bOg" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "bOj" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -9634,47 +9636,44 @@ /obj/structure/platform_decoration/strata/metal, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"bOM" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"bOQ" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" +"bOk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/structure/platform/strata/metal{ +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"bOL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"bOX" = ( -/turf/open/floor/strata/orange_cover, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms) +"bOO" = ( +/turf/open/floor/strata/cyan3/west, +/area/strata/ag/interior/outpost/med) +"bOT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"bOU" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "bOZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) -"bPc" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) "bPf" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/canteen/personal_storage) -"bPj" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"bPk" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/asphalt/cement/cement4, -/area/strata/ug/interior/jungle/platform/east/scrub) "bPo" = ( /turf/closed/shuttle/ert{ icon_state = "upp_rightengine" @@ -9687,10 +9686,17 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/shed_five_caves) -"bPN" = ( -/obj/item/device/aicard, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) +"bPR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/fuel_cell, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/interior/outpost/gen/bball/nest) +"bPT" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "bQi" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_3"; @@ -9703,10 +9709,31 @@ opacity = 0 }, /area/strata/ug/interior/jungle/deep/structures/res) +"bQr" = ( +/obj/structure/surface/rack, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi/drome) +"bQy" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/tcomms/tcomms_deck) "bQA" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) +"bQF" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"bQI" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "bRb" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -9733,12 +9760,22 @@ "bRl" = ( /turf/open/floor/plating, /area/strata/ug/interior/jungle/deep/structures/res) -"bRM" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 +"bRx" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"bRH" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/storage/secure/briefcase, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"bRV" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "bSa" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -9748,27 +9785,23 @@ /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) "bSb" = ( -/obj/structure/fence, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"bSe" = ( -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"bSg" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"bSl" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/structure/surface/table/reinforced/prison, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"bSk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/admin) +/obj/item/tool/pen/blue, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"bSt" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "bSD" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -9777,27 +9810,14 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"bTC" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/admin) "bTD" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) -"bTR" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) +"bTP" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "bTS" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -9809,21 +9829,29 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/research_decks/security) -"bUB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/platform_decoration/strata/metal, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "bUJ" = ( /obj/structure/sign/safety/maint, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/med) +"bUP" = ( +/obj/item/stack/rods, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "bUX" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/gen/bball/nest) +"bVg" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/south) +"bVl" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light/small, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "bVw" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -9838,14 +9866,6 @@ "bVx" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/water) -"bVH" = ( -/obj/structure/inflatable/door, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) "bVM" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, @@ -9855,12 +9875,6 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi) -"bVT" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "bVV" = ( /obj/structure/machinery/weather_siren{ dir = 1; @@ -9879,15 +9893,6 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi) -"bWz" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/mountain) -"bWA" = ( -/obj/structure/closet/crate/science, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "bWH" = ( /obj/structure/platform_decoration/strata/metal{ dir = 8 @@ -9918,13 +9923,16 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/dorms) -"bXk" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_full" +"bXh" = ( +/obj/structure/toilet{ + dir = 8; + pixel_x = -4 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/admin) +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin1) "bXC" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -9938,10 +9946,21 @@ /obj/effect/spawner/random/tool, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) +"bXM" = ( +/obj/item/ammo_magazine/rifle/type71, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "bXV" = ( /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) +"bXX" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner, +/obj/item/toy/deck, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "bXY" = ( /obj/structure/sign/safety/restrictedarea, /turf/closed/wall/strata_outpost/reinforced, @@ -9960,10 +9979,6 @@ /obj/item/stool, /turf/open/floor/interior/tatami, /area/strata/ag/interior/outpost/canteen) -"bYs" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/admin3) "bYE" = ( /obj/structure/extinguisher_cabinet, /turf/closed/wall/strata_outpost, @@ -9983,12 +9998,6 @@ }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"bYP" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/corpsespawner/chef, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) "bYS" = ( /obj/structure/bed/chair{ dir = 4 @@ -10005,15 +10014,14 @@ /obj/structure/extinguisher_cabinet, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/administration) -"bZr" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) +"bZl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"bZn" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) "bZH" = ( /obj/structure/sign/safety/galley, /turf/closed/wall/strata_outpost, @@ -10052,11 +10060,11 @@ /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen) "cas" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) "cau" = ( /obj/structure/surface/table/woodentable, /turf/open/floor/interior/plastic, @@ -10071,26 +10079,12 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"caz" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) "caC" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"caD" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/item/storage/briefcase, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) "caV" = ( /obj/item/stack/sheet/wood, /obj/effect/decal/cleanable/blood, @@ -10113,13 +10107,23 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) -"cbg" = ( -/turf/open/floor/strata/white_cyan2, -/area/strata/ag/interior/outpost/med) +"cbc" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "cbj" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms) +"cbn" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "cbu" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox/emergency, @@ -10154,19 +10158,37 @@ "cbO" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/landingzone_checkpoint) +"cbY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"ccb" = ( +/obj/structure/inflatable/door, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball) "ccd" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/research_decks) "ccj" = ( /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/north_outpost) +"ccl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) "ccs" = ( /turf/open/floor/strata, /area/strata/ag/exterior/paths/adminext) -"ccv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "ccz" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "pointybush_1" @@ -10250,16 +10272,12 @@ /obj/structure/sign/double/maltesefalcon/right, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms) -"cdN" = ( +"cdP" = ( /obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 + dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) "cdT" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -10274,13 +10292,13 @@ "cei" = ( /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/north_carp) -"ceA" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"cem" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) "ceQ" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/north_carp) @@ -10301,12 +10319,11 @@ }, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms) -"cfe" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +"cfh" = ( +/obj/effect/landmark/crap_item, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "cfr" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/dorms/maintenance) @@ -10350,11 +10367,6 @@ "cfR" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/administration) -"cfX" = ( -/obj/structure/largecrate/random, -/obj/item/storage/belt/grenade/large/full, -/turf/open/asphalt/cement, -/area/strata/ag/exterior/research_decks) "cfZ" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 @@ -10369,24 +10381,15 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"cgA" = ( -/obj/structure/machinery/optable, -/obj/effect/landmark/corpsespawner/russian, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) -"cgC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/research_decks/security) "cgE" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/south_res) +"cgK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) "cgO" = ( /turf/closed/shuttle/ert{ icon_state = "upp20" @@ -10427,10 +10430,10 @@ "chB" = ( /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen) -"chE" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) +"chI" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "chN" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_res) @@ -10438,21 +10441,25 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_res) -"chR" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"cic" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/foyer) +"chT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/security) "cif" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "pointybush_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/exterior/jungle/deep/carplake_center) +"cig" = ( +/obj/item/fuel_cell, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/interior/outpost/gen/bball/nest) "cik" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/admin) @@ -10483,15 +10490,19 @@ }, /turf/open/floor/greengrid, /area/strata/ag/interior/landingzone_checkpoint) +"ciP" = ( +/obj/item/stack/sandbags, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"ciY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) "cjb" = ( /turf/open/floor/strata, /area/strata/ag/interior/dorms/flight_control) -"cjd" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) "cjg" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -10507,10 +10518,6 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"cjs" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) "cjw" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms/south) @@ -10542,10 +10549,6 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/adminext) -"cjK" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) "ckf" = ( /obj/structure/bed/chair{ dir = 8 @@ -10609,30 +10612,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"clQ" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/obj/item/weapon/gun/pistol/t73, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"clU" = ( -/obj/structure/largecrate/guns/russian, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"clY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) "cmf" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, @@ -10656,19 +10635,23 @@ "cmu" = ( /turf/open/gm/coast/north, /area/strata/ug/interior/jungle/deep/north_carp) -"cmw" = ( -/obj/structure/machinery/door/airlock/prison{ - name = "Reinforced Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/outpost/jung/dorms/admin4) "cmC" = ( /obj/structure/machinery/light/small, /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) -"cmU" = ( +"cmQ" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/area/strata/ag/exterior/paths/north_outpost) "cmX" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/research_decks) @@ -10717,15 +10700,16 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"cop" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) "cor" = ( /turf/open/gm/coast/west, /area/strata/ug/interior/jungle/deep/north_carp) +"cos" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/obj/item/ammo_magazine/revolver/upp, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "cot" = ( /obj/structure/platform_decoration/strata/metal{ dir = 1 @@ -10766,16 +10750,6 @@ icon_state = "upp5" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"coE" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"coN" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) "coP" = ( /obj/structure/bed/chair/office/light, /turf/open/floor/strata, @@ -10787,10 +10761,14 @@ "cpg" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/east_dorms) -"cpx" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) +"cpk" = ( +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/platform/east/scrub) +"cpP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/pizza, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) "cpU" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/maint/canteen_e_1) @@ -10809,16 +10787,27 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"cqo" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) "cqr" = ( /obj/structure/barricade/handrail/strata{ dir = 1 }, /turf/open/asphalt/cement, /area/strata/ag/interior/administration) +"cqt" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"cqA" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "cqE" = ( /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) @@ -10842,12 +10831,6 @@ "cqQ" = ( /turf/open/asphalt/cement, /area/strata/ag/interior/administration) -"cqW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) "crA" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/dorms/hive) @@ -10860,22 +10843,20 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen) -"crJ" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/almayer/test_floor5, -/area/strata/ag/exterior/marsh/crash) +"crK" = ( +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "crN" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/river) +"crX" = ( +/obj/structure/curtain/open/medical, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "crY" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms) -"csf" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin1) "csm" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -10893,26 +10874,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/disposals) -"csN" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/exterior/paths/north_outpost) -"csP" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"csS" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/outpost/med) "csY" = ( /obj/structure/bed/chair{ dir = 4 @@ -10973,19 +10934,11 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_dorms) -"ctM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) "ctN" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) -"ctT" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/lady_finger, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) "ctZ" = ( /obj/structure/platform_decoration/strata/metal{ dir = 8 @@ -10993,9 +10946,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_dorms) -"cub" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) "cuc" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -11003,27 +10953,12 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_dorms) -"cue" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) "cui" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"cuo" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "cuy" = ( /obj/structure/platform/strata{ dir = 1 @@ -11041,19 +10976,9 @@ "cuM" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/exterior/jungle/deep/carplake_center) -"cuN" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi) "cuP" = ( /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"cuR" = ( -/obj/structure/curtain/open/medical, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) "cuX" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, @@ -11066,6 +10991,12 @@ /obj/item/clipboard, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"cvh" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/res) "cvn" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/paths/southresearch) @@ -11079,6 +11010,12 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) +"cwb" = ( +/obj/structure/machinery/bioprinter{ + stored_metal = 1000 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "cwe" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -11086,14 +11023,15 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/administration) -"cwg" = ( -/obj/item/stack/sandbags, +"cwp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) "cwq" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, @@ -11104,19 +11042,6 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"cwx" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/landingzone_2) -"cwy" = ( -/obj/structure/machinery/light/small, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "cwD" = ( /turf/open/gm/dirt, /area/strata/ug/exterior/jungle/deep/carplake_center) @@ -11126,37 +11051,9 @@ "cwT" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/landingzone_checkpoint) -"cwW" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/east_engi) -"cwZ" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"cxi" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) +"cxb" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "cxA" = ( /turf/open/gm/coast/beachcorner/south_west, /area/strata/ug/exterior/jungle/deep/carplake_center) @@ -11172,19 +11069,43 @@ "cxK" = ( /turf/open/gm/coast/beachcorner/south_west, /area/strata/ug/interior/jungle/deep/east_dorms) -"cxL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 8; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms/south) +"cxQ" = ( +/obj/item/tool/crowbar, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) "cxW" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/sec2) +"cye" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"cyk" = ( +/obj/structure/closet/wardrobe/pjs, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"cyr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform_decoration/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"cyz" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/canteen) "cyG" = ( /obj/structure/floodgate, /turf/closed/wall/strata_ice/dirty, @@ -11193,6 +11114,17 @@ /obj/structure/window/framed/strata, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) +"cyS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/effect/spawner/random/toolbox{ + pixel_y = 12 + }, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/platform/east/scrub) "czb" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -11201,25 +11133,36 @@ }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/shed_five_caves) -"czr" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 +"czh" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/interior/landingzone_1) -"czI" = ( +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"czs" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"cAk" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"czT" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"cAe" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, /obj/structure/machinery/camera/autoname{ - dir = 8 + dir = 4 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"cAh" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/marsh/center) "cAq" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, @@ -11230,20 +11173,16 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"cAv" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) "cAw" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/item/stack/rods, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) +"cAy" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/glass, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "cAK" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer0, @@ -11252,23 +11191,35 @@ /obj/item/stack/sheet/metal/medium_stack, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"cBJ" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) -"cBS" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"cCm" = ( -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"cCD" = ( -/obj/structure/bookcase, -/obj/item/book/manual/atmospipes, -/obj/item/book/manual/engineering_guide, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) +"cBD" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/engi) +"cBU" = ( +/obj/structure/closet/lawcloset, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"cBX" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"cCf" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"cCj" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) "cCE" = ( /obj/structure/cargo_container/wy/left{ health = 5000; @@ -11276,336 +11227,348 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"cCG" = ( -/obj/item/tool/pen/blue, +"cCZ" = ( +/obj/structure/closet/lawcloset, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"cCU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"cDx" = ( -/obj/structure/bed/chair{ - dir = 4 - }, +/area/strata/ag/interior/tcomms) +"cDc" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/mountain) +"cDt" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 + dir = 1 }, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/orange_edge/east, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "cDL" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"cDN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"cEa" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"cEj" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +"cDM" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/obj/structure/barricade/handrail/strata, -/obj/structure/filingcabinet, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"cEk" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"cEo" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +/obj/structure/machinery/computer/communications{ + dir = 1 }, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"cEU" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "cFg" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"cFl" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) "cFp" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/strata/ug/interior/jungle/deep/east_dorms) -"cFH" = ( +"cFy" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, /turf/open/floor/strata/floor3, -/area/strata/ug/interior/jungle/deep/minehead) +/area/strata/ag/interior/nearlz1) "cFK" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) -"cFP" = ( -/turf/open/asphalt/cement/cement4, -/area/strata/ag/interior/landingzone_1) +"cFL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/almayer/ship_memorial{ + desc = "A large granite slab that breaks the fabric of space time. Special thanks to Fourkhan, Tobinerd, Cakey, and all the countless playtesters that made this map possible."; + name = "slab of triumph"; + pixel_y = 2 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) +"cFM" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"cFT" = ( +/obj/structure/machinery/door/airlock/prison{ + name = "Reinforced Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/outpost/jung/dorms/admin4) "cGg" = ( /obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"cGt" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/landingzone_1) "cGV" = ( -/obj/item/device/megaphone, +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) +"cHE" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"cHI" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/item/toy/deck, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"cHP" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"cHa" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"cHj" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/red1, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"cIj" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/security) -"cHW" = ( -/obj/structure/prop/dam/van, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/vanyard) -"cIL" = ( -/obj/structure/filingcabinet, +"cIK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 8; + icon_state = "commb" + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/area/strata/ug/interior/outpost/jung/dorms/med2) "cJf" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"cKf" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 +"cJq" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 1 }, -/turf/open/asphalt/cement/cement1, -/area/strata/ug/interior/jungle/platform/east/scrub) -"cKr" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/outpost/med) -"cKG" = ( -/obj/structure/bed/chair/office/light{ +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"cJC" = ( +/obj/item/storage/pill_bottle/bicaridine, +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"cJN" = ( +/obj/structure/surface/rack, +/obj/item/device/lightreplacer, +/obj/item/clothing/gloves/yellow, +/obj/item/tool/extinguisher, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/north_lz_caves) +"cJO" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"cJV" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"cKj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"cKH" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"cKI" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/shed_five_caves) +"cKL" = ( +/obj/structure/closet/crate, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"cKY" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/landmark/corpsespawner/russian, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"cLC" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"cLf" = ( -/obj/structure/closet, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/administration) -"cLJ" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"cLL" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) +"cMB" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/prop/ice_colony/ground_wire{ +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/admin) +"cMF" = ( +/turf/open/floor/almayer/plate, +/area/strata/ag/exterior/marsh/crash) +"cMO" = ( +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/russianRed, +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/obj/structure/prop/ice_colony/ground_wire{ +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata, +/area/strata/ag/interior/disposals) +"cNg" = ( +/obj/effect/blocker/sorokyne_cold_water, +/obj/effect/blocker/sorokyne_cold_water, +/obj/structure/platform/strata{ + dir = 8 + }, +/obj/structure/platform/strata{ dir = 4 }, -/turf/open/floor/strata/red2, -/area/strata/ug/interior/jungle/deep/south_res) -"cLP" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/river) +"cNw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"cNF" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"cLR" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"cMp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/administration) -"cMF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"cMW" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"cNg" = ( -/obj/effect/blocker/sorokyne_cold_water, -/obj/effect/blocker/sorokyne_cold_water, -/obj/structure/platform/strata{ - dir = 8 - }, -/obj/structure/platform/strata{ - dir = 4 - }, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/river) -"cNl" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, +/obj/item/stack/cable_coil/random, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"cNv" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"cNY" = ( -/obj/item/stack/sandbags, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/area/strata/ag/interior/dorms) +"cNG" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) "cOc" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/tearlake) -"cOm" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"cOq" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3, -/area/strata/ag/exterior/paths/cabin_area) -"cOA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"cON" = ( -/obj/structure/machinery/bioprinter, +"cOi" = ( +/obj/structure/closet/secure_closet/personal, /obj/structure/machinery/light/small{ - dir = 4 + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"cOX" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) -"cOP" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/coatrack, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"cOU" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/manifold/hidden/cyan{ +/area/strata/ag/interior/outpost/gen/bball) +"cPv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"cQa" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) -"cQh" = ( +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"cPI" = ( +/obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"cQl" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/bodybags, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/platform/east/scrub) -"cQC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, +/area/strata/ag/interior/outpost/med) +"cPR" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"cRe" = ( -/obj/structure/barricade/wooden{ - dir = 1 +/area/strata/ag/interior/dorms) +"cQl" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"cRA" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/orange_edge/west, +/area/strata/ag/exterior/research_decks) +"cQt" = ( +/obj/structure/inflatable/popped/door, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"cRC" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"cRU" = ( -/obj/structure/fence, +/area/strata/ag/exterior/research_decks) +"cQE" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen/bar) +"cQF" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"cQH" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"cSy" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"cSI" = ( +/area/strata/ag/interior/landingzone_1) +"cQO" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/corpsespawner/upp, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"cRc" = ( +/obj/item/stack/rods, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) +"cRu" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/snow, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight, /obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 8 - }, +/turf/open/floor/strata, +/area/strata/ag/interior/disposals) +"cRL" = ( +/obj/structure/curtain/open/shower, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"cSx" = ( +/obj/structure/machinery/space_heater, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) -"cSM" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan3/north, -/area/strata/ag/interior/outpost/med) -"cSO" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"cTn" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor3, +"cSz" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"cTr" = ( +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball) +"cTD" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"cUh" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "cUi" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -11613,172 +11576,213 @@ /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) "cUl" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"cUo" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/paths/adminext) -"cUt" = ( /obj/structure/barricade/handrail/strata, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"cUF" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/cyan{ +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"cUs" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) +"cUS" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"cUV" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"cUJ" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"cUX" = ( -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/restricted/devroom) -"cUY" = ( -/obj/structure/platform_decoration/strata/metal{ +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"cVh" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"cVW" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/nearlz1) -"cVb" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"cVi" = ( -/obj/structure/bed/chair{ +/obj/structure/toilet{ dir = 8 }, +/obj/structure/window/reinforced/tinted, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"cVy" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen/bar) -"cWl" = ( +/area/strata/ag/interior/administration) +"cWm" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"cWt" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) -"cWO" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"cWQ" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"cWK" = ( +/obj/structure/machinery/light/small, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/machinery/camera/autoname{ - dir = 4 +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"cWN" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8 }, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"cWT" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/effect/decal/strata_decals/grime/grime1, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) -"cXr" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +"cWY" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"cWZ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, -/obj/structure/barricade/handrail/strata{ +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/interior/dorms) +"cXd" = ( +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/bicaridine, +/obj/item/tool/crowbar, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"cXy" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement15, -/area/strata/ug/interior/jungle/platform/east/scrub) -"cXP" = ( -/turf/open/floor/strata/white_cyan3/southwest, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) "cXU" = ( /turf/closed/shuttle/ert{ icon_state = "upp2" }, /area/strata/ag/exterior/marsh/crash) -"cYv" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 1 +"cYf" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"cYB" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/administration) -"cYC" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"cYV" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"cZb" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"cYA" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"cYE" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"cYJ" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/asphalt/cement/cement9, +/area/strata/ug/interior/jungle/deep/minehead) +"cZL" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/barricade/deployable{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"dak" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "daq" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) +"daP" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"daW" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) "dbg" = ( /obj/structure/platform_decoration/strata{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"dbC" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"dbN" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ +"dbE" = ( +/obj/structure/machinery/processor, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"dbT" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"dbK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"dbV" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"dbL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"dbM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"dbY" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) "dcc" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -11788,88 +11792,103 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"dcB" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"dcM" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/res) -"dcO" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"dcT" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"dcZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"ddg" = ( -/obj/effect/decal/remains/xeno, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) "ddp" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms/hive) -"deX" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +"ddr" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"dfy" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/strata/floor3, +/area/strata/ag/exterior/paths/cabin_area) +"dds" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/tool/kitchen/utensil/pfork, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"ddH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"dfM" = ( -/obj/effect/decal/strata_decals/catwalk/prison, +/area/strata/ag/interior/outpost/security) +"deK" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"deY" = ( +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"dfu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"dfQ" = ( +/obj/item/fuel_cell, /obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) -"dfR" = ( -/obj/structure/bed/chair{ - dir = 8 + dir = 1 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"dfV" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/exterior/research_decks) -"dfZ" = ( -/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"dga" = ( +/obj/structure/machinery/vending/sovietsoda, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) +"dgk" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) "dgB" = ( /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"dhh" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/administration) -"diX" = ( -/obj/structure/machinery/light/small{ +"dgR" = ( +/obj/structure/barricade/handrail/strata{ dir = 4 }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"dgW" = ( +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/landingzone_1) +"dhK" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"dih" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) +/area/strata/ag/interior/outpost/gen/bball/nest) +"dik" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"diI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/obj/item/stack/medical/bruise_pack, +/obj/item/device/radio, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "diZ" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/strata_grass/layer1, @@ -11878,60 +11897,50 @@ /obj/structure/cargo_container/grant/right, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"djL" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 +"djz" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/strata/cyan1/east, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) -"djO" = ( -/obj/structure/toilet, -/obj/structure/curtain/medical, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin4) "djW" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/paths/north_outpost) -"dkx" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/plating, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"dkA" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/obj/structure/barricade/handrail/strata{ - dir = 4 +"dkl" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"dkP" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"dkF" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"dlq" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata/fake_wood, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"dla" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms) -"dlL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"dlD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) "dlP" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"dlR" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 4 }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"dlV" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"dlQ" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) +/obj/effect/landmark/static_comms/net_two, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/tcomms/tcomms_deck) "dmd" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -11941,46 +11950,60 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"dmB" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, +"dmv" = ( +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/bicaridine, +/obj/item/tool/crowbar, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) -"dmJ" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/item/fuel_cell, -/turf/open/floor/strata/red2, -/area/strata/ag/interior/outpost/engi) -"dmK" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" +/area/strata/ug/interior/jungle/deep/structures/res) +"dne" = ( +/obj/structure/machinery/space_heater, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 3; + pixel_y = 14 }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"dnJ" = ( +/obj/structure/machinery/space_heater, +/obj/structure/barricade/handrail/strata, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) -"dnM" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, +"dnK" = ( +/obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/res) +/area/strata/ag/interior/dorms) "dnO" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"dnY" = ( -/obj/structure/machinery/computer/emails, -/obj/structure/surface/table/almayer, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"doy" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/landingzone_2) +/obj/effect/decal/warning_stripes, +/obj/structure/holohoop{ + dir = 8; + id = "basketball"; + side = "right" + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"dnP" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"dot" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"doC" = ( +/turf/open/asphalt/cement/cement15, +/area/strata/ag/exterior/tcomms/tcomms_deck) "doO" = ( /obj/structure/machinery/weather_siren{ dir = 1; @@ -11988,108 +12011,103 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) -"dpj" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"dpq" = ( +/obj/structure/machinery/computer/cameras{ + dir = 8 }, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) +"dpu" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) "dqo" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_engi) -"dqs" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/toastedsandwich, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_x = -10; - pixel_y = 8 +"dqC" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/structure/platform/strata/metal{ + dir = 4 }, -/obj/item/reagent_container/food/condiment/hotsauce/franks{ - pixel_x = 8; - pixel_y = 17 +/obj/item/stack/sheet/plasteel/medium_stack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"dqE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) +"dqG" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "dqH" = ( /obj/item/stack/catwalk, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"dqY" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"drn" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) -"drJ" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) +"dro" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/asphalt/cement/cement15, +/area/strata/ug/interior/jungle/deep/structures/res) "drQ" = ( /turf/open/gm/coast/east, /area/strata/ug/interior/jungle/deep/tearlake) -"dsp" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"dsN" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) -"dtd" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/machinery/light/small{ - dir = 4 +"dso" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"dtN" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/item/stack/rods, +/area/strata/ag/interior/outpost/admin) +"dsC" = ( +/obj/structure/machinery/fuelcell_recycler/full, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) +/area/strata/ag/interior/outpost/engi) +"dsW" = ( +/obj/structure/machinery/cryobag_recycler, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"dtj" = ( +/obj/item/stool, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"dtQ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"dui" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/outpost/jung/dorms/admin4) "duq" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) "duv" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/orange_cover, +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) -"duY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/secure_data{ +"duF" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"dvd" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) "dvf" = ( /obj/structure/platform/strata{ dir = 1 @@ -12103,104 +12121,153 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"dvl" = ( +"dvr" = ( +/obj/effect/spawner/random/toolbox{ + pixel_y = 12 + }, +/turf/open/floor/plating/warnplate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"dvN" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 + dir = 6 }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"dvW" = ( +/obj/item/stack/rods, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"dvZ" = ( +/obj/structure/machinery/light/small, +/obj/structure/tunnel/maint_tunnel, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) -"dvw" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) "dwx" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/medical/colony{ +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) +/obj/item/storage/box/explosive_mines, +/obj/item/storage/box/explosive_mines, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) "dwy" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"dxe" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/north_lz_caves) -"dxr" = ( -/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, /obj/structure/machinery/light/small{ - dir = 8 + dir = 1 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) -"dxu" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"dwG" = ( +/obj/structure/filingcabinet, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"dwK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) +"dwW" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"dxl" = ( +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"dxA" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/marsh/river) +"dxt" = ( +/obj/structure/machinery/light/small{ dir = 1; - icon_state = "p_stair_full" + pixel_y = 20 }, +/obj/item/stack/rods, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"dxI" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"dyh" = ( +/obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/landingzone_checkpoint) -"dxV" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"dyq" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/area/strata/ag/interior/dorms/maintenance) +"dyu" = ( +/obj/structure/curtain/open/medical, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"dyU" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"dzc" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/engi) -"dyQ" = ( -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) -"dzp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"dzk" = ( +/obj/item/poster, +/obj/structure/closet/secure_closet/security/soro, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"dzH" = ( +/obj/item/storage/pill_bottle/bicaridine, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"dzR" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"dzY" = ( +/obj/structure/inflatable/popped/door, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/nearlz2) +"dAk" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/engi) +"dAG" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"dzJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"dAI" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) +/obj/item/paper_bin, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"dAV" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/tank/emergency_oxygen/engi, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"dAX" = ( +/turf/open/asphalt/cement/cement9, +/area/strata/ag/exterior/tcomms/tcomms_deck) "dBe" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"dBk" = ( -/obj/structure/machinery/disposal, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"dBw" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) "dBG" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -12212,57 +12279,82 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"dBJ" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) -"dCj" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"dBZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/meatballsoup, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"dCa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"dCl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"dCf" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 1 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/exterior/paths/cabin_area) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "dCu" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"dCG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 +"dCy" = ( +/obj/item/device/aicard, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"dCL" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"dDh" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"dDi" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"dDy" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/tearlake) +"dDF" = ( +/obj/structure/toilet{ dir = 8 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"dDk" = ( -/obj/structure/bed/chair{ - dir = 1 - }, /obj/structure/machinery/light/small{ - dir = 8 + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"dDS" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"dDI" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 8 +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) +/obj/item/storage/fancy/cigarettes/lady_finger, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) "dDW" = ( /obj/structure/platform/strata{ dir = 8 @@ -12272,173 +12364,151 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"dEc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"dEd" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"dEk" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/type71, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) "dEE" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"dEG" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"dFd" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/platform/strata/metal{ +"dEL" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"dFt" = ( +/obj/item/storage/briefcase, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) +"dFE" = ( +/obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"dFg" = ( -/obj/structure/machinery/light/small{ +/area/strata/ag/interior/disposals) +"dFR" = ( +/obj/structure/bed/stool, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"dGW" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/canteen) +"dHi" = ( +/obj/effect/spawner/random/supply_kit, +/obj/structure/surface/rack{ + layer = 2.5 + }, +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"dFG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"dFW" = ( -/obj/structure/pipes/vents/pump{ +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"dHB" = ( +/obj/structure/machinery/light/small, +/obj/structure/inflatable/popped, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/nearlz2) +"dHK" = ( +/obj/item/stack/snow, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/paths/north_outpost) +"dHT" = ( +/obj/structure/window/reinforced/tinted{ dir = 1 }, -/obj/structure/bed/chair{ +/obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"dGf" = ( -/obj/structure/machinery/processor, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"dGk" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/restricted/devroom) -"dGq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"dGE" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"dGG" = ( -/obj/effect/spawner/random/attachment, +/obj/structure/window/reinforced/tinted, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"dGI" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"dHi" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, +/area/strata/ag/interior/administration) +"dIa" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 + dir = 4 }, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) -"dHp" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"dHy" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) -"dHV" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"dId" = ( -/obj/structure/largecrate/random, -/obj/item/trash/pistachios, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "dIh" = ( /turf/open/gm/coast/west, /area/strata/ug/interior/jungle/deep/tearlake) -"dIl" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +"dIt" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, /turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"dJm" = ( -/obj/structure/largecrate/random, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"dKh" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/area/strata/ag/interior/outpost/security) +"dIC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"dJW" = ( +/obj/item/reagent_container/food/drinks/shaker, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "dKj" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/tearlake) -"dKA" = ( -/obj/structure/machinery/door/airlock/prison{ - dir = 1; - name = "Reinforced Airlock" +"dKm" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/good_item, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"dKq" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/suit/storage/apron/overalls, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"dKP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/pouch/flare/full, +/obj/item/weapon/gun/pistol/t73, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"dKV" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"dKY" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/gen/bball) +"dLa" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"dKH" = ( /turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"dLo" = ( -/obj/effect/glowshroom/single, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/north_lz_caves) -"dMw" = ( -/obj/structure/cargo_container/wy/left, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/marsh) -"dNd" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) -"dNh" = ( +/area/strata/ag/interior/outpost/canteen) +"dLr" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/area/strata/ag/interior/outpost/canteen) +"dMy" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/engi/drome) +"dMz" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/tcomms) +"dNo" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) "dNq" = ( /turf/open/gm/coast/north, /area/strata/ug/interior/jungle/deep/east_dorms) @@ -12448,41 +12518,48 @@ }, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_carp) -"dNG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 +"dNK" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/administration) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"dNL" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) "dNM" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"dNR" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen/bar) +"dNW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/lightreplacer, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) "dOc" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_engi) +"dOe" = ( +/obj/structure/surface/rack, +/obj/item/explosive/grenade/phosphorus, +/obj/item/explosive/grenade/phosphorus, +/obj/item/folder/red, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) +"dOh" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"dOj" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med1) "dOG" = ( /obj/structure/prop/almayer/computers/sensor_computer3, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/restricted/devroom) -"dOL" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/paths/dorms_quad) "dOO" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/vanyard) @@ -12492,37 +12569,60 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) +"dPc" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "dPf" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) -"dPA" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 +"dPu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"dPE" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 1 + }, +/turf/open/floor/almayer/test_floor5, +/area/strata/ug/interior/jungle/deep/structures/res) "dQq" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) -"dQG" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"dRt" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname{ - dir = 8 +"dQv" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) +"dRm" = ( +/obj/item/stool, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"dSg" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/area/strata/ag/exterior/shed_five_caves) +"dSs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/briefcase, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"dSu" = ( +/obj/structure/bookcase, +/obj/item/book/manual/atmospipes, +/obj/item/book/manual/engineering_guide, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) "dSA" = ( /obj/structure/bed{ icon_state = "abed" @@ -12539,86 +12639,76 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"dSD" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) -"dSQ" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/item/explosive/grenade/high_explosive/upp, +"dSG" = ( /obj/item/stack/rods, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) "dSU" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"dSZ" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) -"dTc" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"dTk" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "dTq" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) -"dTV" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +"dTu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4 }, -/obj/structure/mirror{ - pixel_y = 28 +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"dTY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"dTy" = ( +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 16 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"dUd" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "dUl" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/tearlake) -"dUR" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"dVw" = ( +"dUC" = ( +/obj/structure/toilet, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"dVY" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) +/obj/effect/landmark/wo_supplies/storage/belts/medical, +/obj/item/dogtag, +/obj/item/clothing/suit/armor/riot, +/obj/item/weapon/gun/rifle/type71/carbine, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/admin) +"dUM" = ( +/obj/item/device/motiondetector, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"dUO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "dWc" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -12626,101 +12716,80 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/interior/tatami, /area/strata/ag/interior/restricted) -"dWe" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 +"dWm" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/strata/ag/interior/outpost/gen/bball) +"dWn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) -"dWh" = ( -/obj/item/paper_bin, -/obj/item/tool/pen/blue, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"dWt" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"dWw" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/structure/pipes/vents/pump{ +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/computer/cameras{ dir = 1 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"dWl" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) +"dWH" = ( /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"dWm" = ( -/turf/closed/wall/strata_outpost/reinforced, -/area/strata/ag/interior/outpost/gen/bball) +/area/strata/ug/interior/outpost/jung/dorms/med2) "dXc" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/dorms_quad) -"dXG" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/research_decks) "dXQ" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med1) -"dXR" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) "dXX" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"dYm" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"dYx" = ( +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/outpost/jung/dorms/admin4) -"dYu" = ( -/obj/item/stool, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/area/strata/ug/interior/jungle/deep/structures/res) +"dYC" = ( +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"dYG" = ( +/obj/structure/inflatable/popped, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"dYN" = ( +/obj/effect/landmark/corpsespawner/russian, +/obj/structure/bed/roller, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) "dZl" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/north_outpost) -"dZt" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"dZF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/security) -"dZQ" = ( -/obj/structure/prop/turbine_extras, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"eaa" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/marsh/river) -"eah" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) +"dZD" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/personal_storage) "eai" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -12731,129 +12800,129 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"eay" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"eaD" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"eaI" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) "eaO" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) "eaR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/asphalt/cement/cement14, +/area/strata/ug/interior/jungle/platform/east/scrub) +"ebf" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"ebk" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/type71, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) -"eaW" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"ebe" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen) -"ebl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"ebI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/stamp, +/obj/item/paper_bin, +/obj/item/device/megaphone, +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"ebU" = ( +/turf/open/asphalt/cement/cement15, +/area/strata/ag/interior/landingzone_1) +"eck" = ( +/obj/structure/inflatable/popped/door, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"eco" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"ecw" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"ecj" = ( -/obj/structure/inflatable/door, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball) -"ecS" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xtracks" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"ecD" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) -"ecV" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/engi) -"edw" = ( +"ecH" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) +"ecM" = ( +/obj/item/storage/belt/security/MP/UPP, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"ecN" = ( +/obj/structure/bed, +/obj/structure/machinery/light/small, /obj/effect/decal/cleanable/blood, -/obj/item/ammo_magazine/revolver/spearhead{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"edU" = ( -/obj/structure/machinery/blackbox_recorder, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/item/prop/almayer/flight_recorder/colony{ - pixel_x = -6; - pixel_y = 10 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"eeC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/spawner/random/toolbox, +/obj/item/bedsheet/medical, +/obj/item/storage/large_holster/machete/full, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"ecZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/peppermill, +/obj/item/device/encryptionkey/dutch, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"edt" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, /turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"eeH" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"eeK" = ( -/obj/effect/decal/cleanable/blood/gibs/body, +/area/strata/ag/exterior/marsh/crash) +"edE" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"edY" = ( /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"efu" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/area/strata/ug/interior/jungle/deep/structures/res) +"eec" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"efe" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"efL" = ( -/obj/structure/surface/table/almayer, -/obj/effect/decal/cleanable/cobweb2, -/obj/effect/spawner/random/toolbox, -/obj/structure/machinery/light/small{ +/area/strata/ag/interior/nearlz1) +"efm" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/item/stack/rods, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"efp" = ( +/obj/structure/machinery/door/airlock/prison{ dir = 1; - pixel_y = 20 + name = "Reinforced Airlock" }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"efq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"efw" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) "efR" = ( /obj/structure/cryofeed, /turf/open/gm/river, @@ -12862,53 +12931,39 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ag/interior/mountain) -"egc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) "egh" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) +"egj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen) "egq" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/machinery/shower{ - dir = 8 +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" }, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/administration) -"egw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 2 +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/admin) +"egy" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"egQ" = ( -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/effect/decal/strata_decals/grime/grime4{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms) -"egU" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/area/strata/ag/interior/outpost/security) +"egK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"egO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/item/stack/cable_coil/random, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "egV" = ( /obj/structure/cargo_container/arious/right{ health = 5000; @@ -12916,202 +12971,143 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"ehf" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 +"ehx" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"ehC" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +/obj/item/weapon/harpoon, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "ehH" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) -"eiq" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "eiM" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/nearlz2) -"eiO" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) -"eiY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/spacecash/c500, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, +"eiW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/almayer/plate, /area/strata/ug/interior/jungle/deep/structures/res) -"eja" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"ejh" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/stack/rods, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"ejj" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) "ejw" = ( /obj/item/weapon/gun/pistol/t73, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"ejx" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"ejy" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/cyan3/west, -/area/strata/ag/interior/outpost/med) +"ejF" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/marsh) "ejK" = ( -/obj/structure/machinery/photocopier, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"ejL" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/storage/belt/utility/full, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) -"ejQ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) "ekc" = ( /obj/structure/barricade/snow, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/north_lz_caves) +"ekj" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin1) "ekJ" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/south_engi) +"ekO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -9; + pixel_y = 15 + }, +/obj/item/toy/deck, +/obj/item/storage/box/cups, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"elb" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"elc" = ( +/obj/structure/machinery/optable, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"ell" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) "elr" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"elT" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"elY" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" +"elz" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"emb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/utensil/pfork, -/turf/open/floor/strata/orange_tile, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/security) +"elO" = ( +/obj/structure/machinery/light/small, +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/dorms) +"eme" = ( +/obj/structure/bed/roller, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) "emg" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"emu" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) +"emi" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "emv" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"enk" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 +"eob" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/research_decks/security) -"env" = ( -/obj/structure/surface/rack, -/obj/item/device/radio, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"enV" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/security) -"eon" = ( -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) -"eop" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"eoA" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/crash) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) "eoK" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/center) -"eoO" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"eoS" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"eoV" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata/cyan1/east, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"eoW" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/closet/bodybag, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"epa" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/admin3) "epm" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -13122,33 +13118,49 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"epp" = ( -/obj/item/explosive/grenade/high_explosive/upp, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"epW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, +"epq" = ( +/obj/structure/surface/rack, +/obj/item/toy/deck, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"epA" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"epY" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms) +"eql" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"eqs" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"eqv" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) "eqO" = ( /obj/structure/sign/safety/biohazard, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/tcomms) -"ero" = ( -/obj/structure/bookcase, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) +"eqT" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/blue3/west, +/area/strata/ag/interior/outpost/admin) "erq" = ( /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"erw" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) "ery" = ( /obj/structure/barricade/snow{ dir = 4 @@ -13156,160 +13168,175 @@ /obj/structure/barricade/snow, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/north_lz_caves) -"erP" = ( -/obj/structure/machinery/light/small{ +"erH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"esf" = ( -/obj/item/stack/sandbags/large_stack, -/turf/open/floor/strata/floor3, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) -"esr" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/floor3, +"erN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) -"esy" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"esW" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"etx" = ( -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/bicaridine, -/obj/item/tool/crowbar, +"erO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications, /obj/structure/machinery/light/small{ - dir = 8 + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/multi_tiles/southwest, +/turf/open/floor/almayer/plate, /area/strata/ug/interior/jungle/deep/structures/res) -"etB" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" +"erW" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"etE" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/plump_pie, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"etK" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"esj" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/item/storage/pill_bottle/spaceacillin, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"esV" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"etH" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 1 }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/landingzone_1) +"eua" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "euc" = ( /obj/structure/platform_decoration/strata{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"eus" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"euI" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi/drome) -"euR" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/engineering_construction, -/obj/item/book/manual/engineering_hacking, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "euZ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/tearlake) -"evv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 1 +"evw" = ( +/obj/structure/bedsheetbin, +/obj/item/device/binoculars/range, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"evJ" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/landingzone_2) +"evK" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"ewf" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "ewk" = ( /obj/structure/machinery/camera/autoname/lz_camera, /turf/open/floor/plating, /area/strata/ag/exterior/landingzone_2) -"ewF" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, +"ewm" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"ewy" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"ewC" = ( /obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" + icon_state = "pottedplant_21" }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"ewS" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"ewK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/reagent_container/spray/cleaner, +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/asphalt/cement/cement1, -/area/strata/ug/interior/jungle/platform/east/scrub) -"exd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/space_mountain_wind, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"exH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/south) +"eyI" = ( +/obj/structure/machinery/constructable_frame, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"eyV" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"ezx" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"eye" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan3/east, -/area/strata/ag/interior/outpost/med) -"eyt" = ( -/obj/structure/largecrate/random, -/obj/item/toy/deck, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/center) -"eyW" = ( -/obj/effect/landmark/corpsespawner/security/liaison, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"eza" = ( -/obj/item/tool/pen/blue, -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata/white_cyan2, -/area/strata/ag/interior/outpost/med) -"ezd" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 2 +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"eAW" = ( +/obj/structure/machinery/smartfridge, +/obj/structure/machinery/door/window/eastright{ + dir = 1 }, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/engi) -"ezw" = ( -/obj/structure/machinery/computer/crew, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/admin) -"ezF" = ( +"eBc" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"eBM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"eBP" = ( /obj/structure/sink{ dir = 8; pixel_x = -11 @@ -13319,130 +13346,115 @@ }, /turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/structures/res) -"ezG" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms) -"ezT" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"eAd" = ( -/obj/structure/platform/strata/metal{ +"eBQ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) -"eAm" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"eAC" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"eAN" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/sliceable/bread, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"eAT" = ( -/turf/open/floor/strata/white_cyan2/west, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi/drome) -"eAV" = ( -/obj/structure/barricade/snow, +"eCd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/floor3, -/area/strata/ag/exterior/paths/cabin_area) -"eBh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"eCe" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"eCn" = ( +/obj/structure/window/framed/strata, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/engi) -"eCo" = ( +/area/strata/ag/interior/landingzone_checkpoint) +"eCv" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) +"eCx" = ( +/obj/structure/machinery/disposal, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"eDh" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"eCE" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"eDS" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"eEj" = ( -/obj/structure/kitchenspike, /turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"eEk" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"eEB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/station_alert{ +/area/strata/ag/interior/outpost/med) +"eCK" = ( +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"eED" = ( -/obj/item/storage/briefcase, +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement15, +/area/strata/ug/interior/jungle/deep/minehead) +"eCL" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/t73, +/obj/item/restraint/handcuffs, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"eDv" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) -"eEG" = ( -/obj/structure/barricade/handrail/strata{ +/obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"eEH" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"eFy" = ( +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"eDS" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"eEm" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) +"eEN" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/colony{ +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"eES" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"eFm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18" + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) +"eFo" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ dir = 8 }, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"eFs" = ( +/obj/structure/window/framed/strata, /turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/security) +/area/strata/ag/interior/landingzone_checkpoint) "eFA" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"eFP" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) -"eFW" = ( -/obj/structure/surface/rack, -/obj/item/toy/deck, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"eFZ" = ( -/obj/effect/landmark/crap_item, -/obj/structure/surface/table/reinforced/prison, +"eFY" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"eGo" = ( +/obj/structure/window/reinforced/tinted, +/obj/item/stool, /turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "eGq" = ( @@ -13450,49 +13462,24 @@ /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"eGt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/administration) -"eGz" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) "eGF" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) -"eHf" = ( -/obj/structure/bed/chair{ - dir = 4 +"eGQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/med) "eHv" = ( /obj/structure/platform/strata{ dir = 8 }, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/nearlz2) -"eHC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/obj/effect/decal/warning_stripes, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"eHV" = ( -/obj/structure/fence, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/nearlz2) "eIB" = ( /obj/structure/flora/grass/tallgrass/jungle, /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -13500,10 +13487,14 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"eIF" = ( +"eIM" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/strata/cyan1/east, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "eIT" = ( /obj/structure/closet/fireaxecabinet, @@ -13517,19 +13508,6 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"eJp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) -"eJq" = ( -/turf/open/floor/strata/white_cyan3/east, -/area/strata/ag/interior/outpost/med) "eJs" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/barricade/snow{ @@ -13537,67 +13515,65 @@ }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) -"eJA" = ( -/obj/structure/dispenser/oxygen, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) "eJG" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"eJX" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 16 - }, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) -"eKc" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - name = "Emergency NanoMed"; - pixel_x = 30 +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/obj/structure/machinery/light/small{ +/obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/strata/cyan1/east, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) +"eJK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/white_cyan4/north, /area/strata/ag/interior/outpost/med) "eKT" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"eLd" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/strata/blue3/east, +/area/strata/ag/interior/outpost/admin) +"eLp" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) "eLC" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"eLJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, +"eLI" = ( +/obj/structure/closet/secure_closet/freezer/fridge, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"eLK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/mushroompizzaslice, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"eLR" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/administration) -"eMo" = ( -/obj/item/dogtag, -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/bar) +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"eLT" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"eMy" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating/platebot, +/area/strata/ag/interior/outpost/engi/drome) "eMz" = ( /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/tearlake) @@ -13609,24 +13585,34 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/vanyard) -"eNm" = ( -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/engi/drome) -"eNG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"eNu" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 }, -/obj/effect/decal/warning_stripes, -/obj/structure/holohoop{ - dir = 4; - id = "basketball"; - side = "left" +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"eNx" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"eNF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/structure/barricade/handrail/strata{ - dir = 8 +/obj/structure/platform/strata/metal{ + dir = 1 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"eNS" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"eNT" = ( +/obj/structure/surface/rack, +/obj/item/storage/briefcase, +/turf/open/floor/strata, +/area/strata/ag/interior/disposals) "eNW" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -13639,10 +13625,25 @@ /obj/structure/filingcabinet, /turf/open/floor/strata, /area/strata/ag/interior/administration) -"eOs" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) +"eOi" = ( +/obj/structure/machinery/door/airlock/prison{ + name = "Reinforced Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"eOj" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) +"eOk" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) "eOz" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/blood/oil, @@ -13655,48 +13656,26 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/interior/restricted) -"eON" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"eOT" = ( +"ePB" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"eQg" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/monkeyburger, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"ePe" = ( -/obj/structure/closet/wardrobe/red, -/obj/item/clothing/suit/imperium_monk, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"ePw" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"eQi" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_full" + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"eQm" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/recharge_station, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"eQv" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/vanyard) -"eQJ" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"eRh" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/storage/box/explosive_mines, -/obj/item/storage/box/explosive_mines, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) +/area/strata/ag/interior/tcomms) "eRk" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -13707,484 +13686,503 @@ }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"eRL" = ( -/obj/structure/bed/nest, -/obj/item/ammo_magazine/revolver/spearhead{ - pixel_x = 6; - pixel_y = -4 +"eRw" = ( +/obj/structure/closet/coffin, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"eRD" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/gen/bball) +"eRG" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/corpsespawner/russian, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"eRR" = ( -/obj/structure/machinery/gibber, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) "eRV" = ( /obj/structure/surface/table, /obj/item/handset, /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) -"eSc" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"eSj" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2, -/area/strata/ag/interior/outpost/med) "eSx" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/med) -"eSI" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"eTc" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" +"eSA" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"eSS" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/recharge_station, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/vanyard) +"eSZ" = ( +/obj/structure/platform/strata/metal{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"eTm" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/turf/open/floor/strata/red3, +/area/strata/ag/interior/outpost/med) +"eTv" = ( +/obj/structure/prop/almayer/computers/mapping_computer, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) +"eTQ" = ( +/obj/structure/surface/rack, +/obj/item/paper_bin, +/obj/item/stack/sheet/glass, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"eTu" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"eUm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"eUq" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) -"eUh" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) -"eUr" = ( -/obj/structure/closet/basketball, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) +"eUM" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"eUS" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/security) "eVc" = ( /obj/structure/platform/strata/metal{ dir = 8 }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) -"eVI" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/interior/outpost/gen/bball/nest) -"eVW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) -"eXn" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"eXt" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light/small{ - dir = 4 +"eVo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"eXP" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"eYN" = ( -/obj/structure/barricade/handrail/strata{ +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"eVG" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/asphalt/cement/cement9, -/area/strata/ag/exterior/marsh) -"eYQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/pizza, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"eYZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/res) -"eZn" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) -"eZH" = ( /obj/structure/bed/chair{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"fba" = ( -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) -"fbg" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"fbk" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"fbE" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"fbU" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"fch" = ( -/obj/structure/largecrate/random, -/turf/open/auto_turf/snow/brown_base/layer0, -/area/strata/ag/interior/outpost/engi/drome) -"fcj" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"eVI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/auto_turf/snow/brown_base/layer1, +/area/strata/ag/interior/outpost/gen/bball/nest) +"eVP" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/landingzone_checkpoint) +"eWf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) +"eWS" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"fcp" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"eWV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"eXi" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; - dir = 4; icon_state = "p_stair_full" }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) -"fcC" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"fcX" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"eXE" = ( +/obj/structure/bed/chair{ + dir = 8 }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"fcY" = ( +/area/strata/ug/interior/outpost/jung/dorms/med1) +"eYc" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"eYv" = ( +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"eYK" = ( /obj/structure/bed/chair/dropship/passenger{ - dir = 8 + dir = 4 }, /obj/effect/decal/cleanable/blood, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/almayer/test_floor5, /area/strata/ag/exterior/marsh/crash) -"fdq" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"fdr" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"fdL" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/landingzone_checkpoint) -"feR" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"eYY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/strata/blue3/west, -/area/strata/ag/interior/outpost/admin) -"feU" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/landingzone_2) -"ffy" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/landingzone_2) -"ffW" = ( -/obj/structure/bed/nest, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"ffZ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) +"eZx" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/vanyard) +"eZI" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"eZM" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, +/obj/structure/platform/strata/metal, /turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"fgp" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"fgF" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/orange_edge/west, -/area/strata/ag/interior/dorms) -"fgJ" = ( +/area/strata/ag/exterior/research_decks) +"eZP" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement14, +/area/strata/ug/interior/jungle/platform/east/scrub) +"fay" = ( +/obj/structure/closet/bombcloset, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"faB" = ( /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 1 }, +/turf/open/floor/strata/cyan3/west, +/area/strata/ag/interior/outpost/med) +"faC" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/miner, /turf/open/floor/strata/fake_wood, /area/strata/ug/interior/jungle/deep/minehead) -"fgT" = ( -/obj/item/storage/box/ids, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/ids, -/obj/structure/window/reinforced/tinted, +"fbK" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"fbQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"fch" = ( +/obj/structure/largecrate/random, +/turf/open/auto_turf/snow/brown_base/layer0, +/area/strata/ag/interior/outpost/engi/drome) +"fcp" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) +"fcY" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"fdD" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + name = "Emergency NanoMed"; + pixel_x = 30 + }, /turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"fgX" = ( -/obj/effect/decal/strata_decals/grime/grime4{ - dir = 1 +/area/strata/ag/interior/landingzone_checkpoint) +"fdZ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"fea" = ( +/obj/structure/largecrate/random, +/obj/item/storage/belt/marine/upp/sapper, +/turf/open/asphalt/cement, +/area/strata/ag/exterior/research_decks) +"fff" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"fhx" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ - dir = 1 +/area/strata/ag/interior/outpost/canteen/personal_storage) +"ffH" = ( +/obj/structure/machinery/space_heater, +/obj/item/device/flashlight/lamp{ + pixel_y = 11 }, -/obj/structure/barricade/handrail/strata{ +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"fhD" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"ffL" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"ffV" = ( +/obj/item/toy/deck, /obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"fgd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/curtain/open/shower, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"fgt" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/item/storage/pill_bottle/spaceacillin, -/turf/open/floor/strata/cyan2/east, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"fhF" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 +"fgD" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi) -"fhV" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/landingzone_1) -"fij" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"fgP" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 8 }, +/obj/item/stack/folding_barricade, +/obj/item/weapon/gun/rifle/type71/carbine, /turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) +"fgQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/administration) +"fhn" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"fii" = ( +/obj/item/storage/toolbox/electrical, +/obj/structure/surface/rack, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "fil" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/mountain) -"fjw" = ( +"fim" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"fiu" = ( +/obj/item/clothing/gloves/white, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"fjx" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"fjd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/obj/structure/barricade/handrail/strata, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 +/obj/structure/machinery/door/window/eastright{ + dir = 2 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"fjy" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"fjo" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"fjT" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"fjy" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; dir = 8; - icon_state = "pipe-c" + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"fjM" = ( +/obj/structure/barricade/wooden{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"fjV" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"fjW" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) "fjZ" = ( /obj/structure/platform_decoration/strata{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) +"fkm" = ( +/obj/item/trash/pistachios, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "fkD" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1"; opacity = 0 }, /area/strata/ag/exterior/marsh/crash) -"fkE" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) "fkG" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/river) -"fkI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/bar) -"fkL" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"fkZ" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/platform/east/scrub) "fli" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"flk" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/item/stool, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "fln" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/gen/bball/nest) -"flv" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/shed_five_caves) +"flz" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) "flK" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/med) -"fmi" = ( -/obj/structure/lz_sign/sorokyne_sign/interior, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"fmP" = ( -/obj/structure/platform/strata/metal{ - dir = 1 +"flQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"fnd" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"fnf" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"fnA" = ( -/turf/open/floor/strata/blue3/east, -/area/strata/ag/interior/outpost/admin) -"fnB" = ( -/obj/structure/bed/chair, /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"fnE" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 +/area/strata/ag/interior/outpost/gen/bball) +"flW" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/machinery/camera/autoname{ - dir = 8 +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"flX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"fnV" = ( -/obj/structure/window/reinforced/tinted, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"fmx" = ( /turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"fnq" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"fnr" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"fnB" = ( +/turf/open/asphalt/cement/cement9, +/area/strata/ag/interior/landingzone_1) +"fnC" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) -"foc" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) -"foe" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/down, -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "fow" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"fpe" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/med) -"fpr" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"fpC" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"fqs" = ( -/obj/item/tool/kitchen/knife/butcher, -/obj/structure/surface/table/reinforced/prison, +"foQ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"fpg" = ( +/turf/open/asphalt/cement/cement15, +/area/strata/ag/exterior/landingzone_2) +"fpn" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"fpT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) +/area/strata/ag/interior/outpost/med) +"fqb" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"fqy" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "fqQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 @@ -14192,11 +14190,24 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/cabin_area) -"frd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) +"fqT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"fqW" = ( +/obj/structure/largecrate/guns/russian, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"frb" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) "fre" = ( /obj/structure/platform_decoration/strata/metal{ dir = 8 @@ -14204,32 +14215,20 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"frt" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan3/northeast, -/area/strata/ag/interior/outpost/med) -"fry" = ( -/obj/structure/surface/rack, -/obj/item/paper_bin, -/obj/item/stack/sheet/glass, +"frg" = ( +/obj/item/reagent_container/glass/bucket/janibucket, /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"frI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/foyer) -"fsx" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/area/strata/ag/interior/outpost/canteen) +"fsw" = ( +/obj/structure/morgue, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "fsJ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -14238,151 +14237,111 @@ /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) "fsU" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/strata/red3/north, -/area/strata/ag/interior/outpost/med) -"fsV" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"fsX" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/interior/plastic, -/area/strata/ag/interior/paths/cabin_area/central) +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) "ftr" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"fus" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan3, -/area/strata/ag/interior/outpost/med) -"fuu" = ( -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/dorms/hive) -"fuV" = ( -/obj/structure/machinery/light/small, +"fty" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/interior/dorms) +"fuq" = ( +/obj/item/book/manual/security_space_law, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"fuP" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) +/area/strata/ug/interior/jungle/platform/east/scrub) "fuX" = ( /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"fvl" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) "fvt" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"fvG" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"fvR" = ( +/obj/item/storage/box/cups, +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/book/manual/surgery, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) "fwc" = ( /obj/structure/dropship_equipment/mg_holder, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"fwk" = ( -/obj/item/stack/catwalk, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor5, -/area/strata/ag/interior/outpost/engi/drome/shuttle) +"fwe" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/storage/secure/briefcase, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"fwn" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" + }, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"fwB" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "fwV" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/north_outpost) -"fwZ" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi) -"fxi" = ( -/obj/structure/bed/chair{ +"fxR" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"fxt" = ( -/obj/structure/curtain/medical, /turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"fye" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/white_cyan2, /area/strata/ag/interior/outpost/med) -"fxu" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"fxv" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement14, -/area/strata/ag/interior/landingzone_1) -"fyb" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"fyk" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"fyl" = ( -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"fyE" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/landingzone_checkpoint) -"fyI" = ( -/obj/structure/closet/basketball, -/turf/open/floor/strata/cyan1/east, +"fyf" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/gen/bball) "fyP" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/east_dorms) -"fyV" = ( -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/almayer/plate, -/area/strata/ag/exterior/marsh/crash) -"fyZ" = ( -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"fzf" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/red3, -/area/strata/ag/interior/outpost/med) -"fzw" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +"fzc" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/engi) +"fzx" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms) "fzz" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 10 @@ -14399,60 +14358,57 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) +"fzF" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"fzL" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"fzM" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "fzN" = ( /obj/structure/barricade/snow{ dir = 4 }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) -"fzQ" = ( -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"fzR" = ( -/turf/open/asphalt/cement/cement1, -/area/strata/ag/interior/landingzone_1) "fAb" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"fAd" = ( -/obj/effect/decal/cleanable/blood/oil, +"fAi" = ( +/obj/structure/filingcabinet, /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"fAv" = ( -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 8 + dir = 6 }, -/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) +/area/strata/ag/interior/tcomms) "fAS" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/crash) -"fBe" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan3, -/area/strata/ag/interior/outpost/med) "fBh" = ( /obj/effect/spawner/random/tool, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"fBo" = ( -/obj/structure/inflatable/popped/door, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"fBs" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/research_decks/security) +"fBA" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "fBC" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -14460,44 +14416,25 @@ }, /turf/open/floor/plating, /area/strata/ag/exterior/research_decks) -"fBD" = ( -/obj/structure/machinery/door/airlock/prison{ - dir = 1; - name = "Reinforced Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"fBG" = ( -/mob/living/simple_animal/hostile/carp{ - desc = "You think this might be Glubs's son." - }, -/turf/open/gm/dirt, -/area/strata/ug/exterior/jungle/deep/carplake_center) -"fBJ" = ( -/obj/item/reagent_container/food/snacks/carpmeat, -/obj/structure/closet/secure_closet/security/soro, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"fCd" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/flight_control) -"fCm" = ( -/turf/open/floor/strata/blue4/north, -/area/strata/ag/interior/outpost/admin) +"fBN" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "fCo" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"fCq" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) "fCz" = ( /turf/open/gm/coast/north, /area/strata/ug/interior/jungle/deep/tearlake) +"fCB" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "fCE" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -14511,116 +14448,141 @@ "fCI" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/crash) -"fCQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) -"fDb" = ( -/obj/item/weapon/gun/revolver/spearhead, -/obj/structure/surface/rack{ - layer = 2.5 +"fCJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/item/ammo_magazine/revolver/spearhead, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"fDl" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"fCT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/spacecash/c500, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"fDh" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"fDv" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"fDE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) "fDG" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/cabin_area) -"fDK" = ( -/obj/structure/largecrate/random/barrel/green, +"fEi" = ( /obj/structure/machinery/light/small, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"fDY" = ( -/obj/structure/prop/turbine, -/obj/structure/prop/turbine_extras/border, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"fEh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/item/stack/catwalk, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"fEv" = ( -/obj/item/stack/medical/splint, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"fEC" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/effect/decal/strata_decals/grime/grime4{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"fFa" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 +/area/strata/ag/interior/outpost/canteen/personal_storage) +"fEz" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/turf/open/floor/strata/blue1, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/minehead) +"fEH" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/handcuffs, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) +"fEN" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "fFy" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 5 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"fGV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"fFD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"fHi" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"fHz" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) +"fFS" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"fHM" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan3/north, +/area/strata/ag/interior/outpost/med) +"fGg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"fGu" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"fHK" = ( +/obj/item/storage/pill_bottle/russianRed, +/obj/item/storage/pill_bottle/russianRed, +/obj/structure/surface/rack, +/obj/item/storage/pill_bottle/inaprovaline, +/obj/item/storage/box/gloves, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"fHR" = ( +/obj/structure/reagent_dispensers, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/area/strata/ug/interior/jungle/deep/structures/res) "fHW" = ( /obj/structure/platform_decoration/strata/metal{ dir = 4 }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) -"fIk" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"fHY" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"fIe" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "fIF" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, @@ -14635,6 +14597,25 @@ /obj/effect/landmark/ert_spawns/groundside_xeno, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) +"fIJ" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"fIQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"fJg" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) +"fJG" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "fJV" = ( /obj/structure/closet/secure_closet/medical3{ req_access = null @@ -14645,31 +14626,15 @@ }, /turf/open/floor/interior/plastic, /area/strata/ag/interior/paths/cabin_area/central) -"fKw" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/barricade/handrail/strata{ - dir = 4 +"fKC" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) -"fKO" = ( -/obj/item/storage/briefcase, -/turf/open/floor/strata/red1, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms) "fKT" = ( /turf/open/gm/river, /area/strata/ug/interior/jungle/deep/south_engi) -"fLi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"fLk" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) "fLl" = ( /obj/structure/bed/chair{ dir = 4 @@ -14679,17 +14644,36 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"fLE" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"fMc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" +"fLr" = ( +/obj/item/stack/catwalk, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"fLD" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/item/weapon/gun/revolver/upp, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"fLH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"fLR" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) +"fMa" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade, +/obj/item/weapon/gun/rifle/type71/carbine, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "fMr" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -14701,12 +14685,8 @@ /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) "fMG" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement15, -/area/strata/ag/exterior/marsh) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "fMP" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -14717,6 +14697,10 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) +"fMQ" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) "fNs" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, @@ -14725,12 +14709,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"fNu" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "fNH" = ( /obj/item/reagent_container/food/drinks/cans/space_mountain_wind, /obj/structure/disposalpipe/segment{ @@ -14739,190 +14717,260 @@ /obj/item/stack/catwalk, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"fPO" = ( -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/interior/mountain) -"fPR" = ( -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"fQI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"fNR" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/white_cyan3/east, +/turf/open/asphalt/cement/cement9, +/area/strata/ug/interior/jungle/platform/east/scrub) +"fNV" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/med) -"fQY" = ( -/obj/structure/machinery/light/small, +"fOu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms/south) +"fOI" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"fPr" = ( +/obj/item/clothing/mask/cigarette/cigar/cohiba, +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/storage/box/masks{ + pixel_x = -5; + pixel_y = 14 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"fRc" = ( -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"fRi" = ( -/obj/structure/platform_decoration/strata{ - dir = 8 +"fPt" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/auto_turf/ice/layer0, -/area/strata/ag/exterior/marsh) -"fRn" = ( /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"fRy" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, +/area/strata/ag/interior/outpost/admin) +"fPJ" = ( +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"fPO" = ( +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/interior/mountain) +"fPU" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/type71, /obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"fQc" = ( +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"fQj" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"fQE" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; dir = 1; - pixel_y = 20 + icon_state = "p_stair_full" }, -/turf/open/floor/strata/orange_cover, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) +"fRi" = ( +/obj/structure/platform_decoration/strata{ + dir = 8 + }, +/turf/open/auto_turf/ice/layer0, +/area/strata/ag/exterior/marsh) +"fSn" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "fSr" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/shed_five_caves) +"fSz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/marsh) +"fSQ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "fSR" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) -"fTv" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"fTH" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/type71/carbine, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) -"fUk" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 +"fSX" = ( +/obj/structure/closet/secure_closet/chemical{ + req_access = null }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"fUq" = ( -/obj/structure/filingcabinet/filingcabinet, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"fUy" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"fUQ" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +/obj/effect/decal/cleanable/blood/oil, +/obj/item/storage/pill_bottle/alkysine, +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"fVa" = ( -/obj/item/clipboard, -/obj/item/clipboard, -/obj/structure/surface/rack, -/obj/item/storage/box/cups, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"fTd" = ( +/obj/structure/reagent_dispensers/water_cooler, /turf/open/floor/strata/floor3, /area/strata/ug/interior/jungle/deep/structures/res) -"fWs" = ( -/turf/closed/wall/mineral/gold, -/area/strata/ag/interior/outpost/med) -"fWC" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 1 +"fTh" = ( +/obj/structure/machinery/door/airlock/prison{ + name = "Reinforced Airlock" }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"fWW" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"fUe" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) +"fVI" = ( /obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) +"fVK" = ( +/obj/item/book/manual/surgery, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) -"fXk" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) -"fXq" = ( -/obj/structure/closet/lawcloset, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"fVL" = ( +/obj/structure/prop/dam/truck/cargo, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"fWm" = ( +/obj/structure/barricade/handrail/strata, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"fXy" = ( -/obj/structure/bed/chair/office/light{ +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"fWo" = ( +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"fWs" = ( +/turf/closed/wall/mineral/gold, +/area/strata/ag/interior/outpost/med) +"fWS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"fXd" = ( +/obj/structure/surface/rack, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"fXu" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 1 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"fXA" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"fXL" = ( -/obj/structure/bed/chair, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/landingzone_2) +"fXG" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/asphalt/cement/cement14, +/area/strata/ag/exterior/marsh) "fXM" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/bed/chair{ +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/secure_data{ dir = 4 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) "fXZ" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"fZe" = ( -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"fZt" = ( -/obj/structure/prop/turbine_extras/left, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"fZD" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/window{ - pixel_y = 31 +/obj/structure/pipes/vents/pump/on, +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/item/reagent_container/food/snacks/sliceable/pumpkinpie, -/obj/item/reagent_container/food/snacks/cherrypie{ - pixel_y = 13 +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"fYa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/machinery/door/window{ - pixel_y = 10 +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/obj/structure/window{ - dir = 8; - pixel_y = 10 +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/obj/structure/window, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"gaa" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/obj/structure/barricade/handrail/strata{ + dir = 8 }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"fYr" = ( +/obj/structure/closet/crate/radiation, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) +"fZd" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"fZe" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"fZE" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"fZU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"fZZ" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) "gab" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1"; opacity = 0 }, /area/strata/ag/exterior/marsh/crash) -"gae" = ( -/obj/structure/flora/bush/ausbushes/ppflowers, -/obj/structure/bed/medevac_stretcher, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/exterior/jungle/deep/carplake_center) +"gaf" = ( +/obj/item/stool, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) "gaq" = ( /obj/structure/largecrate/random, /obj/structure/pipes/standard/simple/hidden/cyan{ @@ -14930,179 +14978,201 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) +"gar" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) "gaA" = ( /obj/structure/largecrate/random, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/engi/drome) -"gaK" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"gaL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/item/storage/briefcase, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) "gaV" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/marsh/crash) -"gbk" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) -"gcj" = ( -/turf/open/gm/coast/beachcorner2/south_east, -/area/strata/ug/interior/jungle/deep/tearlake) -"gco" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"gbh" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"gcK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"gbm" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"gbG" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"gbJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"gcR" = ( -/obj/structure/toilet{ +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"gdc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"gdz" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"gdO" = ( -/obj/structure/inflatable/popped, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"gec" = ( -/obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) -"geg" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"gel" = ( +"gbQ" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"gcd" = ( +/obj/structure/closet/wardrobe/suit, /obj/structure/machinery/light/small{ dir = 1 }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"gcj" = ( +/turf/open/gm/coast/beachcorner2/south_east, +/area/strata/ug/interior/jungle/deep/tearlake) +"gdg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/cigarette/cigar/cohiba, +/obj/structure/machinery/light/small{ + dir = 8 + }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"geU" = ( +/area/strata/ag/interior/outpost/med) +"gdq" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"gdB" = ( /obj/structure/surface/rack, -/obj/item/storage/box/m94, -/obj/item/storage/box/m94, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, +/obj/item/book/manual/engineering_construction, +/obj/item/book/manual/engineering_hacking, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"gdX" = ( +/obj/structure/closet, +/obj/item/storage/pill_bottle/kelotane/skillless, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"geg" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi) -"gfu" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/engi) -"gfB" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/microwave, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) +"geh" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"geo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"gfo" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"gfq" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "gfI" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"ggZ" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +"ggq" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"ggM" = ( +/obj/structure/kitchenspike, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"ggQ" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) +/area/strata/ag/interior/administration) "ghi" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/paths/southresearch) -"ghJ" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) "ghV" = ( /obj/structure/sign/safety/medical, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) +"gie" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/administration) "gih" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"giI" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"giT" = ( -/obj/effect/spawner/random/tool, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"gjd" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" +"giD" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"gjb" = ( +/obj/item/storage/surgical_tray, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"gjh" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "gjk" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"gjt" = ( -/obj/structure/machinery/smartfridge, -/obj/structure/machinery/door/window/eastright{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/engi) -"gjB" = ( +"gjo" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"gju" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) +/obj/item/reagent_container/food/drinks/coffee, +/obj/item/reagent_container/food/snacks/cheesyfries, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "gjK" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"gjM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/item/tool/pen/blue, -/obj/item/storage/box/ids, -/obj/item/paper_bin, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/obj/structure/barricade/handrail/strata, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "gjN" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -15115,6 +15185,11 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) +"gkm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/folder/blue, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/south) "gkt" = ( /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/interior/outpost/engi/drome) @@ -15124,12 +15199,52 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"glD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/donkpockets, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) +"gkv" = ( +/obj/item/stack/sandbags, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"gkJ" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"gkL" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"glm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"glx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) +"glE" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"glJ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) "glL" = ( /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/mountain) @@ -15141,40 +15256,18 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/landingzone_checkpoint) -"gmz" = ( -/obj/item/storage/pill_bottle/russianRed, -/obj/item/storage/pill_bottle/russianRed, -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/inaprovaline, -/obj/item/storage/box/gloves, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"gmA" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/handcuffs, -/obj/item/storage/box/holobadge, -/obj/item/storage/box/evidence, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"gmC" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +"glP" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/exterior/paths/cabin_area) -"gmL" = ( -/obj/effect/decal/cleanable/vomit, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"gnt" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata/floor3, -/area/strata/ug/interior/jungle/deep/structures/res) +/area/strata/ug/interior/jungle/deep/structures/engi) +"gmw" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "gnG" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, @@ -15189,94 +15282,94 @@ /obj/item/reagent_container/food/drinks/cans/space_mountain_wind, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"gor" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/exterior/marsh/crash) "goG" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/north_outpost) -"gpk" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/landingzone_checkpoint) -"gpl" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) "gpp" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"gqo" = ( -/turf/open/floor/strata/white_cyan3/west, +"gpP" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/research_decks/security) +"gqt" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) +"gqx" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"gro" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) "grs" = ( /turf/closed/shuttle/ert{ icon_state = "upp16" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"grt" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/inflatable/door, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"grQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"gsg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/device/flashlight/lamp{ - pixel_x = -4; - pixel_y = 14 +"gsD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"gst" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/lady_finger, /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"gsB" = ( -/obj/structure/machinery/chem_dispenser/soda{ - pixel_y = 22 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"gsH" = ( -/obj/item/tool/kitchen/rollingpin, -/obj/item/stack/sandbags, +/area/strata/ag/interior/outpost/med) +"gsE" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"gsP" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) -"gtk" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"gtY" = ( -/obj/item/explosive/grenade/high_explosive/upp, -/obj/effect/decal/cleanable/blood/gibs/body, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/admin) +"gsX" = ( +/obj/structure/fence, +/obj/structure/fence, +/turf/open/asphalt/cement/cement9, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"gto" = ( +/obj/item/fuel_cell, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"gtr" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"gtC" = ( +/obj/effect/landmark/corpsespawner/security/liaison, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"gtQ" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "gtZ" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -15298,119 +15391,86 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"guK" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"guM" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/paths/north_outpost) "guV" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_engi) -"guZ" = ( -/obj/structure/fence, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"gvi" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"gvk" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"gvH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted{ dir = 1 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"gvp" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"gvP" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/coatrack, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"gwr" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) +"gwh" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"gws" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"gwM" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/plate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"gxt" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/res) -"gxE" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"gxa" = ( +/obj/structure/noticeboard{ + pixel_y = 32 }, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/administration) -"gxS" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xtracks" +"gyf" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"gyo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/engi/drome) +"gys" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"gyc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms/south) +"gyN" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "gzd" = ( /turf/open/gm/coast/east, /area/strata/ug/interior/jungle/deep/south_engi) -"gzg" = ( -/obj/item/fuel_cell, -/turf/open/auto_turf/snow/brown_base/layer1, -/area/strata/ag/interior/outpost/gen/bball/nest) -"gzm" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"gzz" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin1) +"gzi" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) "gzY" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/cans/beer, +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"gAe" = ( /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen/bar) -"gAp" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/stack/rods, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "gAv" = ( /obj/structure/surface/rack{ layer = 2.5 @@ -15420,15 +15480,6 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/asphalt/cement, /area/strata/ag/exterior/tcomms/tcomms_deck) -"gAy" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/research_and_development, -/obj/item/book/manual/security_space_law, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "gAD" = ( /obj/structure/machinery/iv_drip, /turf/open/floor/strata, @@ -15437,60 +15488,75 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"gBn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) "gBr" = ( /turf/open/gm/coast/west, /area/strata/ug/interior/jungle/deep/south_engi) -"gBt" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) +"gBA" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) +"gBF" = ( +/obj/item/device/radio, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "gCa" = ( /obj/item/stack/snow, /turf/open/floor/strata, /area/strata/ag/exterior/paths/north_outpost) -"gCv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"gCk" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 8; - name = "\improper Airlock" +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"gCt" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"gDe" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) "gDg" = ( /obj/structure/prop/almayer/computers/sensor_computer2, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/restricted/devroom) -"gDp" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +"gDq" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"gDw" = ( +/obj/structure/largecrate/random, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"gDx" = ( +/obj/item/weapon/gun/rifle/type71/carbine, +/obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/bball/nest) -"gEh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/prop/almayer/ship_memorial{ - desc = "A large granite slab that breaks the fabric of space time. Special thanks to Fourkhan, Tobinerd, Cakey, and all the countless playtesters that made this map possible."; - name = "slab of triumph"; - pixel_y = 2 +"gDD" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, +/obj/structure/curtain/open/medical, +/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/floor2, -/area/strata/ag/interior/restricted/devroom) -"gEm" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/nearlz1) +/area/strata/ag/interior/outpost/med) +"gDJ" = ( +/obj/effect/landmark/corpsespawner/bridgeofficer, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"gDN" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "gEo" = ( /obj/structure/platform/strata{ dir = 1 @@ -15500,54 +15566,78 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/mountain) +"gER" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"gFa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"gFk" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "gFs" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 +/obj/structure/closet/emcloset, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"gFw" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata/orange_edge/east, -/area/strata/ag/interior/dorms) -"gFt" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"gFz" = ( /obj/structure/surface/rack, -/obj/item/storage/box/explosive_mines, -/obj/item/storage/box/explosive_mines, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) +/obj/item/tool/shovel/etool/folded, +/obj/item/weapon/gun/pistol/t73, +/obj/item/attachable/bayonet/upp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/landingzone_checkpoint) +"gFD" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/engi/drome) "gFH" = ( /obj/structure/cryofeed/right, /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"gFL" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 +"gFJ" = ( +/obj/structure/toilet, +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/obj/structure/prop/ice_colony/ground_wire{ +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/red2, -/area/strata/ug/interior/jungle/deep/hotsprings) -"gGw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/admin) +"gGG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"gHf" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"gHP" = ( -/obj/structure/closet/secure_closet/freezer/fridge/full, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) "gHQ" = ( /obj/item/stack/sheet/wood, /turf/open/floor/strata, @@ -15559,24 +15649,10 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"gIF" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/med) -"gII" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) +"gIE" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) "gIY" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -15584,72 +15660,68 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"gJK" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"gJN" = ( -/obj/structure/filingcabinet, +"gJP" = ( +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/paths/north_outpost) +"gKJ" = ( /obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/engi/drome) -"gKO" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 + dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) "gKP" = ( /obj/structure/closet/secure_closet/medical2, /obj/item/clothing/gloves/latex, /turf/open/floor/interior/plastic, /area/strata/ag/interior/paths/cabin_area/central) -"gKR" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"gLi" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"gLu" = ( -/obj/structure/closet/secure_closet/security/soro, +"gLk" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"gLo" = ( +/obj/item/storage/box/ids, +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/ids, +/obj/structure/window/reinforced/tinted, /turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"gLv" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/obj/structure/machinery/light/small{ - dir = 8 +/area/strata/ag/interior/dorms) +"gLs" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 }, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) -"gLA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/strata, -/obj/item/device/flashlight/lamp/green, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"gLB" = ( -/obj/structure/machinery/cryobag_recycler, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) +"gLv" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/power/apc/power/north, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/interior/tatami, +/area/strata/ag/interior/outpost/canteen) "gLF" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/paths/north_outpost) -"gMj" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"gLO" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"gLQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, /turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) +/area/strata/ag/interior/outpost/gen/bball) +"gMb" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "gMF" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/disposalpipe/segment{ @@ -15658,163 +15730,133 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"gMW" = ( -/obj/item/weapon/gun/rifle/type71/carbine, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"gMX" = ( -/obj/item/storage/box/rxglasses, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/med) -"gNd" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 1 - }, +"gMU" = ( +/obj/structure/toilet, +/obj/structure/curtain/medical, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"gNs" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"gNJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"gNM" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"gNB" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/nearlz1) -"gNP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, +"gNE" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/strata, +/area/strata/ag/interior/landingzone_checkpoint) +"gOb" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "gOd" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/suit/storage/apron/overalls, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"gOl" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) "gOo" = ( /obj/item/stack/rods, /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"gOq" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ +"gOv" = ( +/obj/structure/closet/wardrobe/grey, +/obj/effect/landmark/wo_supplies/storage/mines, +/obj/effect/landmark/wo_supplies/storage/mines, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"gOA" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "gOL" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/gen/bball/nest) -"gPk" = ( -/obj/structure/window/framed/strata, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/administration) -"gPA" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"gPI" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) +"gPz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/meatballspagetti, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) "gPL" = ( /obj/structure/inflatable, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"gQE" = ( -/obj/structure/bed/chair{ - dir = 8 +"gPU" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/attachments, +/obj/item/storage/box/attachments, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"gRa" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"gRk" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"gQG" = ( +/obj/structure/machinery/door_control{ + id = "or01"; + name = "Surgery Door Release"; + normaldoorcontrol = 1; + pixel_x = 23 + }, +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"gRy" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/cyan3/east, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) +"gQI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"gRv" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "gRO" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/tcomms) -"gRT" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"gSh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"gSu" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"gSG" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southwest, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) -"gSt" = ( -/obj/structure/morgue{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) "gSR" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/strata/ug/interior/jungle/deep/south_engi) +"gSW" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/cyan3/east, +/area/strata/ag/interior/outpost/med) "gTa" = ( /obj/structure/platform_decoration/strata/metal{ dir = 4 }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) +"gTq" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "gTx" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform_decoration/strata{ @@ -15822,50 +15864,60 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) +"gTy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "gTB" = ( /obj/item/device/radio, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) +"gTC" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) "gTE" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_3"; opacity = 0 }, /area/strata/ag/exterior/marsh/crash) -"gTL" = ( -/obj/structure/largecrate/guns/russian, -/obj/structure/barricade/handrail/strata{ +"gTV" = ( +/obj/structure/barricade/wooden{ dir = 4 }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"gUa" = ( +/obj/structure/largecrate/random, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"gUb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +/area/strata/ag/interior/outpost/engi/drome) +"gUl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/item/tool/kitchen/utensil/pfork, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/structure/platform_decoration/strata/metal{ + dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"gUk" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "gUp" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) -"gUz" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/landingzone_checkpoint) "gUP" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 @@ -15873,17 +15925,17 @@ /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/crash) "gUS" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 +/obj/structure/bed{ + icon_state = "abed" }, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement1, -/area/strata/ug/interior/jungle/platform/east/scrub) -"gVE" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/light/small, -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/floor/strata/floor3, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"gUZ" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"gVi" = ( +/obj/structure/machinery/body_scanconsole, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/dorms) "gVJ" = ( /obj/effect/blocker/sorokyne_cold_water, @@ -15897,110 +15949,163 @@ /obj/structure/platform_decoration/strata, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"gWv" = ( -/obj/structure/surface/rack, -/obj/item/explosive/grenade/phosphorus, -/obj/item/explosive/grenade/phosphorus, -/obj/item/folder/red, -/obj/item/ammo_box/magazine/shotgun/buckshot, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/south) -"gXi" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"gXr" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"gVO" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"gVQ" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_full" }, -/obj/structure/closet/jcloset, +/obj/structure/platform/strata/metal, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/tcomms) -"gXV" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"gYr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/briefcase, +"gVR" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"gWT" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/barman_recipes, +/obj/item/book/manual/chef_recipes, /turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"gYX" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform_decoration/strata/metal{ +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"gWV" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"gXb" = ( +/obj/item/fuel_cell, +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"gYY" = ( -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"gZX" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" +/obj/structure/platform/strata/metal{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, +/turf/open/floor/strata/red2, /area/strata/ag/interior/outpost/engi) -"hbx" = ( +"gXA" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer/test_floor5, -/area/strata/ug/interior/jungle/deep/structures/res) -"hby" = ( -/obj/structure/platform/strata/metal{ +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ dir = 8 }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"gXK" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) -"hbI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"hct" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"hcO" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"gYv" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"gYE" = ( /obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) +"gYF" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"gYH" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"gYK" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/cable_coil/blue, +/obj/item/stack/cable_coil/blue, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/engi/drome) +"gZy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ dir = 4 }, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/south_engi) -"hdv" = ( /turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"hdC" = ( -/obj/structure/surface/table/woodentable, -/obj/item/reagent_container/food/drinks/cans/waterbottle, +/area/strata/ag/interior/landingzone_checkpoint) +"gZW" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"hah" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"haA" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) +"haB" = ( +/obj/structure/bed/chair, /turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"haD" = ( +/obj/item/stack/sandbags, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/bar) -"hdW" = ( -/obj/structure/surface/table/woodentable, -/obj/item/pizzabox/meat, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen/bar) -"heh" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"haK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 }, -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"hbd" = ( +/obj/structure/inflatable/door, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"hbK" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/inflatable/door, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"hcm" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 }, +/obj/structure/machinery/computer/guestpass{ + dir = 4; + reason = "Visitor" + }, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"heq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" +/area/strata/ag/interior/administration) +"hcH" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/exterior/paths/cabin_area) +"hcO" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/bar) +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/south_engi) +"hdo" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec2) "heI" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/snow/brown_base/layer1, @@ -16009,6 +16114,24 @@ /obj/structure/sign/safety/bulkhead_door, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/gen/bball/nest) +"heV" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/item/device/encryptionkey/dutch, +/obj/item/dogtag, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"heW" = ( +/obj/item/weapon/gun/revolver/upp, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/paths/southresearch) +"hfb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"hfi" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) "hfq" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -16016,63 +16139,55 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"hfz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/security) -"hgo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +"hfE" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"hfQ" = ( +/obj/structure/toilet{ + dir = 8 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"hgx" = ( -/obj/structure/inflatable/door, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"hgB" = ( -/obj/structure/machinery/washing_machine, -/obj/effect/decal/cleanable/blood/gibs/down, +/obj/item/stack/medical/bruise_pack, /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) -"hgF" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"hgx" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/obj/structure/platform/strata/metal{ - dir = 8 +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"hgR" = ( +/obj/item/tool/kitchen/rollingpin, +/obj/item/stack/sandbags, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"hgV" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/head/hardhat/white, -/obj/item/clothing/head/hardhat/white, -/obj/structure/machinery/light/small, -/obj/item/clothing/head/hardhat/white, -/turf/open/floor/strata/red3/north, -/area/strata/ag/interior/outpost/med) -"hhu" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"hha" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"hho" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"hht" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 + dir = 9 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"hhT" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"hhL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner, +/obj/item/paper_bin, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "hhW" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -16090,72 +16205,49 @@ }, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/tearlake) +"hip" = ( +/obj/structure/machinery/gibber, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) "hir" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh) -"hiz" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"hiA" = ( +"hiE" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) +"hiF" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) "hiL" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) -"hiM" = ( -/obj/structure/filingcabinet{ - layer = 2.9 +"hiW" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"hiQ" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/storage/secure/briefcase, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"hiZ" = ( -/obj/structure/surface/rack, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"hjg" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade, -/obj/item/weapon/gun/rifle/type71/carbine, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"hjo" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/red1, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/landingzone_checkpoint) "hjC" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"hjF" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"hjN" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 +"hjG" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"hki" = ( -/obj/structure/curtain/medical, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/admin2) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"hjT" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "hkn" = ( /obj/structure/platform/strata/metal, /obj/structure/barricade/handrail/wire{ @@ -16163,6 +16255,11 @@ }, /turf/open/gm/river, /area/strata/ag/interior/tcomms) +"hkx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "hkA" = ( /obj/structure/platform/strata{ dir = 8 @@ -16170,116 +16267,96 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"hlN" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"hkC" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/wy_mre, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"hlS" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"hkI" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"hlf" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"hlQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"hme" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"hmk" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) +"hmq" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) "hms" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 8 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) -"hmv" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) "hmw" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"hmE" = ( -/obj/structure/filingcabinet, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"hmR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/pizzabox/mushroom, -/obj/item/tool/kitchen/utensil/pspoon, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"hne" = ( -/turf/open/floor/strata/multi_tiles/west, +"hmQ" = ( +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) +"hnS" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) -"hnm" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"hnt" = ( +"hoc" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"hnK" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"hnO" = ( -/obj/item/device/radio, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"hnP" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"hod" = ( -/obj/item/book/manual/security_space_law, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"hou" = ( -/obj/structure/barricade/wooden{ - dir = 4 +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"hoK" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"hoP" = ( +/obj/structure/inflatable/door, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "hpe" = ( /obj/structure/largecrate/hunter_games_ammo/good, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"hpp" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/red3, -/area/strata/ag/interior/outpost/med) -"hpR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/jungle/deep/structures/engi) -"hqj" = ( -/obj/effect/landmark/good_item, -/obj/item/stack/rods, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin2) +"hpC" = ( +/obj/structure/closet/wardrobe/red, +/obj/item/clothing/suit/imperium_monk, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"hpE" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/bcircuit, +/area/strata/ag/interior/dorms) "hqw" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -16291,40 +16368,33 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"hrC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/effect/spawner/random/toolbox{ - pixel_y = 12 - }, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/platform/east/scrub) -"hrQ" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" +"hqP" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"hqV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"hrR" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"hsC" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"hsd" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"hsM" = ( /obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/obj/item/folder/red, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "hsV" = ( /obj/structure/machinery/space_heater, /turf/open/floor/strata, @@ -16345,56 +16415,85 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"htr" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 - }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) "htD" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"htM" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"htU" = ( -/obj/structure/platform/strata/metal{ - dir = 8 +"huo" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/structure/bed/chair{ +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"huT" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 10; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"huX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"huf" = ( -/obj/item/fuel_cell, -/obj/structure/barricade/handrail/strata{ - dir = 1 +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"hvk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"huV" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/orbital_cannon_manual, -/obj/item/book/manual/research_and_development, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"hvr" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"hvn" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"hvC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/stack/rods, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"hvE" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/obj/item/clothing/shoes/jackboots, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"hvG" = ( -/turf/open/floor/prison/floor_plate, -/area/strata/ug/interior/jungle/deep/east_dorms) +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"hwd" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"hwj" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/prop/cash_register/off/open{ + pixel_y = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"hwp" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "hwD" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -16405,109 +16504,84 @@ "hwI" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"hxk" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" +"hxg" = ( +/turf/open/floor/strata/white_cyan4/east, +/area/strata/ag/interior/outpost/med) +"hxH" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"hxs" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/landingzone_1) +"hxK" = ( +/obj/structure/machinery/photocopier, +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/obj/item/stack/folding_barricade, -/obj/item/weapon/gun/rifle/type71/carbine, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"hxT" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"hyc" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/east_dorms) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"hyj" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/pizza, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "hyu" = ( /obj/effect/landmark/corpsespawner/russian, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/east_engi) -"hyA" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"hzs" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_full" +"hyG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"hzF" = ( -/turf/open/floor/plating/platebot, -/area/strata/ag/interior/outpost/engi/drome) -"hAt" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/research_decks) -"hBi" = ( +/area/strata/ag/interior/nearlz1) +"hzd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"hzr" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) -"hBs" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) -"hBC" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"hAh" = ( +/obj/structure/surface/rack, +/obj/item/storage/belt/utility/full, +/turf/open/floor/strata, +/area/strata/ag/interior/disposals) +"hAK" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"hBy" = ( +/obj/item/stool, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"hCD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/light/small{ - dir = 8 + dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"hCo" = ( -/obj/structure/closet/lawcloset, -/obj/structure/machinery/camera/autoname{ - dir = 8 +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"hDc" = ( +/obj/effect/glowshroom/single, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/north_lz_caves) +"hDK" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"hCq" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) -"hDn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/engi) -"hDq" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_full" - }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) -"hDN" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) +/area/strata/ag/exterior/research_decks) "hDX" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -16516,49 +16590,61 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"hDY" = ( -/obj/structure/reagent_dispensers/water_cooler, +"hEa" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) +"hEc" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/strata/floor3, -/area/strata/ug/interior/jungle/deep/structures/res) -"hEt" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 1 +/area/strata/ag/interior/dorms) +"hEv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/landingzone_2) +/obj/effect/decal/warning_stripes, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"hEw" = ( +/obj/structure/surface/rack, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "hEz" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, /turf/open/floor/strata, /area/strata/ag/interior/outpost/canteen) +"hES" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"hEZ" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/deep/structures/res) +"hFf" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) "hFm" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/interior/jungle/deep/east_dorms) -"hFD" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"hFO" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"hFR" = ( -/obj/structure/machinery/vending/cigarette/colony, -/obj/item/clothing/head/soft/ferret{ - pixel_y = 9 +"hFN" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"hFZ" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"hFQ" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) "hGm" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -16570,253 +16656,321 @@ }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"hGr" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"hGx" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +"hGz" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "hGH" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/asphalt/cement, /area/strata/ag/interior/administration) -"hGK" = ( -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) "hGO" = ( /obj/structure/platform/strata, /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"hGZ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles, +"hGR" = ( +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms) -"hHe" = ( -/obj/effect/decal/cleanable/blood/oil, +"hHr" = ( +/obj/structure/platform/strata/metal{ + dir = 4 + }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) -"hHk" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) "hHK" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"hHR" = ( +"hIh" = ( +/obj/item/storage/surgical_tray, /obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +/obj/item/storage/box/bodybags{ + pixel_x = -4; + pixel_y = 12 }, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"hIk" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"hIu" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"hHT" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"hIf" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/landingzone_checkpoint) -"hIv" = ( -/obj/structure/machinery/space_heater, +/obj/item/storage/pill_bottle/imidazoline, +/obj/item/storage/pill_bottle/imidazoline, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"hJb" = ( -/obj/structure/toilet{ - dir = 1 +/area/strata/ag/interior/outpost/med) +"hIB" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin2) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"hJo" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"hJD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "hJE" = ( /turf/open/gm/river, /area/strata/ug/interior/jungle/deep/east_dorms) -"hKX" = ( -/obj/item/storage/belt/knifepouch, -/obj/structure/surface/rack, +"hJR" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"hJW" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan3/north, +/area/strata/ag/interior/outpost/med) +"hKu" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"hKB" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"hKC" = ( +/obj/structure/computerframe, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) +/area/strata/ag/interior/tcomms) +"hKP" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"hLe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) "hLf" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/asphalt/cement, /area/strata/ag/exterior/tcomms/tcomms_deck) -"hLJ" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, +"hLq" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"hLC" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"hLK" = ( +/obj/item/stack/rods, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) -"hLT" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool/folded, -/obj/item/weapon/gun/pistol/t73, -/obj/item/attachable/bayonet/upp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/landingzone_checkpoint) +/area/strata/ag/interior/outpost/gen/bball/nest) +"hLW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/stamp, +/obj/item/storage/box/cups, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "hMs" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"hMC" = ( -/obj/structure/machinery/body_scanconsole, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) +"hMu" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"hNd" = ( +/obj/structure/dropship_equipment/sentry_holder, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "hNh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"hNs" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"hNv" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) +/obj/structure/machinery/computer/communications{ + dir = 1; + icon_state = "commb" + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"hNC" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"hNT" = ( +/turf/open/asphalt/cement/cement2, +/area/strata/ag/exterior/landingzone_2) "hOa" = ( /turf/open/gm/river, /area/strata/ug/exterior/jungle/deep/carplake_center) -"hOz" = ( +"hOd" = ( /obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"hOJ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 8; - name = "\improper Airlock" + dir = 1 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) -"hPh" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"hOP" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "hPr" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/nearlz2) "hPK" = ( /turf/open/asphalt/cement, /area/strata/ag/exterior/shed_five_caves) +"hQn" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "hQq" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/greengrid, /area/strata/ag/exterior/research_decks) +"hQH" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/good_item, +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/item/weapon/gun/shotgun/type23, +/turf/open/floor/strata, +/area/strata/ag/interior/disposals) "hQP" = ( /obj/effect/landmark/static_comms/net_one, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/crash) -"hQS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"hQU" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/interior/landingzone_1) -"hRG" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"hSh" = ( -/obj/structure/machinery/reagentgrinder, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"hSn" = ( +"hQQ" = ( /obj/structure/surface/rack, -/obj/item/storage/box/gloves, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"hTm" = ( -/obj/structure/fence, -/turf/open/asphalt/cement/cement2, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"hTo" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/gen/bball) -"hTy" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"hTN" = ( +/obj/item/storage/box/lights, +/obj/item/storage/box/lights, +/obj/item/storage/box/lights, +/obj/item/storage/box/lights, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"hTT" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/engi) -"hUa" = ( -/obj/structure/surface/rack{ - layer = 2.5 +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"hQR" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/spray/cleaner, /turf/open/floor/strata/floor2, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"hUs" = ( +"hRe" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/bar) +"hRi" = ( +/obj/item/tool/wrench, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"hRU" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"hSu" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) +"hSL" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"hTe" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"hTi" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) +"hTp" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/crash) +"hTR" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) -"hUz" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"hTW" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"hUi" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "hUJ" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -16824,84 +16978,113 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) +"hUN" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"hUQ" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/plating, +/area/strata/ag/exterior/paths/dorms_quad) +"hUT" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "hVm" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ug/interior/outpost/jung/dorms/med1) -"hVK" = ( -/obj/structure/surface/rack, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"hVR" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" +"hVr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"hVz" = ( +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"hVP" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"hVY" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms) +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "hWk" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/exterior/jungle/deep/carplake_center) -"hWD" = ( -/obj/structure/largecrate/random/case/double, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, +"hWB" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement2, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"hWM" = ( +/obj/structure/window/reinforced/tinted, +/obj/item/device/flashlight/lamp, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"hXq" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, /turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"hXC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/area/strata/ag/interior/administration) +"hXg" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"hXC" = ( +/obj/item/clipboard, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) "hXS" = ( -/obj/structure/machinery/door/airlock/prison{ +/obj/structure/platform_decoration/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"hXU" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/engi) +/area/strata/ag/interior/dorms/south) +"hXX" = ( +/turf/open/asphalt/cement/cement2, +/area/strata/ag/exterior/north_lz_caves) "hYc" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/tcomms) -"hYe" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 +"hYd" = ( +/obj/structure/platform/strata/metal{ + dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"hYf" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"hYj" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/light/small{ - dir = 8 + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "hYl" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/recharge_station, @@ -16913,248 +17096,251 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) -"hYI" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +"hYO" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) +"hYT" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/administration) -"hYQ" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) -"hZc" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/donkpockets, /turf/open/floor/strata/floor3/east, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"hZe" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"hZH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/pizza, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"iau" = ( -/obj/structure/curtain/open/medical, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"iay" = ( -/obj/structure/bed{ - icon_state = "abed" +"hZv" = ( +/obj/structure/platform/strata/metal{ + dir = 8 }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/structure/bed/chair{ + dir = 4 }, -/obj/item/storage/fancy/cigarettes/lady_finger, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"iaA" = ( +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"hZV" = ( /obj/structure/machinery/light/small{ - dir = 4 + dir = 8 }, -/obj/structure/inflatable/popped, -/turf/open/floor/strata/cyan4/east, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"iap" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) -"iaN" = ( -/obj/effect/spawner/random/toolbox{ - pixel_y = 12 - }, -/turf/open/floor/plating/warnplate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"iaU" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"iat" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 8; + name = "\improper Airlock" }, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"iaW" = ( -/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"iau" = ( +/obj/structure/curtain/open/medical, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"iaw" = ( +/obj/structure/lamarr, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"iaz" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/admin2) "ibh" = ( /obj/item/lightstick/red/planted, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/nearlz2) -"ibj" = ( -/obj/item/stool, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/bar) +"ibn" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"ibv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "ibH" = ( /obj/item/trash/pistachios, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"ibI" = ( +"ibM" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/item/storage/pill_bottle/antitox/skillless, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) -"ico" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/clipboard, /turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"icq" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/item/clothing/suit/storage/bomber, +/area/strata/ag/interior/outpost/gen/foyer) +"ibT" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"icL" = ( -/obj/structure/surface/table/reinforced/prison, +/area/strata/ug/interior/jungle/deep/structures/res) +"ibW" = ( +/obj/item/stool, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"ict" = ( +/obj/item/stool, /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"icT" = ( /turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"ida" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"idt" = ( +/area/strata/ag/interior/outpost/canteen/personal_storage) +"icv" = ( +/obj/structure/machinery/washing_machine, +/obj/effect/decal/cleanable/blood/gibs/down, /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 4 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"icT" = ( +/obj/item/fuel_cell, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/interior/outpost/gen/bball/nest) +"idw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 2 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) +"idI" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin2) "idW" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"ieD" = ( -/obj/structure/bed/chair/office/light{ +"iev" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"ieS" = ( +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/almayer/plate, +/area/strata/ag/exterior/marsh/crash) +"ifc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"ifO" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata/floor3, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) -"ifu" = ( -/obj/structure/largecrate/random, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "ifU" = ( /obj/structure/machinery/camera/autoname{ dir = 1 }, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/structures/engi) -"igd" = ( +"ifY" = ( +/obj/structure/dispenser/oxygen, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"igp" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 + dir = 10 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"igx" = ( +/obj/structure/machinery/smartfridge/drinks, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) -"igG" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball) -"igZ" = ( -/obj/structure/bed/nest, -/obj/item/storage/pill_bottle/inaprovaline/skillless, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"ihm" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"iie" = ( -/turf/open/floor/strata/fake_wood, +"igM" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"ihh" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"iiG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) +"iiR" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/paths/north_outpost) "ijo" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/security) -"ikk" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin2) +"ike" = ( +/obj/structure/surface/rack, +/obj/item/paper_bin, +/obj/item/stack/sheet/glass, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"ikf" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/outpost/med) +"iku" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "ikG" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"ikW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"ilu" = ( -/obj/structure/barricade/handrail/strata{ +"ilk" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/administration) +"ilt" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata/orange_edge/west, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) -"ilF" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/minehead/ruins) +"ilJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes, +/obj/structure/holohoop{ + dir = 4; + id = "basketball"; + side = "left" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "ilL" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"ilR" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"ilV" = ( -/obj/structure/noticeboard{ - desc = "A board for pinning important notices upon. There are a few pushpins dangling from it. Crudely carved into the baseboard is a picture of what seems to be a screaming warlock. To their right is a whip lashing out comically over what you figure are software engineers slaving over a box labeled CM13. The words 'spriterz rule' is carved beneath the box."; - pixel_y = 32 - }, -/obj/structure/bookcase{ - icon_state = "book-5" +"ilQ" = ( +/obj/item/stack/rods, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"imr" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"ilY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"imM" = ( +/obj/structure/machinery/power/apc/no_power/south, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/foyer) -"ilZ" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/research_decks/security) +/area/strata/ag/interior/outpost/gen/bball) +"imY" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) "imZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 @@ -17164,55 +17350,77 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"inf" = ( -/obj/structure/largecrate/random, -/obj/item/storage/belt/shotgun, -/obj/item/storage/backpack/lightpack, -/turf/open/floor/strata/orange_cover, +"inb" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"inh" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms) -"ioh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, +"iny" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"iol" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"ioM" = ( -/obj/structure/surface/table/almayer, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata, -/area/strata/ag/interior/landingzone_checkpoint) -"ioQ" = ( -/obj/structure/pipes/vents/pump{ +/area/strata/ag/interior/outpost/med) +"inz" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"ioV" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"ipe" = ( -/obj/structure/bed/chair{ +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"inG" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_edge/east, -/area/strata/ag/interior/dorms) -"iqd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"inO" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) +"inQ" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"ioS" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"ipN" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"ipO" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement15, +/area/strata/ag/exterior/marsh) +"iqb" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "iqe" = ( /obj/item/lightstick, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) +"iqo" = ( +/obj/structure/bed/chair, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"iqx" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"iqA" = ( +/obj/structure/machinery/landinglight/ds1, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) "iqH" = ( /obj/structure/closet/bodybag, /obj/effect/landmark/corpsespawner/scientist, @@ -17233,16 +17441,22 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"iri" = ( -/obj/structure/platform/strata/metal{ - dir = 1 - }, +"iqW" = ( /obj/structure/platform/strata/metal{ - dir = 4 + dir = 8 }, -/obj/structure/machinery/colony_floodlight, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"iqZ" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/paths/north_outpost) +"ire" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"irf" = ( +/obj/item/stack/rods, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "irq" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "brflowers_1" @@ -17264,33 +17478,47 @@ }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) -"isf" = ( -/obj/structure/machinery/door/airlock/prison{ - name = "Reinforced Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"isE" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"isy" = ( +/obj/structure/filingcabinet, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"isJ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" }, -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"isN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) "isY" = ( /obj/structure/machinery/space_heater, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med1) -"itd" = ( -/obj/item/reagent_container/food/drinks/coffee, +"itk" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"itn" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/camera/autoname{ - dir = 8 +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"itp" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "itw" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -17299,16 +17527,29 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) -"itV" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 +"itz" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen) -"ius" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/marsh/center) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"itR" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/platebot, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"itS" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"iup" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) "iuB" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -17317,32 +17558,47 @@ /obj/structure/pipes/vents/pump/on, /turf/open/floor/strata, /area/strata/ag/interior/landingzone_checkpoint) -"ivg" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) +"iuU" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/good_item, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"ivf" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"ivD" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) "ivF" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/admin3) -"ivH" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"ivN" = ( +"ivG" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/plate, +/area/strata/ag/exterior/marsh/crash) +"ivK" = ( +/obj/item/stack/rods, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) +"ivL" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/obj/structure/barricade/handrail/strata{ +/obj/structure/machinery/light/small, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"ivM" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/marsh) +"ivQ" = ( +/obj/structure/platform/strata/metal{ dir = 1 }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) "ivY" = ( @@ -17350,38 +17606,26 @@ /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) "iwo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +/obj/structure/inflatable/popped, +/turf/open/floor/strata/cyan4/east, +/area/strata/ag/interior/outpost/med) "iws" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) -"iwt" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"iwz" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/interior/landingzone_1) "iwH" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/admin1) +"ixc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) "ixu" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -17394,66 +17638,21 @@ /obj/structure/platform_decoration/strata, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"iyA" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/marsh) -"iyK" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"iyS" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/vanyard) -"izF" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/research_decks) -"izM" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"iAw" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = -10 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"iAG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms/south) -"iAV" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"iBi" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"iBv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"iBB" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) -"iBK" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/closet/secure_closet/personal, -/obj/item/storage/pill_bottle/kelotane, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +"iyi" = ( +/obj/structure/closet/secure_closet/security/soro, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"iAL" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"iBL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/strata, +/obj/item/device/flashlight/lamp/green, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "iBM" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -17466,10 +17665,6 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"iBP" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms/south) "iBT" = ( /turf/open/gm/coast/beachcorner/south_east, /area/strata/ug/interior/jungle/deep/tearlake) @@ -17481,113 +17676,89 @@ }, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"iCP" = ( -/obj/structure/machinery/smartfridge/drinks, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"iCU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green, -/turf/open/floor/strata/blue1, +"iDg" = ( +/turf/open/floor/strata/blue4/north, /area/strata/ag/interior/outpost/admin) -"iCW" = ( -/obj/structure/machinery/light/small, -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/platform/east/scrub) -"iDc" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"iDj" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) "iDq" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/electrical, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"iDr" = ( -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"iEm" = ( -/obj/structure/bed/chair/office/light{ +"iDu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"iDN" = ( +/obj/structure/surface/rack, +/obj/item/device/radio, +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"iEn" = ( -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"iDX" = ( +/obj/structure/surface/rack, +/obj/item/storage/bible/booze, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/strata, +/area/strata/ag/interior/disposals) +"iEd" = ( +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) "iEo" = ( /turf/closed/shuttle/ert{ icon_state = "upp8" }, /area/strata/ag/exterior/marsh/crash) -"iEI" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) "iEU" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/med1) -"iFf" = ( -/obj/structure/machinery/power/apc/power/north, -/obj/structure/pipes/standard/simple/hidden/cyan{ +"iFe" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/research_decks/security) -"iFn" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"iFp" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) -"iFM" = ( -/obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"iGs" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) -"iGQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/obj/item/reagent_container/food/condiment/saltshaker, +/area/strata/ag/interior/dorms/south) +"iFG" = ( +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/obj/effect/landmark/queen_spawn, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"iFQ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"iFY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"iHd" = ( /obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"iHh" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"iGT" = ( -/obj/item/clipboard, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"iHb" = ( -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"iHU" = ( -/obj/structure/barricade/handrail/strata, +/obj/structure/machinery/light/small, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"iHv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"iHw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen) "iHX" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/strata, @@ -17596,6 +17767,10 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) +"iId" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/auto_turf/snow/brown_base/layer4, +/area/strata/ag/exterior/paths/southresearch) "iIz" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -17605,49 +17780,35 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"iIE" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"iIG" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"iIX" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"iJe" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/wy_mre, -/obj/item/tool/crowbar, -/obj/structure/barricade/handrail/strata{ +"iIR" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/decal/strata_decals/grime/grime4{ dir = 4 }, -/obj/structure/barricade/handrail/strata, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_edge/west, +/area/strata/ag/interior/dorms) "iJh" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"iJm" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) "iJp" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/clothing/gloves/latex, /obj/item/storage/surgical_tray, /turf/open/floor/strata, /area/strata/ag/interior/mountain) -"iJy" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) +"iJw" = ( +/turf/open/asphalt/cement/cement3, +/area/strata/ug/interior/jungle/platform/east/scrub) "iJJ" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -17659,99 +17820,119 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"iKm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/meatballsoup, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) +"iKb" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) "iKI" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/cabin_area) -"iLh" = ( -/obj/structure/bed{ - icon_state = "abed" +"iKM" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/machinery/door/window/eastright{ - dir = 1 +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin1) +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/interior/dorms) +"iLm" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) "iLr" = ( /obj/structure/fence, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) -"iLv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"iLL" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/corpsespawner/miner, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"iMc" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/admin) -"iLw" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/obj/item/reagent_container/spray/pepper, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) "iMn" = ( /obj/structure/surface/rack{ layer = 2.5 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"iMo" = ( -/turf/open/asphalt/cement/cement2, -/area/strata/ag/exterior/landingzone_2) -"iMy" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/research_decks) +"iMR" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "iNe" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"iNz" = ( -/obj/structure/surface/rack, -/obj/effect/landmark/good_item, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"iNU" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/southwest, +"iNh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/stack/catwalk, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) -"iOh" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"iOo" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh) -"iOD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/eggplantparm, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"iOF" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"iNF" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"iOV" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_sn_full_cap" +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) +"iNR" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"iOe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) +"iOy" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/north_lz_caves) +"iOz" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/strata/cyan3/west, +/area/strata/ag/interior/outpost/med) +"iOH" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"iOM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"iPi" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) "iPw" = ( /mob/living/simple_animal/hostile/retaliate/clown{ health = 10000; @@ -17761,24 +17942,32 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/restricted/devroom) -"iPP" = ( -/obj/structure/machinery/disposal, +"iPB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"iPK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"iQw" = ( +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"iQf" = ( +/obj/structure/platform_decoration/strata/metal, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"iQB" = ( /obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/recharge_station, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"iQA" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"iQN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "iQS" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/barricade/handrail/strata{ @@ -17787,75 +17976,112 @@ /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) +"iQZ" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "iRk" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) +"iRo" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"iRr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/crowbar, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) +"iRu" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"iRJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"iRS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"iRW" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "iRY" = ( /obj/effect/decal/cleanable/blood/oil, /obj/item/stack/rods, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) +"iSc" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/deep/structures/res) "iSe" = ( /turf/open/gm/coast/beachcorner/north_west, /area/strata/ug/interior/jungle/deep/south_engi) -"iSo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/peppermill, -/obj/item/device/encryptionkey/dutch, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"iSG" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/type71, -/obj/structure/machinery/light/small{ - dir = 4 +"iSs" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/administration) +"iSB" = ( +/obj/structure/bed/nest, +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"iTc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"iTy" = ( +/obj/effect/spawner/random/tool, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ug/interior/jungle/deep/structures/res) -"iTc" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) -"iTx" = ( -/obj/structure/machinery/vending/cigarette/colony, +"iTz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/souto/grape, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"iTA" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"iTQ" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 +/area/strata/ag/interior/outpost/security) +"iTK" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/structure/machinery/computer/guestpass{ - dir = 4; - reason = "Visitor" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"iTR" = ( +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/north_lz_caves) +"iTS" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, /obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, /turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"iUj" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/vanyard) +/area/strata/ag/interior/outpost/admin) "iUw" = ( /obj/structure/prop/dam/crane/cargo, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"iUz" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"iUA" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2, -/area/strata/ag/interior/outpost/med) "iUJ" = ( /obj/structure/bed/chair{ dir = 8 @@ -17866,65 +18092,65 @@ /obj/docking_port/stationary/marine_dropship/lz2, /turf/open/floor/plating, /area/strata/ag/exterior/landingzone_2) -"iVe" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"iVg" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/security) -"iVm" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" +"iUS" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"iUT" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 1 }, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"iVo" = ( -/obj/structure/bed/chair/comfy, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"iVF" = ( -/obj/structure/platform_decoration/strata/metal{ +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"iVb" = ( +/obj/structure/bed/chair/office/light{ dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/nearlz1) -"iWd" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"iWp" = ( -/obj/structure/machinery/space_heater, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"iWy" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"iWE" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) +"iVq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/admin) +"iVI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) "iWG" = ( /obj/structure/barricade/snow, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/north_lz_caves) +"iWR" = ( +/obj/structure/largecrate/random, +/obj/item/toy/deck, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/center) "iWZ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) +"iXb" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) "iXj" = ( /obj/effect/decal/cleanable/blood/oil, /obj/item/tool/wrench, @@ -17939,71 +18165,61 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"iXo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/computer/cameras{ +"iXp" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/closet/bodybag, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"iXr" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"iXw" = ( +/obj/structure/machinery/disposal, +/obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/security) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "iXA" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/engi) +"iXT" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"iXE" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/cyan3/west, -/area/strata/ag/interior/outpost/med) -"iXK" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"iXW" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"iYx" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/bar) -"iYA" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) -"iYJ" = ( -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"iZg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"iZs" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/blue4, +"iXU" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) +"iYe" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"iZo" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "iZI" = ( /obj/effect/decal/cleanable/greenglow, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"jak" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) +"jau" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) "jaZ" = ( /obj/structure/cargo_container/wy/mid{ health = 5000; @@ -18011,22 +18227,30 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) +"jbd" = ( +/obj/structure/machinery/faxmachine, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "jbq" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"jbt" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/plating, -/area/strata/ag/exterior/marsh/center) -"jbA" = ( -/obj/structure/toilet{ - dir = 8 +"jbC" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/security) +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"jbD" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/platform/east/scrub) "jbI" = ( /obj/structure/platform/strata{ dir = 1 @@ -18037,315 +18261,297 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"jcf" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" +"jbV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"jca" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) -"jcJ" = ( -/obj/structure/bed/chair{ +/obj/structure/window/reinforced/tinted, +/obj/item/storage/briefcase, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) +"jcs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"jcM" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) -"jcZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, +"jcH" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/item/clothing/suit/xenos, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) +"jdb" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) "jdC" = ( /obj/structure/window/framed/strata, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"jea" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement15, -/area/strata/ug/interior/jungle/platform/east/scrub) -"jeb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball) -"jew" = ( -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"jeN" = ( +"jdF" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"jeS" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/tcomms) -"jfe" = ( -/obj/structure/closet/coffin, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"jfg" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"jfq" = ( -/turf/open/floor/strata/cyan3/west, -/area/strata/ag/interior/outpost/med) -"jfv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"jgz" = ( -/obj/structure/window/reinforced/tinted, -/obj/item/device/flashlight/lamp, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"jhi" = ( -/turf/open/floor/strata/cyan3/east, -/area/strata/ag/interior/outpost/med) -"jhl" = ( -/obj/structure/machinery/weather_siren{ - dir = 8; - pixel_x = -18; - pixel_y = 10 - }, -/turf/closed/wall/strata_outpost, -/area/strata/ag/exterior/research_decks) -"jhB" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"jhE" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"jdR" = ( /obj/structure/bed/chair{ - dir = 8 + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/survivor_spawner, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"jhH" = ( -/obj/item/stack/sandbags, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"jhI" = ( -/turf/open/asphalt/cement/cement9, -/area/strata/ag/exterior/landingzone_2) -"jhU" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/bar) -"jih" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"jim" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"jiL" = ( -/obj/item/weapon/gun/rifle/type71/carbine, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"jji" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/tearlake) -"jjk" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/north_lz_caves) -"jjJ" = ( -/turf/closed/wall/strata_outpost, -/area/strata/ag/exterior/research_decks) -"jjX" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/corpsespawner/russian, -/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"jeb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"jeE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"jeK" = ( +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/dorms/hive) -"jkh" = ( +"jfc" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; - dir = 8; icon_state = "p_stair_ew_full_cap"; layer = 3.5 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/minehead) -"jkO" = ( -/obj/item/stool, +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"jfA" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/blue4, +/area/strata/ag/interior/outpost/admin) +"jfM" = ( +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"jgH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, /turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"jkX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/strata/ag/interior/administration) +"jhl" = ( +/obj/structure/machinery/weather_siren{ + dir = 8; + pixel_x = -18; + pixel_y = 10 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"jld" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/turf/closed/wall/strata_outpost, +/area/strata/ag/exterior/research_decks) +"jhp" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 8 }, -/obj/structure/inflatable/popped, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"jhT" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"jhV" = ( +/obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/nearlz2) -"jlw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +/area/strata/ag/interior/outpost/canteen) +"jia" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 4 }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"jlR" = ( -/obj/structure/window/framed/strata, -/obj/structure/machinery/door/poddoor/shutters/almayer{ +/area/strata/ag/exterior/research_decks) +"jig" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ dir = 8 }, -/turf/open/floor/strata/multi_tiles/west, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/red2, +/area/strata/ug/interior/jungle/deep/east_carp) +"jim" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/white_cyan3/west, /area/strata/ag/interior/outpost/med) -"jlT" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"jiS" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" }, -/obj/structure/bed{ - icon_state = "abed" +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/structure/barricade/wooden{ +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/research_decks) +"jiU" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/vanyard) +"jjJ" = ( +/turf/closed/wall/strata_outpost, +/area/strata/ag/exterior/research_decks) +"jjQ" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"jmw" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) +"jjU" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"jmY" = ( -/obj/structure/bed/chair{ +/area/strata/ag/interior/dorms) +"jjV" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/stack/rods, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"jkq" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/paths/dorms_quad) +"jkN" = ( +/obj/structure/surface/rack, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/inflatable, +/obj/item/tool/weldingtool, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms/south) +"jlN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"jlU" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"jlW" = ( +/obj/structure/surface/rack, /obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"jmD" = ( +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"jnr" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"jnk" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata/fake_wood, +/turf/open/floor/strata/floor3/east, /area/strata/ug/interior/jungle/deep/structures/res) -"jnr" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/landingzone_1) +"jnC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "jnH" = ( /obj/structure/prop/dam/drill, /turf/open/floor/plating, /area/strata/ag/exterior/marsh/crash) -"jnR" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"jod" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi) -"joh" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/landingzone_2) -"joo" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) -"jov" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +"joc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"joD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/surgical, -/obj/item/storage/surgical_tray, -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/white_cyan3/northeast, +/area/strata/ag/interior/outpost/med) +"joi" = ( +/obj/structure/machinery/shower, +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) -"joH" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/gen/bball) -"jpd" = ( -/obj/item/stack/sandbags, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"jph" = ( -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"jpB" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/marsh) -"jpE" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/landingzone_checkpoint) -"jqk" = ( -/obj/structure/closet/wardrobe/pjs, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata, -/area/strata/ug/interior/outpost/jung/dorms/admin4) -"jqH" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 +/obj/structure/mirror{ + pixel_x = -29 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"jqM" = ( +/obj/item/clothing/suit/storage/hazardvest, +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/effect/landmark/wo_supplies/storage/m56d, +/obj/structure/machinery/door/window/eastright{ + dir = 2 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"joH" = ( /obj/structure/sink{ dir = 8; pixel_x = -11 }, -/obj/structure/mirror{ - pixel_x = -29 +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"joL" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin3) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"jpq" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"jqO" = ( +/obj/structure/machinery/computer/crew, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/admin) +"jqU" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) "jrw" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -18356,28 +18562,49 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/cabin_area) -"jrK" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ +"jrH" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"jrR" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) +"jrS" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) +"jrW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"jrY" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) -"jsi" = ( -/obj/structure/fence, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/tcomms/tcomms_deck) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"jsf" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/exterior/paths/cabin_area) +"jsq" = ( +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "jsw" = ( /obj/structure/closet/bodybag, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"jsI" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) "jsP" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -18389,129 +18616,63 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"jsY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"juI" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"jti" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"jtp" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/tcomms) -"jty" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"jtz" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 8 - }, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/security) -"jtF" = ( -/obj/structure/closet, -/obj/item/storage/pill_bottle/kelotane/skillless, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"jtV" = ( -/obj/structure/machinery/space_heater, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"juz" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"juX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) +/area/strata/ag/interior/outpost/engi) +"juQ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement15, +/area/strata/ug/interior/jungle/platform/east/scrub) "juY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/restricted/devroom) -"jvF" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small{ - dir = 4 +"jvu" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/turf/open/floor/strata/blue1, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) -"jwf" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/asphalt/cement/cement14, -/area/strata/ug/interior/jungle/deep/structures/res) +"jvv" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/landingzone_checkpoint) "jww" = ( /obj/structure/sign/safety/biohazard, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/mountain) -"jxa" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/vents/pump{ - dir = 4 +"jwz" = ( +/mob/living/simple_animal/cat/Runtime{ + desc = "Also known as Bernie. Fond of potted plants and Space Carp flavored treats."; + name = "Bernard" }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) +"jwZ" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) "jxc" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"jxd" = ( -/obj/structure/machinery/light/small, -/turf/open/asphalt/cement/cement14, -/area/strata/ug/interior/jungle/platform/east/scrub) -"jxR" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"jxT" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, +"jyl" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/lightstick/red, +/obj/item/storage/box/lightstick/red, +/obj/item/storage/box/lightstick/red, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) -"jxW" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/interior/plastic, -/area/strata/ag/interior/paths/cabin_area/central) -"jyp" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"jyG" = ( -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"jyN" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) "jyO" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -18519,51 +18680,29 @@ }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"jzx" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" - }, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/obj/structure/platform/strata/metal{ +"jyQ" = ( +/obj/structure/curtain/open/medical, +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/paths/adminext) -"jzC" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/item/storage/pill_bottle/imidazoline, -/obj/item/storage/pill_bottle/imidazoline, -/turf/open/floor/strata/multi_tiles/southwest, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"jzE" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"jzH" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ +"jzY" = ( +/obj/structure/platform_decoration/strata/metal{ dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi) -"jAi" = ( -/obj/structure/bed, -/obj/structure/machinery/light/small, -/obj/effect/decal/cleanable/blood, -/obj/item/bedsheet/medical, -/obj/item/storage/large_holster/machete/full, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) +"jAf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "jAo" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform_decoration/strata{ @@ -18571,79 +18710,57 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"jAD" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 10; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) -"jAV" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/south) -"jBc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"jBg" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/upp, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"jBC" = ( +"jAw" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"jBc" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"jBF" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 4 }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_ew_half_cap" +/obj/structure/surface/rack, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/strata/red3/north, +/area/strata/ag/interior/outpost/med) +"jCa" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) -"jBE" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"jCg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/enchiladas, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"jCt" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"jCw" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"jCA" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"jCD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/light/small{ - dir = 4 + dir = 8 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/mass_spectrometer, -/obj/item/prop/matter_decompiler, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "jCE" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) +"jCG" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) "jDr" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -18651,87 +18768,82 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"jEo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -9; - pixel_y = 15 +"jDt" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/item/paper_bin, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"jEp" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"jDE" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) "jEr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"jEx" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/interior/landingzone_1) +/turf/open/asphalt/cement/cement15, +/area/strata/ag/exterior/research_decks) "jEB" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/security) -"jED" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/item/stack/catwalk, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) "jEO" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/engi) -"jES" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"jFg" = ( +"jFd" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"jFj" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/device/radio, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"jFx" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ +/obj/structure/machinery/computer/cameras{ dir = 8 }, /turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"jFM" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, +/area/strata/ug/interior/jungle/deep/structures/res) +"jFn" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) +"jFo" = ( +/obj/structure/bedsheetbin, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"jFx" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/outpost/jung/dorms/admin4) +/area/strata/ag/interior/outpost/canteen) +"jFF" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "jFO" = ( /obj/effect/landmark/static_comms/net_two, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/marsh/center) -"jHZ" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/machinery/shower{ +"jFU" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/exterior/research_decks) +"jIn" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"jIp" = ( +/obj/structure/barricade/wooden{ dir = 8 }, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/paths/southresearch) "jIz" = ( /obj/structure/machinery/weather_siren{ dir = 1; @@ -18740,53 +18852,43 @@ /obj/effect/acid_hole, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) -"jIO" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/landingzone_checkpoint) -"jIV" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"jIX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" +"jJj" = ( +/obj/structure/machinery/door/airlock/prison{ + dir = 1; + name = "Reinforced Airlock" }, -/obj/effect/decal/warning_stripes, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/minehead/ruins) "jJy" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/tearlake) -"jJJ" = ( -/obj/structure/largecrate/random/secure, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"jJX" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"jKd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"jKu" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +"jJC" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"jJL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"jJV" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/interior/dorms) +"jKK" = ( +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"jKU" = ( +/obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/security) +/area/strata/ag/interior/dorms/south) "jLb" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) @@ -18794,24 +18896,34 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/nearlz2) -"jLn" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/crap_item, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"jLt" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 +"jLj" = ( +/obj/effect/landmark/good_item, +/obj/item/stack/rods, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/shed_five_caves) +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"jMh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "jMq" = ( -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) +/obj/structure/machinery/recharge_station, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"jMt" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"jMy" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) "jMD" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -18824,140 +18936,138 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"jMS" = ( -/turf/open/floor/almayer/plate, -/area/strata/ag/exterior/marsh/crash) +"jMI" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"jNf" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "jOa" = ( /obj/structure/filingcabinet, /turf/open/floor/strata, /area/strata/ag/interior/dorms/south) -"jOf" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/strata/red3/north, -/area/strata/ag/interior/outpost/med) -"jOk" = ( -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +"jOd" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "jOp" = ( /obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"jOs" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"jOC" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +"jOr" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) +"jOB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 2 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "jOV" = ( /obj/structure/platform_decoration/strata/metal{ dir = 8 }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) +"jOW" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) "jPV" = ( /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"jPW" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"jQg" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 +"jRa" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 }, -/turf/open/floor/strata/red1, +/turf/open/floor/prison/floor_plate, /area/strata/ag/interior/dorms) -"jQm" = ( -/obj/structure/machinery/light/small{ +"jRh" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"jQy" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, +/obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) -"jQS" = ( -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"jRb" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"jRh" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) "jRp" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 8 + dir = 1; + icon_state = "p_stair_full" }, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) -"jRC" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ +/area/strata/ag/interior/landingzone_checkpoint) +"jRv" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, -/turf/open/floor/strata/multi_tiles/southwest, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/canteen) -"jSf" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) -"jSp" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, +"jRy" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade, /turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"jSs" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"jSQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata{ +/area/strata/ag/interior/research_decks/security) +"jRF" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) -"jUr" = ( +"jRP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"jSn" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/minehead) +"jST" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" + }, /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 1 }, -/turf/open/floor/strata/fake_wood, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) +"jTa" = ( +/obj/structure/inflatable/door, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"jTi" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh) +"jTD" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"jUl" = ( +/obj/effect/decal/strata_decals/grime/grime2, +/obj/structure/coatrack, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "jUA" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) -"jUQ" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) "jUS" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -18967,152 +19077,118 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"jVb" = ( -/obj/structure/toilet{ - dir = 1 +"jUU" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "jVg" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/camera/autoname, /turf/open/asphalt/cement, /area/strata/ag/exterior/shed_five_caves) -"jVo" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"jVt" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) +"jVL" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement15, +/area/strata/ug/interior/jungle/platform/east/scrub) "jWs" = ( /turf/open/floor/plating, /area/strata/ag/exterior/landingzone_2) +"jWu" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/obj/structure/barricade/handrail/strata, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "jWz" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/med2) -"jWL" = ( -/obj/structure/bed/chair{ +"jWT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"jXa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/med) +"jXd" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"jXu" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, /turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"jWZ" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"jXl" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"jXH" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan3/west, /area/strata/ag/interior/outpost/med) +"jXw" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) "jXQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/crash) -"jYc" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/administration) -"jYf" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"jYn" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"jYE" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"jYQ" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"jYT" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ - dir = 2 +"jXU" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"jZf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +/obj/structure/barricade/handrail/strata, +/obj/structure/filingcabinet, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"jYx" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"jYP" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"jZB" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"kac" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/mirror{ + pixel_x = -29 }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"kar" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/item/device/flashlight/lamp/green, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"jZj" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"jZl" = ( /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) +/area/strata/ag/interior/outpost/canteen/personal_storage) +"jZA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"jZI" = ( +/obj/item/tool/pen/blue, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "kaw" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/med2) -"kbc" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/lightstick/red, -/obj/item/storage/box/lightstick/red, -/obj/item/storage/box/lightstick/red, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"kbd" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"kbj" = ( -/obj/item/device/flashlight/lamp, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"kbB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"kbF" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, +"kbr" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/structure/machinery/light/small, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/med) +/area/strata/ag/interior/nearlz1) "kbU" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood{ @@ -19120,100 +19196,108 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"kbV" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, +"kcg" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) +"kch" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/holobadge, +/obj/item/storage/box/holobadge, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"kct" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) -"kbY" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) +/area/strata/ug/interior/jungle/deep/structures/res) "kcw" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/exterior/research_decks) -"kcJ" = ( +"kcK" = ( /obj/structure/toilet{ - dir = 8; - pixel_x = -4 + dir = 1 }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"kdw" = ( +/obj/structure/pipes/vents/pump/on, /obj/structure/machinery/light/small{ - dir = 4 + dir = 1; + pixel_y = 20 }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"kdh" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 8 +/area/strata/ag/interior/outpost/engi/drome) +"kdA" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"kdR" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"kdY" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) +"ked" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"kds" = ( -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) -"kdO" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_full" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"kez" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"kea" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"keD" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/foyer) -"keH" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/condimentbottles, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"keI" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 +/obj/structure/platform_decoration/strata/metal{ + dir = 4 }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/interior/landingzone_1) -"kfa" = ( -/obj/structure/bed/chair{ +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"keE" = ( +/obj/structure/toilet{ dir = 1 }, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"kfZ" = ( +/obj/item/storage/box/nade_box/tear_gas, +/obj/structure/closet/secure_closet/security/soro, /turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/gen/bball) -"kfi" = ( -/turf/open/asphalt/cement/cement9, -/area/strata/ag/interior/landingzone_1) -"kfz" = ( -/obj/structure/bed/roller, -/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/security) +"kga" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) +"kge" = ( +/obj/item/stack/medical/splint, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) -"kfQ" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, +"kgw" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/floor2, -/area/strata/ag/interior/restricted/devroom) -"kgg" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"kgl" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 +/area/strata/ug/interior/jungle/deep/structures/res) +"kgx" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"kgu" = ( -/obj/structure/inflatable/door, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"kgM" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +/obj/item/book/manual/detective, +/turf/open/floor/strata, +/area/strata/ag/interior/dorms) +"kgz" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) "kgQ" = ( /obj/item/stack/sheet/metal/medium_stack, /obj/structure/disposalpipe/segment{ @@ -19230,10 +19314,19 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/vanyard) -"khP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) +"khB" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"khG" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/bodybags, +/obj/item/storage/box/handcuffs, +/obj/item/storage/box/holobadge, +/obj/item/storage/box/evidence, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "khR" = ( /obj/effect/landmark/monkey_spawn, /obj/effect/decal/strata_decals/catwalk/prison, @@ -19242,298 +19335,336 @@ "khT" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/structures/engi) +"khV" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"khW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/peppermill, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"kih" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/item/reagent_container/food/snacks/chawanmushi, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) "kim" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh) -"kit" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"kip" = ( +/obj/item/stool, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"kiq" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/barricade/handrail/strata{ - dir = 1 +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) +"kiC" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"kiN" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +/obj/structure/mirror{ + pixel_x = -29 }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"kiY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"kiW" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/obj/structure/machinery/camera/autoname{ - dir = 4 +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"kiZ" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) +"kiY" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) "kjc" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) -"kjL" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" +"kjd" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"kjz" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"kjW" = ( +/obj/structure/machinery/vending/coffee, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"kko" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"kku" = ( +/obj/structure/prop/structure_lattice{ + density = 0; + desc = "This jukebox only takes quarters and you seem to be out of them at the moment."; + icon = 'icons/obj/structures/props/misc.dmi'; + icon_state = "jukebox"; + name = "Rockin Robin 2300 Jukebox"; + pixel_x = -5; + pixel_y = 16 }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"kkB" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"kkC" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"kjX" = ( -/obj/structure/barricade/deployable{ +/obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"kkb" = ( -/obj/item/weapon/gun/rifle/type71/carbine, -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/effect/landmark/wo_supplies/storage/belts/m41abelt, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"kkd" = ( -/obj/structure/machinery/power/port_gen/pacman/super, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, /turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/north_lz_caves) -"kkx" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"kkB" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) +/area/strata/ag/interior/outpost/engi/drome) "kkL" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/nearlz2) -"kll" = ( -/obj/structure/window/reinforced/tinted, -/obj/item/stool, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"klp" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"kml" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata/cyan3/east, -/area/strata/ag/interior/outpost/med) -"kmz" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 8 +"kkM" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/ripley_build_and_repair, +/obj/item/book/manual/surgery, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"klG" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) -"knx" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/stack/sheet/wood, -/obj/item/stack/sandbags, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 +"kmM" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"kna" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"knK" = ( -/obj/item/storage/box/ids, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"kne" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"knN" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/ids, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"knQ" = ( -/obj/structure/machinery/space_heater, -/obj/structure/platform/strata/metal{ +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/effect/spawner/random/toolbox{ + pixel_y = 12 + }, +/obj/structure/platform_decoration/strata/metal{ dir = 1 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin3) +/turf/open/floor/strata/red3/north, +/area/strata/ag/interior/outpost/med) "knT" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"knZ" = ( -/obj/effect/spawner/random/tool, +/obj/effect/landmark/xeno_spawn, /turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"knY" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) "koj" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/shed_five_caves) +"koz" = ( +/obj/structure/closet, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) "koG" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"kqh" = ( -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/landingzone_2) -"kqn" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata{ +"koR" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"kpc" = ( +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/structure/surface/rack, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"kpf" = ( +/turf/open/floor/strata/white_cyan3/southwest, +/area/strata/ag/interior/outpost/med) +"kpn" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) +"kpt" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/foyer) +"kpA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"kqA" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"krf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"kqH" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"kqN" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"krD" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"ksf" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/plating/platebot, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"ksq" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/strata/purp2, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"ksp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/ids, +/obj/item/clothing/glasses/thermal/syndi, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"ksu" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"ksv" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/t73, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/engi) "ksA" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform_decoration/strata, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"ksD" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/inflatable/popped/door, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"ksE" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/cheesyfries, -/obj/item/reagent_container/food/snacks/monkeyburger{ - pixel_x = -9; - pixel_y = 12 - }, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = 6; - pixel_y = 19 - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"ksT" = ( -/obj/structure/filingcabinet, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"ktm" = ( -/obj/structure/machinery/colony_floodlight, +"ktp" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"ktX" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"ktY" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/prison/floor_plate, +/area/strata/ag/interior/dorms) +"kuf" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) -"kto" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"ktB" = ( -/obj/structure/bed/stool, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"ktF" = ( -/obj/structure/surface/rack, +"kuj" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/nearlz1) +"kux" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"ktK" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 +/area/strata/ag/interior/outpost/gen/bball) +"kvc" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/marsh) -"kub" = ( -/obj/structure/reagent_dispensers/watertank, +/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) -"kuc" = ( -/obj/structure/closet/wardrobe/grey, -/obj/effect/landmark/wo_supplies/storage/mines, -/obj/effect/landmark/wo_supplies/storage/mines, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"kur" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/landingzone_checkpoint) -"kuH" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) -"kvK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"kvv" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/admin) -"kvP" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"kvQ" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"kvT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/kitchen/knife, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) "kvY" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/exterior/jungle/deep/carplake_center) -"kwx" = ( -/turf/open/floor/prison/floor_plate, -/area/strata/ag/interior/dorms) -"kxk" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"kvZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, /turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"kxp" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ +/area/strata/ag/interior/dorms) +"kwR" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"kwT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"kxh" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"kxD" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/obj/structure/bed/sofa/vert/grey/top, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"kxu" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) "kxF" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -19542,48 +19673,30 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"kxL" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) "kxN" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_carp) -"kxV" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/strata{ +"kxS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/orange_edge/east, -/area/strata/ag/exterior/research_decks) -"kyc" = ( -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) "kyf" = ( /obj/item/stack/rods, /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"kyl" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/strata/ug/interior/jungle/platform/east/scrub) "kyr" = ( /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_engi) -"kyz" = ( +"kyt" = ( /obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "kyT" = ( /obj/structure/machinery/door/airlock/almayer/engineering/colony{ dir = 2 @@ -19594,148 +19707,240 @@ /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"kzg" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 +"kyZ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" }, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) +/area/strata/ag/interior/outpost/med) "kzk" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/radio, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"kzw" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/vanyard) -"kAi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ +"kzu" = ( +/obj/item/stool, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/bar) +"kzy" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"kAq" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 }, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/landingzone_2) +"kAQ" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool/folded, +/obj/item/weapon/gun/pistol/t73, +/obj/item/attachable/bayonet/upp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, /turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/engi) -"kAu" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 +/area/strata/ag/interior/landingzone_checkpoint) +"kBd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"kAv" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/vanyard) -"kAw" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/administration) -"kAD" = ( -/obj/structure/platform/strata/metal{ - dir = 1 +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"kBo" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"kBz" = ( +/obj/structure/surface/rack, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/open/floor/strata/red3/north, +/area/strata/ag/interior/outpost/med) +"kBA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 }, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) -"kBy" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) +"kBI" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) "kBL" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/nearlz2) -"kBM" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) -"kCj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"kBP" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "kCk" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh/center) -"kCR" = ( +"kCI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform_decoration/strata/metal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"kCL" = ( +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"kCX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"kDj" = ( /obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/item/tool/pen/blue, +/obj/item/storage/box/ids, /obj/item/paper_bin, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"kCS" = ( +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"kDC" = ( +/obj/item/storage/box/rxglasses, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/med) +"kDG" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"kDJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"kDt" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"kEy" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/area/strata/ag/interior/outpost/engi) +"kDP" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/structure/platform/strata/metal{ - dir = 1 +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"kEE" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "kEJ" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"kFa" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; name = "\improper Airlock" }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"kFh" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) +"kEM" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"kEU" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pill_bottle/russianRed, -/turf/open/floor/strata/orange_tile, +/obj/item/device/binoculars, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"kFT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms) -"kGc" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +"kGl" = ( +/obj/item/explosive/grenade/high_explosive/upp, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"kGj" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"kGA" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"kGD" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"kGE" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/syndicate, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"kGS" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) "kGV" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_dorms) -"kHb" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) "kHi" = ( -/turf/open/asphalt/cement/cement1, -/area/strata/ug/interior/jungle/platform/east/scrub) -"kHp" = ( -/turf/open/asphalt/cement/cement2, -/area/strata/ug/interior/jungle/platform/east/scrub) -"kHz" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"kHk" = ( +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"kHC" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"kHG" = ( +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) +"kHM" = ( /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"kHP" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "kHV" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -19747,20 +19952,11 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"kIi" = ( -/obj/structure/closet/secure_closet/personal, +"kIr" = ( +/obj/structure/curtain/medical, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"kIj" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) -"kIs" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/admin) +/area/strata/ug/interior/outpost/jung/dorms/admin2) "kIu" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -19770,23 +19966,6 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) -"kIv" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) -"kIE" = ( -/obj/structure/machinery/power/apc/power/north, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"kIN" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) "kIW" = ( /obj/structure/bed/chair{ dir = 8 @@ -19796,45 +19975,42 @@ "kJd" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/strata/ug/interior/jungle/deep/east_dorms) -"kJJ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/foyer) -"kJP" = ( -/obj/structure/machinery/bioprinter{ - stored_metal = 1000 +"kJl" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"kJR" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"kJC" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/strata/orange_tile, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"kKo" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms) -"kJY" = ( -/obj/structure/machinery/power/apc/power/north, +"kKp" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/obj/structure/machinery/colony_floodlight, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) +/area/strata/ag/exterior/research_decks) "kKI" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"kLo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"kLz" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/meat, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = 3; - pixel_y = 7 - }, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) +"kLE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "kLM" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/deep/east_dorms) @@ -19844,66 +20020,44 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"kMb" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/strata/ug/interior/jungle/platform/east/scrub) -"kMd" = ( -/obj/structure/disposalpipe/segment{ +"kMy" = ( +/obj/structure/barricade/wooden{ dir = 4 }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"kMA" = ( -/obj/structure/filingcabinet, /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"kMQ" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"kMW" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_ew_half_cap" - }, -/turf/open/floor/strata/floor3, -/area/strata/ug/interior/jungle/deep/minehead) -"kNA" = ( -/obj/structure/platform/strata/metal{ - dir = 1 + dir = 4 }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"kMK" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/nearlz1) -"kNB" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"kMU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"kNr" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "kNJ" = ( /turf/open/gm/coast/beachcorner/south_west, /area/strata/ug/interior/jungle/deep/south_engi) -"kNS" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"kOa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "kOr" = ( /obj/structure/machinery/light/small{ dir = 1 @@ -19911,102 +20065,103 @@ /obj/structure/largecrate/random/case/double, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"kOu" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"kPB" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) +"kOA" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"kPk" = ( +/obj/item/stack/rods, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"kPm" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) "kPC" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/strata/ug/exterior/jungle/deep/carplake_center) "kPQ" = ( -/obj/item/storage/surgical_tray, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/turf/open/floor/strata/floor2, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan3/north, /area/strata/ag/interior/outpost/med) -"kPV" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata/blue3/east, -/area/strata/ag/interior/outpost/admin) -"kQo" = ( -/obj/effect/glowshroom, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +"kQk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin1) "kQu" = ( /turf/open/gm/coast/beachcorner/north_east, /area/strata/ug/exterior/jungle/deep/carplake_center) -"kRy" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"kRB" = ( +"kQw" = ( +/obj/structure/machinery/space_heater, /obj/structure/platform/strata/metal{ dir = 1 }, -/obj/structure/platform/strata/metal{ +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"kQF" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"kQM" = ( +/obj/structure/dropship_equipment/mg_holder, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"kQY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"kRg" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"kRw" = ( +/obj/item/stack/catwalk, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "kRI" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"kRL" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/obj/item/ammo_magazine/revolver/spearhead{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"kRV" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi) +"kRU" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) +"kSe" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) "kSi" = ( -/obj/structure/machinery/computer/cameras{ - dir = 8 +/obj/structure/machinery/space_heater, +/obj/structure/platform/strata/metal{ + dir = 1 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) "kSs" = ( /turf/open/gm/coast/beachcorner/north_west, /area/strata/ug/exterior/jungle/deep/carplake_center) -"kSw" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) -"kSE" = ( -/obj/structure/surface/table/reinforced/prison, +"kSt" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_full" + }, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) +/area/strata/ug/interior/jungle/deep/minehead) "kSS" = ( /obj/structure/window/reinforced/tinted{ dir = 4 @@ -20016,56 +20171,81 @@ "kSU" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/dorms/flight_control) +"kSV" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/east_dorms) "kSW" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"kTc" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" +"kSY" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"kTg" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"kTa" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) "kTB" = ( /turf/open/gm/coast/north, /area/strata/ug/exterior/jungle/deep/carplake_center) -"kTH" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/paths/dorms_quad) +"kTG" = ( +/obj/structure/machinery/washing_machine, +/obj/item/facepaint/skull, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) "kUb" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) "kUg" = ( -/obj/structure/machinery/door/airlock/almayer/command{ - dir = 2 +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) -"kUk" = ( -/obj/structure/bed/chair/comfy, -/obj/structure/barricade/handrail/strata{ - dir = 8 +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "kUs" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/strata/ug/exterior/jungle/deep/carplake_center) +"kUC" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"kUD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "kUN" = ( /obj/effect/decal/strata_decals/grime/grime2{ dir = 8 @@ -20073,28 +20253,52 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"kVW" = ( -/obj/structure/pipes/vents/pump{ +"kWd" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"kWt" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/vanyard) -"kWz" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"kWB" = ( +/obj/structure/machinery/shower{ dir = 8 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/med) -"kWC" = ( +/obj/structure/machinery/door/window/eastright{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"kWL" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"kWQ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +/obj/structure/machinery/light/small, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "kWS" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) +"kXa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) "kXx" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -20102,19 +20306,6 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"kXP" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) -"kXY" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) "kYe" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -20122,41 +20313,23 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"kYj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) "kYl" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"kYs" = ( -/obj/structure/machinery/landinglight/ds2/delayone, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/landingzone_2) -"kYD" = ( -/obj/structure/inflatable, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"kZi" = ( +"kYw" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"kYB" = ( +/obj/structure/machinery/computer/communications{ + dir = 4 + }, /obj/structure/surface/table/reinforced/prison, -/obj/item/stack/cable_coil/blue, -/obj/item/stack/cable_coil/blue, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/engi/drome) -"kZn" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/west, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/personal_storage) "kZL" = ( /obj/structure/platform/strata/metal{ @@ -20167,52 +20340,20 @@ }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) -"kZQ" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) "kZU" = ( /obj/structure/prop/dam/drill, /turf/open/floor/plating, /area/strata/ag/exterior/marsh) -"kZV" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"kZX" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"laf" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/t73, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/engi) -"laC" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball) -"laE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/machinery/computer/communications, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) "laF" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_engi) -"laK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +"laI" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) "laM" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -20223,30 +20364,24 @@ /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) "laS" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"laU" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"lba" = ( -/obj/structure/noticeboard{ - pixel_y = 32 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "lbh" = ( /turf/open/asphalt/cement, /area/strata/ag/exterior/tcomms/tcomms_deck) -"lbJ" = ( -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"lcb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"lcm" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/foyer) +/turf/open/asphalt/cement/cement1, +/area/strata/ag/interior/landingzone_1) "lcq" = ( /obj/item/clothing/suit/storage/militia, /obj/item/clothing/suit/storage/snow_suit/doctor, @@ -20255,22 +20390,6 @@ "lcs" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/marsh) -"lcA" = ( -/obj/item/fuel_cell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"lcN" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) "ldp" = ( /obj/structure/flora/grass/tallgrass/ice, /obj/structure/platform/strata/metal{ @@ -20282,12 +20401,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) -"ldI" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/landingzone_2) "ldO" = ( /turf/open/gm/coast/north, /area/strata/ug/interior/jungle/deep/east_carp) @@ -20295,12 +20408,47 @@ /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"lem" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) +"leB" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/landingzone_2) +"lfb" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) "lfj" = ( /obj/structure/barricade/handrail/strata{ dir = 4 }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) +"lfp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/device/radio, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"lfJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/device/flashlight/lamp{ + pixel_x = -4; + pixel_y = 14 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"lfX" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "lgv" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 9 @@ -20313,20 +20461,32 @@ }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"lgA" = ( -/obj/item/storage/box/ids, -/obj/structure/surface/rack, -/obj/item/device/radio, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"lgI" = ( -/obj/item/weapon/gun/revolver/spearhead, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/paths/southresearch) -"lgY" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/crash) +"lgK" = ( +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"lgV" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) +"lhd" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"lhj" = ( +/obj/item/clipboard, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"lhA" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) "lhH" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, @@ -20334,137 +20494,131 @@ "lhI" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/jungle/deep/structures/engi) -"lhJ" = ( -/obj/structure/surface/rack, -/obj/item/device/lightreplacer, -/obj/item/clothing/gloves/yellow, -/obj/item/tool/extinguisher, -/turf/open/floor/strata/orange_cover, +"lic" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/emergency, +/obj/item/device/radio, +/turf/open/asphalt/cement/cement3, /area/strata/ag/exterior/north_lz_caves) -"lhY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"liw" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/landingzone_checkpoint) +"liI" = ( +/obj/item/stool, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"liJ" = ( +/obj/structure/platform_decoration/strata/metal{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"lii" = ( -/obj/item/fuel_cell, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/interior/outpost/gen/bball/nest) -"lin" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) "liK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) -"ljk" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"ljp" = ( -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"ljR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms) -"lkb" = ( -/obj/structure/barricade/handrail/strata{ +"ljJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement14, -/area/strata/ug/interior/jungle/platform/east/scrub) -"lky" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/floor/strata/cyan3/east, +/area/strata/ag/interior/outpost/med) +"ljM" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) +/obj/structure/closet/jcloset, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"lka" = ( +/obj/structure/machinery/computer/guestpass, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"lko" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) "lkB" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/wood, /area/strata/ug/interior/jungle/deep/minehead) -"lkF" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"llz" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"llL" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) -"llP" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, +"lkZ" = ( +/obj/structure/machinery/light/small, /turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/vanyard) -"llR" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) +/area/strata/ag/interior/outpost/engi/drome) +"lli" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "lmv" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_dorms) -"lmI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"lmS" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +"lmQ" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) "lmV" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/paths/southresearch) +"lmZ" = ( +/obj/item/tool/pen/blue, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) "lno" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/south_engi) -"lns" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, +"lnw" = ( +/obj/item/storage/briefcase/inflatable, +/obj/item/storage/briefcase/inflatable, +/obj/structure/surface/rack, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"lnC" = ( +/obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"lnu" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_full" +/area/strata/ag/interior/outpost/canteen/personal_storage) +"lnY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NS-center" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"loh" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/asphalt/cement/cement1, -/area/strata/ug/interior/jungle/platform/east/scrub) -"loK" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/test_floor5, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"lpb" = ( -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"loO" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/obj/item/weapon/gun/pistol/t73, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec1) "lpk" = ( /obj/structure/bed{ icon_state = "abed" @@ -20481,116 +20635,73 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"lpo" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"lpF" = ( -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/landingzone_2) -"lqa" = ( -/obj/item/storage/briefcase, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"lqc" = ( -/obj/structure/machinery/camera/autoname{ +"lpw" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"lpT" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"lqe" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) -"lqt" = ( /obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/machinery/light/small{ - dir = 8 + dir = 8; + id_tag = "mining_outpost_pump" }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "lqD" = ( /obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"lrd" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/asphalt/cement, -/area/strata/ag/interior/tcomms) -"lrr" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"lrK" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, -/turf/closed/wall/strata_outpost, -/area/strata/ag/interior/outpost/gen/foyer) -"lrO" = ( -/obj/structure/cargo_container/wy/mid, -/turf/open/auto_turf/ice/layer0, -/area/strata/ag/exterior/marsh) -"lsu" = ( -/obj/structure/machinery/landinglight/ds2{ - dir = 8 +"lqJ" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/cdeathalarm_kit, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"lrd" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/landingzone_2) -"lsx" = ( +/turf/open/asphalt/cement, +/area/strata/ag/interior/tcomms) +"lrj" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) +"lrr" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"lrE" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"lst" = ( +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) "lsz" = ( /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"lsQ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, +"lth" = ( +/obj/structure/closet/secure_closet/security/soro, /turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"lsR" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"lsU" = ( -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/north_lz_caves) -"ltc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +/area/strata/ag/interior/landingzone_checkpoint) "ltp" = ( /obj/effect/spawner/random/tool, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"ltI" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/administration) -"ltW" = ( -/obj/structure/bed/chair{ +"ltw" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "ltZ" = ( /obj/structure/bed/roller, /obj/structure/sink{ @@ -20598,10 +20709,13 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/mountain) -"luq" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/landingzone_2) +"luy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) "luA" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -20610,47 +20724,11 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"luF" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/landingzone_1) -"luJ" = ( -/obj/structure/machinery/space_heater, -/obj/item/device/flashlight/lamp{ - pixel_y = 11 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"luM" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"luS" = ( +"luD" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/item/storage/box/bodybags, -/obj/item/storage/box/bodybags, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"luV" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/south) -"lvh" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) +/obj/item/reagent_container/food/snacks/jellysandwich, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) "lvw" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -20660,78 +20738,95 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/marsh) +"lvz" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/item/stool, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "lvF" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/deep/tearlake) -"lvI" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/prison/floor_plate, -/area/strata/ag/interior/dorms) -"lvV" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"lvY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"lwd" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"lwE" = ( +/turf/open/floor/strata/red2, +/area/strata/ug/interior/jungle/deep/south_res) +"lwe" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/beakers, +/obj/item/storage/box/gloves, +/obj/item/storage/box/pillbottles, +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"lwx" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 + dir = 4 }, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) -"lwL" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) "lxb" = ( -/obj/structure/largecrate/random, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"lxV" = ( -/obj/item/explosive/grenade/phosphorus, -/obj/structure/surface/rack, -/obj/item/folder/red, -/obj/item/storage/toolbox/emergency, -/obj/effect/decal/strata_decals/grime/grime3{ +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) +"lxA" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgibdown1" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"lyi" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/south) -"lxX" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"lyo" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "lyv" = ( /obj/structure/bookcase{ icon_state = "book-5" }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) -"lyR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata{ +"lyE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"lyW" = ( -/obj/structure/fence, -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/deep/structures/res) +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "lyX" = ( /obj/structure/bed{ icon_state = "abed" @@ -20747,111 +20842,99 @@ /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_engi) -"lzs" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) "lzt" = ( /obj/item/stack/rods, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"lzR" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 +"lzP" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/turf/open/floor/strata/white_cyan3/north, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) "lAc" = ( /turf/closed/wall/wood, /area/strata/ag/interior/restricted) -"lAs" = ( -/obj/structure/bed/stool, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) +"lAf" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "lAx" = ( /obj/structure/surface/rack{ layer = 2.5 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"lAD" = ( -/obj/structure/machinery/processor, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) "lAG" = ( -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"lAU" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/item/prop/almayer/box, +/obj/item/coin/marine/engineer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/greengrid, /area/strata/ag/interior/dorms) -"lBd" = ( -/obj/structure/machinery/power/reactor/colony, +"lAS" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) +"lBh" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/shed_five_caves) -"lBg" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"lBo" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"lCc" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) +"lBz" = ( /obj/structure/machinery/light/small{ - dir = 4 + dir = 1; + pixel_y = 20 }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"lCl" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/area/strata/ug/interior/outpost/jung/dorms/med1) +"lBP" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"lBQ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"lCd" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"lCv" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 }, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) -"lCu" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/exterior/research_decks) "lCE" = ( -/obj/structure/bed/chair/office/light{ +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/research_decks/security) +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"lCP" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "lDg" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"lDy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"lDq" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) "lDz" = ( /obj/structure/cryofeed, /obj/structure/platform/strata/metal, @@ -20860,86 +20943,144 @@ }, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"lDL" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"lDN" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"lFn" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 +"lDA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"lEx" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"lEE" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/landingzone_checkpoint) +"lET" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) +"lEX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 }, -/obj/structure/prop/ice_colony/ground_wire{ +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata/red2, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) +"lFx" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "lFG" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"lGs" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/interior/landingzone_1) -"lGA" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/turf/open/floor/strata/orange_edge/west, -/area/strata/ag/interior/dorms) -"lGF" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/res) -"lGI" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"lGX" = ( -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"lHh" = ( -/obj/effect/decal/cleanable/blood/gibs/xeno/body, +"lGc" = ( +/obj/item/stack/sandbags, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"lGt" = ( +/obj/structure/bed/chair, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) +"lGS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) +"lGT" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"lGV" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "lHs" = ( /obj/effect/landmark/railgun_camera_pos, /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) +"lHB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/tool/pen/blue, +/obj/item/storage/box/gloves{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"lHN" = ( +/obj/structure/machinery/bioprinter, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) "lHO" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/north_carp) -"lIs" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/engi/drome) +"lHZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"lIb" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/coatrack, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"lIc" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"lId" = ( +/obj/structure/inflatable/popped, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"lIp" = ( +/obj/structure/machinery/door/airlock/strata/autoname{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/restricted/devroom) +"lIz" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xtracks" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "lIR" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, @@ -20948,20 +21089,9 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"lIT" = ( -/obj/structure/machinery/vending/snack, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"lIU" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"lJg" = ( -/turf/open/asphalt/cement/cement2, -/area/strata/ag/exterior/north_lz_caves) +"lIY" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) "lJz" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/syndicate, @@ -20969,132 +21099,83 @@ dir = 8 }, /turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi/drome) -"lJG" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"lJW" = ( -/obj/item/clipboard, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"lJZ" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/landingzone_checkpoint) -"lKu" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_full" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"lKv" = ( -/turf/open/floor/strata, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"lKw" = ( -/obj/effect/decal/strata_decals/grime/grime2, -/obj/structure/coatrack, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"lKB" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/admin) -"lKH" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/strata/metal{ - dir = 1 +/area/strata/ag/interior/outpost/engi/drome) +"lJG" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"lKf" = ( +/turf/open/floor/plating/platebot, +/area/strata/ag/interior/outpost/engi/drome) +"lKv" = ( +/turf/open/floor/strata, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"lKF" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/landingzone_checkpoint) "lKM" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/marsh/water) -"lLm" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"lLq" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 +"lLc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"lLi" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"lLn" = ( +/obj/item/paper_bin, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "lLw" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/mountain) -"lNj" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/drinks/milk, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"lNm" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/landingzone_2) -"lNA" = ( -/obj/structure/mirror{ - pixel_y = 24 - }, +"lLR" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"lMQ" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"lNO" = ( +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) +"lMR" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"lNk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"lNn" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/sink{ - dir = 4; - pixel_x = 9 - }, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) -"lOa" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 8; + name = "\improper Airlock" }, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"lOn" = ( -/obj/item/stool, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) -"lOw" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"lOr" = ( +/obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"lOz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/peppermill, -/obj/structure/bed/chair, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"lOA" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, +/area/strata/ag/interior/tcomms) +"lOL" = ( /obj/structure/surface/rack, -/turf/open/floor/strata/floor3/east, +/obj/item/storage/box/gloves, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/med) "lOT" = ( /obj/effect/particle_effect/steam, @@ -21108,57 +21189,53 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"lOU" = ( -/obj/structure/machinery/computer/cameras, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"lPb" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"lPl" = ( -/obj/structure/inflatable/popped/door, -/obj/effect/decal/cleanable/dirt, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"lPp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"lPr" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms) +"lPv" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/largecrate/random, +/obj/item/storage/backpack/lightpack, +/turf/open/floor/greengrid, +/area/strata/ag/interior/dorms/hive) "lPF" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"lPL" = ( -/obj/structure/machinery/power/terminal{ - dir = 8 +"lPH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"lPR" = ( +/obj/structure/machinery/holosign/surgery, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 1; + id_tag = "bunker_or1"; + name = "\improper Operating Room 1" }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/shed_five_caves) -"lQf" = ( -/turf/open/asphalt/cement/cement9, -/area/strata/ug/interior/jungle/platform/east/scrub) -"lQj" = ( -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"lQa" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/white_cyan4/east, -/area/strata/ag/interior/outpost/med) +/obj/structure/surface/rack, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/obj/item/clothing/shoes/jackboots, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"lQK" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/item/storage/photo_album, +/obj/structure/machinery/door/window/eastright{ + dir = 2 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin1) "lQT" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -21167,23 +21244,10 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/landingzone_checkpoint) -"lQZ" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, +"lRF" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"lRK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/maintenance) -"lRS" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) +/area/strata/ag/interior/dorms) "lRT" = ( /obj/structure/platform_decoration/strata/metal{ dir = 8 @@ -21191,39 +21255,80 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/tcomms) -"lSd" = ( -/obj/structure/machinery/computer/station_alert{ - dir = 4; - pixel_x = -10 - }, +"lSc" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +/obj/item/paper_bin, +/obj/item/tool/stamp, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/south) -"lSS" = ( -/obj/item/storage/pill_bottle/bicaridine, -/obj/structure/surface/rack, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"lSP" = ( +/obj/structure/inflatable, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"lST" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"lTC" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) "lTG" = ( /obj/structure/sign/safety/biohazard, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/tcomms) +"lTM" = ( +/obj/structure/fence, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"lTR" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) "lTW" = ( /turf/open/gm/coast/north, /area/strata/ug/interior/jungle/deep/south_engi) -"lUr" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/effect/decal/strata_decals/grime/grime4, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) "lUw" = ( /obj/item/weapon/gun/pistol/t73, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"lUF" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"lUX" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/tearlake) +"lUZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"lVB" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) "lVF" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -21234,68 +21339,110 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"lVW" = ( -/obj/structure/machinery/light/small, -/turf/open/asphalt/cement/cement15, -/area/strata/ug/interior/jungle/platform/east/scrub) -"lWm" = ( -/obj/item/fuel_cell, +"lVS" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"lWe" = ( +/obj/structure/prop/turbine_extras, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"lWo" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 + }, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"lWJ" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/machinery/light/small{ +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 4 }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) -"lWo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"lWq" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan{ +"lWR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"lWU" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"lXI" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) +"lXS" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"lXX" = ( +/obj/structure/prop/ice_colony/tiger_rug{ + layer = 2.1 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) +"lYx" = ( +/obj/structure/machinery/space_heater, +/obj/structure/machinery/light/small, +/obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/strata/multi_tiles, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"lYG" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/dorms) -"lWt" = ( -/obj/item/stack/rods, -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/platform/east/scrub) -"lWz" = ( -/obj/structure/machinery/light/small{ +"lYL" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"lYZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"lWQ" = ( -/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) +"lZc" = ( +/obj/structure/flora/grass/tallgrass/ice/corner, +/turf/open/auto_turf/ice/layer2, +/area/strata/ag/exterior/marsh) +"lZf" = ( +/turf/open/auto_turf/ice/layer2, +/area/strata/ag/exterior/marsh/river) +"maF" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer, /turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"mbh" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/engi/drome) -"lWT" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +"mbA" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin4) -"lXD" = ( -/obj/item/clipboard, +/area/strata/ag/interior/dorms/canteen) +"mbC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/inflatable/popped/door, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"lXJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = -28 +/area/strata/ag/exterior/research_decks) +"mbK" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/largecrate/random, -/obj/item/seeds/walkingmushroommycelium, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"lXP" = ( +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) +"mcb" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; pixel_y = 13 @@ -21310,111 +21457,36 @@ /obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/west_engi) -"lZc" = ( -/obj/structure/flora/grass/tallgrass/ice/corner, -/turf/open/auto_turf/ice/layer2, -/area/strata/ag/exterior/marsh) -"lZf" = ( -/turf/open/auto_turf/ice/layer2, -/area/strata/ag/exterior/marsh/river) -"lZy" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/obj/structure/barricade/handrail/strata, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"mai" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"map" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) -"maO" = ( -/turf/open/asphalt/cement/cement15, -/area/strata/ag/exterior/landingzone_2) -"mbc" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/red2, +/area/strata/ug/interior/jungle/deep/structures/res) +"mcn" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) +"mct" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"mbp" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/obj/item/device/flashlight/lamp/green, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"mcG" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/restricted/devroom) -"mbv" = ( -/obj/structure/coatrack, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"mbE" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/tank/emergency_oxygen/engi, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"mbN" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"mbV" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/obj/item/storage/box/donkpockets, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"mcK" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/engi/drome) -"mcm" = ( /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"mcs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"mcI" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/strata/cyan3/east, -/area/strata/ag/interior/outpost/med) -"mcJ" = ( -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, -/obj/effect/landmark/queen_spawn, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"mcQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) "mcX" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/snow, @@ -21423,122 +21495,50 @@ /turf/open/floor/plating, /area/strata/ag/exterior/nearlz2) "mde" = ( -/obj/structure/platform_decoration/strata{ - dir = 1 - }, -/obj/effect/blocker/sorokyne_cold_water, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/water) -"mdi" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"meg" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) -"mew" = ( -/obj/item/device/t_scanner, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"meI" = ( -/obj/structure/inflatable, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/orange_edge/west, -/area/strata/ag/exterior/research_decks) -"meL" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"meY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan3/northeast, -/area/strata/ag/interior/outpost/med) -"mfa" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) -"mfb" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"mfp" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/strata/ag/interior/landingzone_checkpoint) -"mfu" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"mfA" = ( -/obj/item/stack/rods, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"mfK" = ( -/obj/structure/largecrate/random, -/obj/structure/machinery/light/small{ +/obj/structure/platform_decoration/strata{ dir = 1 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"mgg" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" +/obj/effect/blocker/sorokyne_cold_water, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/water) +"mds" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh) +"mdH" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/cyan1/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"meF" = ( +/obj/structure/platform/strata/metal{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"mgn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/prison/darkredfull2, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/research_decks) +"mfp" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/landingzone_checkpoint) -"mgy" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/engi/drome) -"mgD" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"mgG" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"mgT" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "mhc" = ( /obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/cleanable/blood, /turf/open/floor/interior/tatami, /area/strata/ag/interior/restricted) -"mhK" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"mio" = ( -/obj/structure/machinery/space_heater, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) +"mhz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3/southwest, +/area/strata/ag/interior/outpost/med) "mip" = ( /obj/structure/platform/strata{ dir = 1 @@ -21550,37 +21550,27 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"mix" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) "miy" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) "miI" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/machinery/shower{ + dir = 8 }, -/obj/structure/machinery/light/small{ +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/door/window/eastright{ dir = 8 }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"miO" = ( -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor5, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"miY" = ( -/obj/item/toy/deck, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"miJ" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) "mjp" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -21594,88 +21584,113 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) +"mjB" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) +"mjG" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/platform/east/scrub) "mjJ" = ( /obj/effect/spawner/random/toolbox, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"mjS" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"mkE" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"mkN" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"mkP" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/vanyard) +"mmo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"mkg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/deck, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"mkF" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"mkU" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/effect/landmark/corpsespawner/upp, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"mlX" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"mlY" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_full" +/obj/structure/barricade/handrail/strata{ + dir = 8 }, +/obj/structure/barricade/handrail/strata, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) -"mmf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"mmg" = ( +/area/strata/ag/interior/outpost/admin) +"mmC" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"mmq" = ( -/obj/structure/filingcabinet, +/obj/structure/machinery/computer/cameras, /obj/structure/machinery/light/small{ - dir = 4 + dir = 1; + pixel_y = 20 }, /turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +/area/strata/ug/interior/jungle/deep/structures/res) "mmF" = ( /obj/effect/landmark/monkey_spawn, /turf/open/gm/dirt, /area/strata/ug/exterior/jungle/deep/carplake_center) -"mmM" = ( -/obj/structure/bed/chair{ - dir = 8 +"mmY" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"mno" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/interior/plastic, +/area/strata/ag/interior/paths/cabin_area/central) +"mnP" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_full" }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"mnn" = ( -/obj/structure/bed/chair{ - dir = 1 +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) +"moe" = ( +/obj/item/ammo_magazine/revolver/upp, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"mox" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/east_dorms) +"moz" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"mnt" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"moh" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ +/obj/item/fuel_cell, +/turf/open/floor/strata/red2, +/area/strata/ag/interior/outpost/engi) +"moO" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/landingzone_2) +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"mpa" = ( +/obj/structure/closet/wardrobe/medic_white, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"mpi" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen) "mpk" = ( /turf/closed/shuttle/ert{ icon_state = "upp27" @@ -21685,83 +21700,54 @@ /obj/structure/sign/safety/maint, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) -"mpy" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/lights, -/obj/item/storage/box/lights, -/obj/item/storage/box/lights, -/obj/item/storage/box/lights, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"mpS" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"mqc" = ( +/obj/structure/machinery/vending/snack, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"mqi" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"mqr" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"mqA" = ( -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"mqH" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"mqy" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"mqW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"mrc" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/hive) +"mrH" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"mqI" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/obj/structure/barricade/handrail/strata{ +/obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"mrc" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "mrT" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) -"msc" = ( -/obj/item/stack/sandbags, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"msh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"msb" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) +/obj/effect/landmark/survivor_spawner, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "mso" = ( /obj/structure/machinery/weather_siren, /turf/closed/wall/strata_outpost/reinforced/hull, @@ -21774,215 +21760,168 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh/center) -"mth" = ( -/obj/item/storage/surgical_tray, -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/bodybags{ - pixel_x = -4; - pixel_y = 12 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"mtt" = ( -/obj/structure/surface/rack, -/obj/item/device/radio, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) "mtD" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outpost/canteen/bar) -"mtI" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"mtP" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"mtJ" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"mtY" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/asphalt/cement/cement9, -/area/strata/ug/interior/jungle/deep/structures/res) -"muh" = ( -/obj/structure/machinery/door/airlock/prison{ - name = "Reinforced Airlock" +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"mus" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/cyan1/east, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"muU" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 8 }, /turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"muQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/kitchen/utensil/pfork, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) -"muV" = ( -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/maint/canteen_e_1) +"mvb" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) "mvh" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) -"mvo" = ( -/obj/item/trash/pistachios, -/obj/structure/pipes/standard/simple/hidden/cyan{ +"mvq" = ( +/obj/structure/largecrate/random, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"mvr" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/admin) +"mvu" = ( +/obj/item/stool, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/security) +"mvv" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "mvE" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/center) -"mvM" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"mvZ" = ( -/obj/structure/machinery/light/small{ +"mvJ" = ( +/obj/structure/closet/lasertag/red, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"mvL" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"mwg" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) "mwt" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) -"mwv" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) -"mwG" = ( -/obj/structure/bed/chair{ - dir = 1 +"mwu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"mwH" = ( -/obj/structure/barricade/handrail/strata{ +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"mwD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"mwN" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; dir = 1 }, -/turf/open/asphalt/cement/cement4, -/area/strata/ug/interior/jungle/platform/east/scrub) -"mxf" = ( -/obj/structure/bed/chair{ - dir = 8 - }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"mwZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms/canteen) -"mxV" = ( -/obj/item/stack/medical/ointment, -/obj/item/stack/medical/splint, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/engi/drome) -"myc" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ +"mxv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"mxA" = ( +/obj/structure/inflatable/door, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/research_decks) +"mxR" = ( +/obj/structure/surface/rack{ + layer = 2.5 + }, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/sec2) "myk" = ( /obj/structure/sign/safety/storage, /turf/closed/wall/strata_outpost, -/area/strata/ag/interior/tcomms) -"mym" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"myP" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) -"mzB" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"mzG" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"mzU" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"mzV" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 8 - }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"mAm" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/item/dogtag, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/gen/bball) -"mAq" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/toilet{ +/area/strata/ag/interior/tcomms) +"myq" = ( +/obj/structure/barricade/wooden{ dir = 8 }, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"mAw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) +/obj/effect/landmark/corpsespawner/chef, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/bar) +"mzc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/utensil/pfork, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"mzM" = ( +/turf/open/asphalt/cement/cement2, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"mAt" = ( +/obj/structure/bookcase, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"mAA" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) "mBl" = ( /obj/structure/reagent_dispensers/watertank, /obj/structure/barricade/handrail/strata{ @@ -21990,79 +21929,82 @@ }, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"mBq" = ( +"mBr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"mBM" = ( +/obj/structure/bed/chair{ + dir = 8 + }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/administration) -"mBH" = ( -/obj/structure/window/reinforced/tinted{ +/area/strata/ag/interior/dorms/canteen) +"mCi" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/closet/secure_closet/personal, -/obj/item/lightstick, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"mCc" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +/obj/structure/platform/strata/metal{ + dir = 1 }, +/turf/open/floor/strata/red3, +/area/strata/ag/interior/outpost/med) +"mCw" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/foyer) -"mCH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/cubancarp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"mCJ" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, +/obj/structure/machinery/door/airlock/almayer/medical/colony, /turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"mCy" = ( +/obj/item/fuel_cell, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) -"mDt" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gibarm_flesh" +"mDf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/ale, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"mDj" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, +/obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"mDy" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) +/area/strata/ag/interior/landingzone_checkpoint) +"mDm" = ( +/obj/structure/surface/table/woodentable, +/obj/item/pizzabox/meat, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen/bar) "mDF" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/vanyard) -"mDS" = ( -/obj/structure/bed/chair{ +"mDI" = ( +/obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"mDU" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"mDW" = ( -/obj/structure/machinery/disposal, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) -"mEd" = ( -/obj/structure/bedsheetbin, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) +/area/strata/ag/exterior/research_decks) +"mDK" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"mEj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "mEk" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -22071,34 +22013,54 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"mER" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"mFO" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/closet/secure_closet/personal, +/obj/item/storage/pill_bottle/kelotane, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"mFR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/landingzone_checkpoint) +"mFX" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"mFr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"mGq" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/inflatable/door, -/turf/open/floor/strata/multi_tiles/west, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) -"mFZ" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) "mGv" = ( /obj/structure/largecrate/random, /turf/open/asphalt/cement, /area/strata/ag/exterior/research_decks) +"mGF" = ( +/turf/open/asphalt/cement/cement1, +/area/strata/ag/interior/landingzone_1) "mHo" = ( /obj/structure/largecrate/random, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi) +"mHp" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "mHA" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -22107,28 +22069,31 @@ /obj/structure/machinery/floodlight/landing, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/interior/outpost/engi/drome) -"mIm" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/decal/strata_decals/grime/grime4{ - dir = 4 +"mHK" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"mHT" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor/strata/orange_edge/west, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms) -"mIv" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/obj/item/storage/firstaid/regular, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) +"mHZ" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/admin) +"mIu" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/bcircuit, +/area/strata/ag/interior/dorms) +"mIy" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) "mIE" = ( /obj/structure/prop/almayer/computers/mapping_computer, /turf/closed/wall/strata_outpost/reinforced/hull, @@ -22144,152 +22109,138 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/shed_five_caves) -"mJb" = ( -/obj/structure/barricade/wooden, +"mIO" = ( +/obj/structure/surface/rack, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"mJj" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 +/area/strata/ug/interior/jungle/deep/structures/res) +"mIU" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"mJC" = ( -/obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"mKb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/sodawater, +/area/strata/ag/interior/outpost/admin) +"mJh" = ( +/obj/structure/machinery/light/small, +/turf/open/asphalt/cement/cement14, +/area/strata/ug/interior/jungle/platform/east/scrub) +"mJB" = ( +/obj/structure/closet/bombcloset, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, /turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"mKc" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_full" +/area/strata/ag/interior/outpost/engi) +"mJH" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"mLc" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e" +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"mLn" = ( -/turf/closed/wall/strata_ice/jungle, -/area/strata/ug/interior/jungle/deep/east_engi) -"mLt" = ( -/obj/item/stool, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/gen/bball) -"mLz" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/area/strata/ag/interior/dorms) +"mJK" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/item/storage/large_holster/machete/full, +/obj/effect/spawner/random/toolbox{ + pixel_y = 12 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"mLA" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"mLC" = ( -/obj/item/storage/firstaid/adv, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"mLF" = ( -/obj/structure/machinery/light/small, +"mJY" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/effect/spawner/random/tool, +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/deep/minehead) +"mKY" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/engi) +"mLj" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"mLS" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms) -"mLV" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"mLX" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 9 + }, /turf/open/floor/prison/darkredfull2, /area/strata/ag/interior/dorms/maintenance) -"mMk" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/research_decks/security) -"mMl" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) +"mLn" = ( +/turf/closed/wall/strata_ice/jungle, +/area/strata/ug/interior/jungle/deep/east_engi) +"mLS" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) "mMp" = ( /turf/open/gm/coast/beachcorner/south_west, /area/strata/ug/interior/jungle/deep/tearlake) +"mMQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) "mMR" = ( /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"mNa" = ( -/obj/structure/bed/chair{ - dir = 4 +"mMY" = ( +/obj/item/fuel_cell, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"mNk" = ( +/obj/structure/largecrate/random/case/double, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"mNr" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"mNv" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) -"mOh" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms/south) +"mOb" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"mOB" = ( -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"mOQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/station_alert{ - dir = 4; - pixel_x = -10 - }, -/turf/open/floor/strata/purp1, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"mOc" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "mOR" = ( /obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"mPb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"mOU" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/orange_edge/west, +/area/strata/ag/exterior/research_decks) "mPj" = ( /turf/closed/shuttle/ert{ icon_state = "upp_leftengine" @@ -22303,298 +22254,402 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"mQb" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +"mPK" = ( +/obj/structure/filingcabinet, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"mPZ" = ( +/turf/open/asphalt/cement/cement14, +/area/strata/ag/exterior/research_decks) "mQe" = ( /turf/closed/shuttle/ert{ icon_state = "upp8" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"mQl" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"mQx" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"mQG" = ( +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"mQF" = ( +/obj/structure/machinery/colony_floodlight, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "mQR" = ( /obj/structure/inflatable/popped, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"mQS" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"mRR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/item/reagent_container/food/snacks/chawanmushi, +"mRg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2 + }, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/bar) -"mSd" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) -"mSe" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" +/area/strata/ag/interior/research_decks/security) +"mRL" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/tcomms) -"mSM" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"mSt" = ( +/obj/structure/coatrack, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"mSD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"mSO" = ( +/obj/structure/machinery/power/apc/no_power/south, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"mTo" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/toastedsandwich, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -10; + pixel_y = 8 + }, +/obj/item/reagent_container/food/condiment/hotsauce/franks{ + pixel_x = 8; + pixel_y = 17 + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"mTF" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 8 +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/multi_tiles/west, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"mUa" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"mUD" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp9" + }, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"mUE" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"mUU" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp_rightengine" + }, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"mVl" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/south) -"mTg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/door/window/eastright{ +"mVv" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"mVL" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ dir = 2 }, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/security) -"mTE" = ( +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"mVW" = ( +/obj/structure/machinery/vending/cola, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"mWl" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"mWm" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"mWn" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"mWF" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement, +/area/strata/ug/interior/jungle/platform/east/scrub) +"mWL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 2; + name = "Medical Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"mWS" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/cyan3/east, +/area/strata/ag/interior/outpost/med) +"mXa" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"mXw" = ( /obj/structure/sink{ dir = 8; pixel_x = -11 }, +/obj/structure/mirror{ + pixel_x = -29 + }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/admin) -"mUD" = ( -/turf/closed/shuttle/ert{ - icon_state = "upp9" +/area/strata/ug/interior/outpost/jung/dorms/med2) +"mXD" = ( +/obj/structure/machinery/computer/secure_data, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"mYn" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 }, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"mUU" = ( -/turf/closed/shuttle/ert{ - icon_state = "upp_rightengine" +/turf/open/asphalt/cement/cement1, +/area/strata/ag/interior/landingzone_1) +"mYs" = ( +/obj/structure/flora/grass/tallgrass/ice/corner{ + dir = 8 }, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"mUW" = ( +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/marsh) +"mYv" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/north_lz_caves) +"mZd" = ( +/turf/closed/wall/strata_ice/dirty, +/area/strata/ag/interior/outpost/gen/foyer) +"mZs" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"mVh" = ( -/obj/effect/decal/cleanable/blood, +/obj/structure/inflatable/popped/door, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"mVA" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 +/area/strata/ug/interior/jungle/deep/structures/res) +"mZF" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"mVM" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"mVV" = ( -/obj/item/ammo_magazine/rifle/type71, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"mVX" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"mVZ" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ +/obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/interior/landingzone_1) -"mWF" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/cement, -/area/strata/ug/interior/jungle/platform/east/scrub) -"mWI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/rollingpin, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/outpost/canteen/bar) -"mXb" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"mXK" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"mZL" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"mZP" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"nav" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + name = "\improper Chunkeez Diner door" }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"naA" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"mXY" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/barricade/snow{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"naD" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"nbs" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) -"mYb" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"mYs" = ( -/obj/structure/flora/grass/tallgrass/ice/corner{ - dir = 8 - }, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/marsh) -"mYC" = ( +"nbP" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"nbX" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"nci" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/red1, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"ncs" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/drinks/milk, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"ncA" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/security) -"mZc" = ( +"ndu" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"ndK" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"new" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/bed/chair{ +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"neC" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"mZd" = ( -/turf/closed/wall/strata_ice/dirty, -/area/strata/ag/interior/outpost/gen/foyer) -"nap" = ( -/obj/structure/barricade/wooden{ +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) +"neE" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"nba" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"ncb" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi) -"nev" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"neZ" = ( +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata/multi_tiles/west, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/res) -"nfn" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1; - icon_state = "commb" - }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) +"nfD" = ( +/obj/structure/largecrate/random, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/tcomms/tcomms_deck) "nfG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) "nfK" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/closed/wall/resin/membrane/strata/on_tiles, /area/strata/ag/interior/outpost/gen/bball/nest) -"nfW" = ( +"nfM" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"ngi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) -"ngM" = ( -/obj/structure/machinery/washing_machine, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"ngQ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"nfV" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/machinery/light/small{ + dir = 1 }, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"nfW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/space_mountain_wind, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms) -"ngV" = ( -/obj/item/stack/catwalk, -/turf/open/floor/almayer/plate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"nhe" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"ngh" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"ngB" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"ngR" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/marsh/river) +"ngS" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_sn_full_cap" }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"ngY" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/obj/structure/prop/ice_colony/ground_wire{ +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement15, +/area/strata/ug/interior/jungle/platform/east/scrub) +"nhi" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/structure/prop/ice_colony/ground_wire{ +/obj/effect/decal/strata_decals/grime/grime4{ dir = 4 }, -/turf/open/floor/strata/red2, -/area/strata/ug/interior/jungle/deep/minehead) +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"nhu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/pill_bottle/russianRed, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) "nhv" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/mountain) -"nhL" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"nie" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata/white_cyan2/west, +"niN" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/floor3, /area/strata/ug/interior/jungle/deep/structures/res) -"niD" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/asphalt/cement/cement9, -/area/strata/ug/interior/jungle/platform/east/scrub) -"niM" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) "njW" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/ice/layer1, @@ -22604,38 +22659,26 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"nkl" = ( -/obj/structure/barricade/handrail/strata{ +"nkn" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/strata/orange_edge/east, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) "nkp" = ( /obj/structure/floodgate, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/research_decks) -"nkx" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"nkz" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/coatrack, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"nkH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"nkq" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"nkN" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"nkM" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) "nla" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -22645,63 +22688,27 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"nlf" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/obj/structure/barricade/wooden{ - dir = 8 +"nlg" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/res) +"nmr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, /turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"nlS" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"nme" = ( +/area/strata/ag/interior/research_decks/security) +"nmP" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement14, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"nmp" = ( -/obj/structure/mirror{ - pixel_y = 28 - }, -/obj/structure/largecrate/guns/russian, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"nms" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/obj/structure/platform/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/exterior/paths/dorms_quad) -"nmB" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"nmG" = ( -/obj/structure/prop/ice_colony/surveying_device/measuring_device, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) -"nmQ" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"nmR" = ( -/obj/effect/landmark/queen_spawn, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) +/area/strata/ag/interior/outpost/med) "nmS" = ( /obj/structure/machinery/message_server, /turf/open/floor/strata, @@ -22710,25 +22717,11 @@ /obj/structure/bed/chair, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"nnr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"nnE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/obj/item/stack/medical/bruise_pack, -/obj/item/device/radio, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"nnI" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/med) +"nnK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/canteen) "nnY" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -22737,31 +22730,27 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) +"noc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/pizza, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "noq" = ( /turf/open/gm/coast/beachcorner/south_east, /area/strata/ug/interior/jungle/deep/east_dorms) -"nos" = ( -/obj/structure/bed/chair{ +"npo" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/obj/structure/platform_decoration/strata/metal{ dir = 4 }, -/obj/effect/landmark/survivor_spawner, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"npc" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"npk" = ( -/obj/item/tool/wrench, -/turf/open/floor/almayer/test_floor5, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"npr" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) +/area/strata/ag/interior/outpost/engi/drome) +"npV" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "npX" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -22770,166 +22759,80 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"npZ" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"nqc" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) -"nqo" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/tcomms) -"nqu" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"nqK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"nqO" = ( +"nqa" = ( +/obj/effect/decal/cleanable/blood, /obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/south) +"nqS" = ( +/obj/item/storage/toolbox/electrical, +/obj/item/storage/toolbox/electrical, +/obj/structure/surface/rack, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "nqX" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) +"nra" = ( +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/engi/drome) "nrc" = ( /obj/effect/decal/cleanable/blood/oil, /obj/item/stack/sheet/wood, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"nrd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"nre" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/binoculars, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) "nrp" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/river) -"nrs" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"nrM" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/obj/effect/decal/cleanable/ash, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"nru" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"nrF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) +/area/strata/ag/interior/dorms) "nrQ" = ( /obj/structure/closet/firecloset/full, /obj/structure/machinery/light/small, /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/gen/foyer) -"nrR" = ( -/obj/structure/machinery/holosign/surgery, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - dir = 1; - id_tag = "bunker_or1"; - name = "\improper Operating Room 1" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"nsf" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +"nrS" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "nsq" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/deep/east_carp) -"nsr" = ( -/obj/structure/bedsheetbin, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) -"nsu" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"nsV" = ( -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"ntn" = ( -/obj/structure/machinery/vending/snack, +"nsG" = ( /obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname{ dir = 8 }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"nsM" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"ntB" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"ntp" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"ntE" = ( +/obj/item/reagent_container/food/drinks/coffee, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, /turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"ntQ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) -"ntW" = ( -/obj/structure/bed/nest, -/obj/item/explosive/grenade/incendiary{ - pixel_x = -4; - pixel_y = -2 - }, -/obj/effect/decal/cleanable/blood/gibs/core, +/area/strata/ag/interior/administration) +"ntU" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, /turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"nug" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) +/area/strata/ag/interior/dorms/flight_control) "nun" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -22940,158 +22843,117 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"nux" = ( -/obj/structure/machinery/chem_dispenser/soda/beer, +"nuu" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"nuF" = ( -/obj/item/stack/sandbags, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen) -"nva" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/decal/cleanable/blood, -/obj/effect/landmark/good_item, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"nvl" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ +/obj/structure/machinery/computer/cameras{ dir = 8 }, -/obj/structure/machinery/door/window/eastright{ - dir = 1 +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"nuG" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"nvy" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/south) -"nwh" = ( +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/landingzone_2) +"nvc" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement15, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"nvI" = ( +/obj/structure/closet/secure_closet/personal, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"nwO" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"nwS" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) +/area/strata/ag/interior/outpost/canteen/personal_storage) +"nvV" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) +"nwi" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/head/hardhat/white, +/obj/item/clothing/head/hardhat/white, +/obj/structure/machinery/light/small, +/obj/item/clothing/head/hardhat/white, +/turf/open/floor/strata/red3/north, +/area/strata/ag/interior/outpost/med) +"nws" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/platform/east/scrub) +"nwA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/donkpockets, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"nwK" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) "nxh" = ( /obj/structure/surface/rack, /obj/item/paper_bin, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) +"nxi" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "nxF" = ( /turf/closed/shuttle/ert{ icon_state = "upp_leftengine" }, /area/strata/ag/exterior/marsh/crash) -"nxO" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/ripley_build_and_repair, -/obj/item/book/manual/surgery, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"nxV" = ( -/obj/structure/machinery/light/small, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "nyf" = ( -/obj/structure/machinery/photocopier, -/obj/structure/barricade/handrail/strata{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"nyg" = ( -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 1 +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"nys" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) -"nza" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 +"nzD" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/prop/ice_colony/ground_wire{ +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/south_engi) -"nzb" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/item/ammo_magazine/revolver/spearhead{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"nzK" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"nze" = ( -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"nzn" = ( /obj/effect/decal/cleanable/blood, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"nzv" = ( -/obj/structure/machinery/computer/secure_data, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"nzQ" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"nzO" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"nzX" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "nAf" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/strata/ug/interior/jungle/deep/east_carp) -"nAx" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"nAE" = ( -/obj/effect/landmark/corpsespawner/bridgeofficer, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) +"nAA" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/corpsespawner/russian, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "nAM" = ( /obj/structure/platform/strata{ dir = 1 @@ -23101,6 +22963,10 @@ }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) +"nAP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) "nAV" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fernybush_3" @@ -23110,32 +22976,33 @@ "nAZ" = ( /turf/open/gm/river, /area/strata/ug/interior/jungle/deep/east_carp) -"nBi" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"nBc" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"nBq" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/t73, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"nBy" = ( -/obj/structure/reagent_dispensers/beerkeg, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"nBK" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"nCa" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/tool/match, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"nBI" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"nBT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"nBW" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"nCp" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) "nCD" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -23145,12 +23012,34 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"nCX" = ( -/obj/structure/bed/chair{ +"nCH" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/wy_mre, +/obj/item/tool/crowbar, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"nCM" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/red2, +/area/strata/ug/interior/jungle/deep/north_carp) "nDj" = ( /obj/structure/bookcase{ icon_state = "book-5" @@ -23160,39 +23049,38 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"nDk" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/tcomms) -"nDB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"nDI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/administration) -"nFm" = ( +"nET" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/white_cyan3/north, -/area/strata/ag/interior/outpost/med) -"nFS" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/limb, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/platform/east/scrub) -"nFU" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"nFh" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/landingzone_2) +"nFk" = ( +/obj/structure/largecrate/guns/russian, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"nFm" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"nFL" = ( +/obj/structure/window/reinforced/tinted, +/obj/item/device/flashlight/lamp, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"nGd" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) "nGi" = ( /obj/structure/cargo_container/grant/left, /turf/open/auto_turf/ice/layer0, @@ -23203,77 +23091,70 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"nGn" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "nGo" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, +/obj/structure/machinery/light/small, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) -"nHb" = ( -/obj/item/stool, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"nHc" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/landingzone_checkpoint) -"nHx" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"nHd" = ( +/turf/open/asphalt/cement/cement9, +/area/strata/ag/exterior/landingzone_2) +"nIC" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"nID" = ( +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"nIO" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/machinery/light/small, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"nIQ" = ( -/obj/item/fuel_cell, -/obj/structure/barricade/handrail/strata{ +/obj/structure/surface/table/reinforced/prison, +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/platform/strata/metal{ +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"nIE" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"nIX" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata/red2, -/area/strata/ag/interior/outpost/engi) -"nIT" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/gen/bball) +"nJd" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi/drome) +"nJe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, /turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) +"nJn" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "nJr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"nJu" = ( +/obj/item/storage/firstaid/adv, /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"nJv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 }, -/obj/structure/machinery/computer/communications, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) "nJK" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/marsh) @@ -23281,136 +23162,167 @@ /obj/structure/machinery/shower, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen/personal_storage) -"nKb" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, +"nJX" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/landingzone_checkpoint) +"nJZ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"nKe" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/research_decks/security) -"nKP" = ( -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"nLc" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"nLi" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi/drome) -"nLv" = ( -/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"nLz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ +/area/strata/ag/interior/outpost/admin) +"nKv" = ( +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"nLF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/lightreplacer, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/turf/open/floor/strata/white_cyan4/east, +/area/strata/ag/interior/outpost/med) +"nLn" = ( +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) "nLG" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"nLI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"nLX" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/vanyard) -"nME" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/fuel_cell, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/interior/outpost/gen/bball/nest) -"nNM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"nOm" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/marsh/crash) -"nOY" = ( -/obj/item/book/manual/surgery, +"nMz" = ( +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"nMM" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"nNb" = ( /obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/sugar, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) +"nNZ" = ( +/obj/structure/machinery/power/apc/no_power/east, /obj/structure/machinery/light/small{ - dir = 8 + dir = 4 }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"nPb" = ( -/turf/open/gm/coast/beachcorner2/north_east, -/area/strata/ug/interior/jungle/deep/east_carp) -"nPf" = ( -/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"nOf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"nOx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"nOB" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) +"nOL" = ( +/obj/structure/kitchenspike, /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"nPb" = ( +/turf/open/gm/coast/beachcorner2/north_east, +/area/strata/ug/interior/jungle/deep/east_carp) "nPh" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) -"nPD" = ( -/obj/structure/surface/table/reinforced/prison, +"nPi" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"nPz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/platform/east/scrub) +/area/strata/ag/exterior/research_decks) "nPJ" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"nPU" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) -"nQn" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +"nPP" = ( +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"nPT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"nQp" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"nQt" = ( +/obj/structure/machinery/light/small, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/administration) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"nQx" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) "nQE" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) +"nQN" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"nQU" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "nQW" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/gen/bball) -"nRf" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) +"nRi" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/foyer) +"nRD" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"nRG" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/med) +"nRJ" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/research_decks/security) "nRN" = ( /obj/structure/cargo_container/arious/rightmid{ health = 5000; @@ -23418,54 +23330,75 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"nRT" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"nRO" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/strata/purp2, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/engi) -"nSg" = ( -/obj/structure/platform/strata/metal{ - dir = 1 +"nRQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement14, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"nRZ" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/research_and_development, +/obj/item/book/manual/security_space_law, +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"nSv" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "nSJ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"nSQ" = ( -/obj/structure/cargo_container/wy/right, -/turf/open/auto_turf/ice/layer0, -/area/strata/ag/exterior/marsh) +"nSM" = ( +/obj/structure/surface/table/woodentable, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/bar) +"nTd" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"nTk" = ( +/obj/item/clipboard, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"nTN" = ( +/obj/structure/closet/lasertag/blue, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) "nTS" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/river) -"nTY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 8; - icon_state = "commb" - }, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"nUo" = ( +"nUm" = ( +/obj/structure/machinery/reagentgrinder, /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) "nUM" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgibdown1" @@ -23473,82 +23406,119 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) +"nVq" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms/south) "nVP" = ( /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) -"nVS" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"nVX" = ( +/obj/item/clipboard, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"nWf" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 2 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/vanyard) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) +"nWj" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"nWs" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "nWX" = ( /obj/structure/bed/roller, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"nXk" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/gen/bball) -"nXw" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/inflatable/popped, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"nYk" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/item/ammo_magazine/revolver/spearhead{ +"nXe" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/slugs{ pixel_x = 6; pixel_y = -4 }, +/obj/item/device/lightreplacer, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/disposals) +"nYs" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/vanyard) +"nYv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"nYA" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/nearlz1) +"nYN" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/res) +"nYX" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"nYG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 }, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/condiment/enzyme, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/outpost/canteen/bar) -"nZl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/toolbox/emergency, -/obj/item/device/radio, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/north_lz_caves) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/tcomms) +"nZA" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/security) +"nZJ" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) "nZR" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/research_decks) -"oac" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/orange_cover, +"oaf" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"oar" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"oag" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"oah" = ( +"oaz" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/saltshaker, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"oau" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"oaw" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/platform/east/scrub) +/obj/item/storage/box/donkpockets, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "oaV" = ( /obj/effect/decal/cleanable/blood{ desc = "Watch your step."; @@ -23556,9 +23526,70 @@ }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"oce" = ( +"obv" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"obz" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/foyer) +"obD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"obO" = ( +/obj/structure/machinery/blackbox_recorder, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"obU" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"oca" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/nearlz1) +"oci" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"ocl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/research_decks/security) +/area/strata/ag/interior/outpost/gen/bball) +"ocs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) "ocw" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -23571,39 +23602,31 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/marsh) -"ocJ" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/turf/open/floor/strata/purp1, -/area/strata/ug/interior/outpost/jung/dorms/admin4) "odi" = ( /obj/effect/decal/cleanable/blood/gibs/core, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"odC" = ( -/obj/structure/platform/strata/metal{ - dir = 1 +"odq" = ( +/obj/item/stack/rods, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 }, -/turf/open/floor/strata/red3, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) "odJ" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outpost/engi/drome) -"odK" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) -"oel" = ( -/obj/structure/platform/strata/metal{ - dir = 1 +"odN" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"odX" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/nearlz1) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "oeH" = ( /obj/structure/surface/table/reinforced/prison, /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, @@ -23615,6 +23638,10 @@ }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/tcomms/tcomms_deck) +"oeM" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/prison/floor_plate, +/area/strata/ag/interior/dorms) "oeO" = ( /turf/open/gm/coast/beachcorner/north_west, /area/strata/ug/interior/jungle/deep/east_carp) @@ -23622,83 +23649,91 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/landingzone_checkpoint) -"off" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"ofA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"ogd" = ( +"ofm" = ( /obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 + dir = 1 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) -"ogf" = ( +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"ofs" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/bed/chair, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"oge" = ( /obj/structure/bed/chair{ - dir = 1 + dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"ogk" = ( -/obj/structure/machinery/shower{ +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"ogO" = ( +/obj/structure/platform_decoration/strata/metal{ dir = 8 }, -/obj/structure/window/reinforced/tinted{ - dir = 1 +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"oho" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/door/window/eastright{ - dir = 8 +/obj/structure/closet/crate/radiation, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"ohx" = ( +/obj/structure/bed/stool, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"ogp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"ogs" = ( /turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"ogD" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"ogT" = ( -/obj/structure/machinery/light/small{ +/area/strata/ag/interior/outpost/admin) +"ohI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"ohJ" = ( -/obj/structure/platform/strata/metal{ +/obj/structure/platform_decoration/strata/metal{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"oiu" = ( +/area/strata/ag/interior/outpost/engi/drome) +"ohL" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/utensil/pfork, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/item/tool/pen/blue, +/obj/item/storage/box/ids, +/obj/item/paper_bin, +/obj/structure/barricade/handrail/strata, +/obj/item/device/flashlight/lamp, +/obj/item/storage/pill_bottle/inaprovaline/skillless, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"ohT" = ( +/obj/structure/inflatable/popped/door, +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"oih" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/item/stack/medical/advanced/bruise_pack, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"oiN" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"oiz" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) "oiV" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata/metal{ @@ -23709,56 +23744,45 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) -"oja" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/research_decks) -"ojF" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/bar) -"okc" = ( -/obj/structure/morgue, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"oke" = ( -/obj/structure/tunnel/maint_tunnel, +"oiY" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/coatrack, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"okh" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"oje" = ( +/obj/structure/platform/strata/metal{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/administration) -"oki" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"oji" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) -"okr" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/suit/storage/hazardvest, -/obj/item/clothing/head/hardhat/white, -/obj/item/clothing/head/hardhat/white, -/obj/item/clothing/head/hardhat/white, -/obj/structure/machinery/camera/autoname{ +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"ojm" = ( +/obj/structure/bed/chair{ dir = 8 }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"ojv" = ( +/obj/structure/machinery/photocopier, /turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"oky" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) "okE" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/shed_five_caves) +"okJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/item/storage/pill_bottle/antitox/skillless, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) "okK" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/med2) @@ -23767,72 +23791,54 @@ icon_state = "upp20" }, /area/strata/ag/exterior/marsh/crash) -"okQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/meat{ - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/outpost/canteen/bar) -"okW" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" +"okN" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/obj/structure/platform/strata/metal{ +/obj/structure/closet/secure_closet/personal, +/obj/item/lightstick, +/obj/item/lightstick, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"oln" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/platform/east/scrub) -"ola" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"olg" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"olB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) +"olU" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/gen/bball) +"omi" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"olF" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement15, -/area/strata/ug/interior/jungle/platform/east/scrub) -"olL" = ( -/obj/item/stool, -/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) -"omc" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 8 +"omq" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/asphalt/cement/cement2, +/area/strata/ug/interior/jungle/deep/structures/res) +"onf" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/landingzone_2) -"omF" = ( -/obj/item/reagent_container/food/snacks/donkpocket, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) -"omZ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/area/strata/ag/interior/outpost/admin) +"onl" = ( +/obj/structure/inflatable/door, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"onp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) "onq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/ice/layer1, @@ -23840,31 +23846,23 @@ "onr" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) -"onA" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/doctor, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"oom" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 +"oox" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"ooI" = ( -/obj/structure/machinery/door/airlock/prison{ - dir = 1; - name = "Reinforced Airlock" +/obj/structure/window/reinforced/tinted{ + dir = 1 }, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"ooQ" = ( +/obj/structure/window/framed/strata, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"ooV" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/interior/outpost/engi) +"opc" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/turf/open/floor/strata/white_cyan3/east, +/area/strata/ag/interior/outpost/med) "opg" = ( /obj/structure/machinery/power/terminal{ dir = 4 @@ -23872,65 +23870,92 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt/cement, /area/strata/ag/exterior/vanyard) -"opG" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 +"oph" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) +"opp" = ( +/obj/item/explosive/grenade/high_explosive/upp, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"opq" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/closet/bodybag/tarp, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"opu" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"opL" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"opI" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"opN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) -"opK" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"opW" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) "oqc" = ( /turf/open/gm/coast/beachcorner/north_west, /area/strata/ug/interior/jungle/deep/east_dorms) -"oqm" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"oqs" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"oqk" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/asphalt/cement/cement15, -/area/strata/ag/exterior/marsh) +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/exterior/jungle/deep/carplake_center) +"oqn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/station_alert{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"oqG" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) "oqJ" = ( /obj/structure/inflatable/popped/door, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/exterior/research_decks) +"oqN" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) "oqQ" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh/center) @@ -23938,13 +23963,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"ork" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) -"ort" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) "orL" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, @@ -23954,394 +23972,336 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"osf" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"osh" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) "oso" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"osq" = ( -/obj/structure/curtain/open/medical, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"osv" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"osG" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, +/obj/item/fuel_cell, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/barricade/handrail/strata, /turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"osK" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"osN" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 +/area/strata/ag/interior/dorms/hive) +"otj" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" }, -/turf/open/floor/strata/red2, -/area/strata/ug/interior/jungle/deep/north_carp) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/nearlz1) "otl" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"otI" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"ouz" = ( +"otp" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 + dir = 4 }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"otZ" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) +/area/strata/ug/interior/jungle/platform/east/scrub) +"ouj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"ouA" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "ouB" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"ouC" = ( -/obj/item/clipboard, -/obj/item/clipboard, -/obj/structure/surface/rack, -/obj/item/storage/box/cups, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"ouI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"ouM" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "ouO" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/north_lz_caves) -"ouQ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"ouY" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"ovk" = ( -/obj/structure/bookcase, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"ovl" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) -"ovG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"owd" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"owf" = ( -/obj/structure/barricade/handrail/strata, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/stack/rods, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"owi" = ( -/obj/structure/machinery/washing_machine, -/obj/effect/decal/cleanable/blood, +/area/strata/ag/interior/outpost/med) +"ovd" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/plating, +/area/strata/ag/exterior/marsh/center) +"ovg" = ( +/obj/structure/window/reinforced/tinted, +/obj/item/device/flashlight/lamp, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) -"owy" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_sn_full_cap" +/area/strata/ag/interior/administration) +"ovD" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"oxe" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/turf/open/floor/strata/multi_tiles/southwest, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) -"owI" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"oxj" = ( +/obj/structure/noticeboard{ + pixel_y = 32 }, -/obj/effect/landmark/corpsespawner/russian, -/obj/structure/bed/roller, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"owP" = ( -/obj/structure/pipes/vents/pump{ +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"oxw" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/gen/bball) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) "oxE" = ( /obj/structure/surface/rack, /obj/item/storage/pill_bottle/bicaridine, /turf/open/floor/strata, /area/strata/ag/interior/mountain) -"oxN" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +"oxI" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/item/dogtag, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/gen/bball) +"oxW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/inflatable/popped, /turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"oxU" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, +/area/strata/ag/interior/outpost/gen/foyer) +"oyb" = ( +/obj/effect/decal/cleanable/blood, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/admin) +"oyg" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"oyj" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) "oyy" = ( /obj/structure/bookcase{ icon_state = "book-5" }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med1) -"oyE" = ( -/turf/open/asphalt/cement/cement14, -/area/strata/ag/exterior/research_decks) -"oyP" = ( -/obj/structure/closet/bombcloset, -/obj/item/clothing/suit/armor/bulletproof, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"oyT" = ( -/obj/structure/platform_decoration/strata/metal, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"ozR" = ( -/obj/structure/filingcabinet, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"oAy" = ( -/obj/structure/reagent_dispensers/beerkeg, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"oAI" = ( -/obj/item/stool, -/turf/open/floor/strata/floor3, +"oyQ" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/curtain/open/shower, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/personal_storage) +"ozk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/monkeyburger, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"ozE" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + req_one_access = null + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) +"oAr" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/east_carp) +"oAO" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "oAQ" = ( /obj/structure/machinery/light/small, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"oBf" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 1; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"oBy" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"oCA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"oCj" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"oCL" = ( +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"oCC" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/engi/drome) -"oCY" = ( -/obj/structure/dropship_equipment/sentry_holder, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"oDi" = ( -/obj/structure/machinery/autolathe/full, -/obj/structure/machinery/camera/autoname{ - dir = 4 +/turf/open/floor/strata/white_cyan4/north, +/area/strata/ag/interior/outpost/med) +"oCM" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"oDs" = ( -/obj/structure/bed/chair/office/light{ +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"oDb" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/research_decks/security) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"oDk" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/minehead/ruins) "oDw" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_engi) -"oDI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"oDx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"oDJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/vodka, -/obj/item/reagent_container/food/condiment/peppermill, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) "oDL" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 1 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/south_dorms) -"oEc" = ( -/obj/item/clipboard, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/south_dorms) +"oDT" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"oEa" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"oEq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 4 }, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/barricade/handrail/strata, /turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"oEv" = ( +/area/strata/ag/interior/outpost/admin) +"oEV" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, /turf/open/floor/strata/floor3, -/area/strata/ag/exterior/paths/cabin_area) -"oEB" = ( +/area/strata/ag/interior/outpost/engi) +"oFm" = ( /obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) -"oET" = ( -/obj/item/ammo_magazine/revolver/spearhead, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/paths/southresearch) -"oFI" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/platform/strata/metal{ +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"oFn" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/platform/east/scrub) -"oFL" = ( -/obj/item/stack/rods, -/obj/structure/inflatable/door, -/turf/open/floor/strata/multi_tiles/southwest, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/gen/bball) -"oGt" = ( -/obj/structure/machinery/space_heater, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = 3; - pixel_y = 14 +"oFI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"oGy" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"oHr" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"oHu" = ( -/obj/structure/bed{ - icon_state = "abed" +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) +"oGg" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"oGs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"oGx" = ( +/obj/structure/surface/rack, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/head/hardhat/white, +/obj/item/clothing/head/hardhat/white, +/obj/item/clothing/head/hardhat/white, +/obj/structure/machinery/camera/autoname{ dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"oIF" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/item/stack/medical/advanced/bruise_pack, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"oGM" = ( +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) +"oHO" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"oHS" = ( +/obj/structure/morgue, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"oIg" = ( +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/med) +"oIK" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"oIR" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) "oIU" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/west_engi) -"oJb" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/prison/floor_plate, -/area/strata/ag/interior/dorms) -"oJQ" = ( -/obj/structure/toilet{ +"oIZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) +"oJe" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/south) +"oJq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 8; + icon_state = "commb" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"oKh" = ( -/obj/structure/bed/nest, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "oKl" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, @@ -24349,36 +24309,25 @@ "oKo" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/engi) -"oKs" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/item/stack/rods, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"oKE" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/minehead/ruins) +"oKD" = ( +/obj/structure/prop/turbine_extras/left, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"oKN" = ( +/obj/structure/largecrate/random, +/obj/item/trash/pistachios, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "oKP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/reagentgrinder, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"oKW" = ( -/obj/structure/inflatable/popped/door, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"oLm" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/south) +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) +"oLg" = ( +/obj/item/dogtag, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "oLv" = ( /obj/effect/decal/cleanable/blood{ dir = 4; @@ -24386,40 +24335,70 @@ }, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/dorms_quad) -"oLB" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +"oMb" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"oLM" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +/area/strata/ag/interior/outpost/engi/drome) +"oMs" = ( +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/obj/structure/filingcabinet, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"oME" = ( -/obj/item/device/motiondetector, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"oMF" = ( -/obj/structure/machinery/light/small, -/obj/structure/tunnel/maint_tunnel, -/turf/open/floor/strata/multi_tiles/southwest, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"oNO" = ( -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"oOt" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"oOz" = ( -/obj/structure/bed/chair{ - dir = 8 +"oNu" = ( +/obj/structure/barricade/handrail/wire{ + layer = 3.5 }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"oOx" = ( +/obj/structure/bed/nest, +/obj/item/explosive/grenade/incendiary{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"oOD" = ( +/obj/structure/machinery/light/small, /turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"oOF" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/research_decks) +"oOQ" = ( +/obj/structure/surface/rack, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"oPj" = ( +/obj/item/device/megaphone, +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"oPm" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/cyan1/east, /area/strata/ug/interior/outpost/jung/dorms/med1) "oPz" = ( /obj/effect/decal/strata_decals/catwalk/prison, @@ -24429,55 +24408,48 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"oPD" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"oPO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) "oPQ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) -"oPZ" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/asphalt/cement/cement14, -/area/strata/ag/exterior/marsh) +"oPU" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "oQv" = ( /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh/crash) -"oQM" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) -"oRH" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/canteen) -"oRK" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"oSd" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"oSI" = ( -/turf/open/floor/strata/floor3, +"oQC" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"oQO" = ( +/turf/open/floor/strata/white_cyan3/north, /area/strata/ag/interior/outpost/med) -"oSM" = ( -/obj/structure/largecrate/random/case/double, +"oRk" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"oSa" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"oSg" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "oSP" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -24491,44 +24463,28 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/admin) -"oTy" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"oTT" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"oUy" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - dir = 2; - name = "Medical Airlock" +"oTB" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"oUk" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"oUK" = ( -/obj/item/stool, -/turf/open/floor/strata/red1, +/turf/open/floor/strata/white_cyan2/west, /area/strata/ug/interior/jungle/deep/structures/res) -"oUM" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"oUW" = ( -/obj/item/tool/mop, -/obj/structure/janitorialcart, +"oVg" = ( +/obj/item/tool/crowbar/red, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"oVm" = ( +/obj/structure/machinery/power/apc/no_power/west, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/area/strata/ag/exterior/vanyard) +"oVI" = ( +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "oVR" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -24537,32 +24493,13 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"oVT" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds2{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/landingzone_2) -"oWf" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"oWg" = ( -/turf/open/asphalt/cement/cement9, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"oWl" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"oWq" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) +"oVV" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"oWI" = ( +/turf/open/floor/prison/floor_plate, +/area/strata/ug/interior/jungle/deep/east_dorms) "oWQ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -24570,90 +24507,72 @@ /obj/item/stack/rods, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"oWT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ +"oWS" = ( +/obj/structure/machinery/light/small{ dir = 1; - name = "\improper Airlock" + pixel_y = 20 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "oWU" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/admin2) +"oXg" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "oXi" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"oXk" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" - }, +/obj/structure/machinery/vending/cigarette/colony, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"oXo" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"oYC" = ( /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) -"oXJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/admin) -"oYN" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/engi) -"oYO" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/white_cyan3/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"oYL" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) -"oYQ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/effect/spawner/random/toolbox{ - pixel_y = 12 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"oZp" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/paths/north_outpost) -"oZv" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/admin) +"oZa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) "oZD" = ( /obj/item/lightstick, /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"oZR" = ( -/obj/structure/largecrate/random, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"oZU" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/item/dogtag, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"oZS" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"pav" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement2, -/area/strata/ag/interior/landingzone_1) +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"paq" = ( +/obj/structure/machinery/sensortower{ + pixel_x = -8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/platform/east/scrub) "pax" = ( /obj/structure/largecrate/hunter_games_medical, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"paQ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, +"paL" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"paU" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/corpsespawner/russian, +/obj/item/ammo_magazine/revolver/upp, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "paY" = ( @@ -24661,13 +24580,6 @@ /obj/structure/flora/grass/tallgrass/jungle/corner, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"pbs" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) "pbF" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -24675,51 +24587,42 @@ /obj/structure/cryofeed, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"pcy" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/item/reagent_container/food/drinks/flask, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/obj/item/reagent_container/food/drinks/milk, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"pdt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"pdv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, -/turf/open/auto_turf/strata_grass/layer0_mud, -/area/strata/ug/interior/jungle/deep/tearlake) -"pdG" = ( -/obj/structure/bedsheetbin, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"ped" = ( -/obj/item/weapon/gun/pistol/t73, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, +"pbR" = ( +/obj/structure/bed/chair, /turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"pef" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/bball) -"pek" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 +"pcc" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/med) -"pen" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/coffee, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"pce" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"pcC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"pdv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/auto_turf/strata_grass/layer0_mud, +/area/strata/ug/interior/jungle/deep/tearlake) +"pdx" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/admin) +"pdB" = ( +/obj/structure/largecrate/random/secure, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"peh" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "pex" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" @@ -24727,117 +24630,85 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_carp) -"peD" = ( -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/item/device/encryptionkey/dutch, -/obj/item/dogtag, +"peE" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"pfc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 +/area/strata/ug/interior/jungle/deep/structures/engi) +"pfl" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/landingzone_2) "pfz" = ( /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/south_engi) +"pfI" = ( +/obj/structure/machinery/space_heater, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"pfM" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"pfS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"pfW" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) "pge" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 4 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"pgK" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"phd" = ( -/obj/item/stack/rods, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata/white_cyan2/west, +"pgm" = ( +/obj/item/stack/sandbags, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/bar) -"phg" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"phr" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"phQ" = ( -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/structure/surface/rack, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"phV" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"pib" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"pif" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan3/east, -/area/strata/ag/interior/outpost/med) -"pih" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 +"pgU" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"pik" = ( -/obj/structure/bed/chair{ +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"phh" = ( +/obj/structure/platform/strata/metal{ dir = 1 }, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"piw" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/foyer) +"phN" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras, -/obj/structure/machinery/light/small{ +/obj/structure/machinery/computer/communications{ dir = 1; - pixel_y = 20 + icon_state = "commb" }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"phX" = ( +/obj/item/reagent_container/food/snacks/carpmeat, +/obj/structure/closet/secure_closet/security/soro, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) "piD" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/reagent_container/food/snacks/cheesecakeslice, /obj/effect/landmark/crap_item, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"piJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/decal/warning_stripes, -/obj/structure/holohoop{ - dir = 8; - id = "basketball"; - side = "right" - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) "piO" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -24852,23 +24723,12 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"piS" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) "piY" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/exterior/jungle/deep/carplake_center) -"pjb" = ( -/obj/structure/closet/bodybag/tarp, -/obj/structure/closet/bodybag/tarp, -/obj/structure/closet/bodybag/tarp, -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) +"pja" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/med) "pje" = ( /obj/structure/cryofeed/right, /obj/structure/platform/strata/metal, @@ -24877,101 +24737,152 @@ }, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"pjR" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) -"pka" = ( -/obj/structure/machinery/centrifuge, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"pkC" = ( -/obj/structure/machinery/light/small{ +"pjp" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"pjV" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"pke" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"pkn" = ( +/obj/structure/closet/coffin, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"pkD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/fancy/cigarettes/lady_finger, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "pkO" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/disposals) -"pkV" = ( +"pkP" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/gen/bball) +"pkT" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"plD" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"plN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"pme" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"pmK" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"pmY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) +"pnc" = ( +/turf/open/floor/strata/multi_tiles, +/area/strata/ug/interior/jungle/platform/east/scrub) +"pnB" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; - dir = 8; icon_state = "p_stair_sn_full_cap" }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"pkZ" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"pli" = ( -/obj/structure/fence, -/turf/open/asphalt/cement/cement15, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"plD" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/south) -"plM" = ( -/obj/structure/bed/nest, -/obj/effect/landmark/corpsespawner/miner, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"plR" = ( +/area/strata/ag/interior/dorms/flight_control) +"pom" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"poW" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigar, /obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) -"pmz" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/barman_recipes, -/obj/item/book/manual/chef_recipes, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"pmP" = ( -/obj/structure/inflatable/door, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"pov" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" + dir = 1; + pixel_y = 20 }, /turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"poR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/area/strata/ag/interior/landingzone_checkpoint) +"poX" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 }, /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"ppd" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/area/strata/ag/interior/research_decks/security) +"ppq" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" + }, +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) +"ppB" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"ppO" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"ppE" = ( -/obj/structure/closet/secure_closet/chemical{ - req_access = null +/area/strata/ag/interior/administration) +"pqg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" }, -/obj/effect/decal/cleanable/blood/oil, -/obj/item/storage/pill_bottle/alkysine, -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) +"pqj" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"pql" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "pqy" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -24980,21 +24891,6 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"pqz" = ( -/obj/structure/machinery/door/airlock/prison{ - dir = 1; - name = "Reinforced Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"pqB" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"pqD" = ( -/obj/structure/closet/bodybag, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) "pqE" = ( /obj/structure/cargo_container/wy/right{ health = 5000; @@ -25012,52 +24908,10 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"pqI" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "pri" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"prk" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"prp" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds2{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/landingzone_2) -"prH" = ( -/obj/structure/barricade/wooden{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/bar) -"prY" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/nearlz1) -"psh" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"psi" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/south) "psl" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, @@ -25066,7 +24920,23 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"psv" = ( +"psp" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/administration) +"psI" = ( +/obj/structure/largecrate/random, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"psS" = ( +/obj/structure/surface/rack, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"psT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/administration) "psV" = ( @@ -25078,113 +24948,92 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"ptz" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) +"pti" = ( +/obj/effect/decal/cleanable/ash, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "ptT" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms/hive) -"ptZ" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) -"pug" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal, -/obj/item/lightstick, -/obj/item/lightstick, -/obj/effect/spawner/random/tool, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"puL" = ( -/obj/structure/machinery/washing_machine, -/obj/item/facepaint/skull, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"pvh" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) "pvA" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"pvC" = ( -/obj/structure/machinery/photocopier, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"pvE" = ( +"pvI" = ( /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"pwa" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/platform/east/scrub) -"pwl" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, +/area/strata/ag/interior/outpost/med) +"pvP" = ( /obj/structure/machinery/light/small{ - dir = 4 + dir = 1 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"pwI" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/structure/machinery/camera/autoname{ +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"pvT" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"pwR" = ( -/obj/structure/machinery/gibber, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) "pwW" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"pxa" = ( -/obj/structure/closet/bombcloset, +"pxc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"pxg" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"pxi" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/orbital_cannon_manual, +/obj/item/book/manual/research_and_development, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"pxD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clipboard, /obj/structure/machinery/light/small{ - dir = 4 + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"pxm" = ( -/obj/effect/spawner/random/supply_kit, -/obj/structure/surface/rack{ - layer = 2.5 - }, -/obj/structure/barricade/handrail/strata{ +"pxO" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"pxo" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"pyn" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"pya" = ( -/turf/open/floor/almayer/test_floor5, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"pyt" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"pyw" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"pyy" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"pyR" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/explosive_mines, +/turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) -"pyx" = ( -/obj/item/stack/snow, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/paths/north_outpost) "pzb" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -25192,65 +25041,105 @@ }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"pzX" = ( -/obj/structure/machinery/door/airlock/prison{ - name = "Reinforced Airlock" +"pzy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/aspen, +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"pzZ" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) "pAc" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior) -"pBw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/pizza, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"pBM" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, +"pAl" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"pAt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/carrotfries, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"pAy" = ( +/obj/structure/closet/crate/science, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) -"pBN" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"pCe" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"pAW" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"pCO" = ( -/obj/structure/machinery/light/small, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"pCP" = ( -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/landingzone_1) -"pDo" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; +/area/strata/ag/interior/outpost/canteen) +"pBj" = ( +/obj/item/tool/pen/blue, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) +"pBG" = ( +/obj/structure/flora/bush/ausbushes/ppflowers, +/obj/structure/bed/medevac_stretcher, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/exterior/jungle/deep/carplake_center) +"pBH" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"pBO" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/plating, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"pBS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"pCz" = ( +/obj/structure/sink{ dir = 8; - icon_state = "p_stair_full" + pixel_x = -11 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen) +/obj/structure/mirror{ + pixel_x = -29 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"pCI" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/engi) +"pDf" = ( +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"pDo" = ( +/obj/structure/lz_sign/sorokyne_sign/interior, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) "pDz" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_3"; opacity = 0 }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"pDC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/landmark/static_comms/net_two, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/tcomms/tcomms_deck) +"pDR" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"pDT" = ( +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) "pDY" = ( /obj/structure/platform_decoration/strata/metal{ dir = 1 @@ -25261,64 +25150,84 @@ }, /turf/open/floor/greengrid, /area/strata/ag/interior/tcomms) -"pEl" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"pEf" = ( +/obj/structure/closet/basketball, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"pEh" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) "pEm" = ( /obj/structure/barricade/wooden{ dir = 1 }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"pEI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/radio, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) "pEM" = ( /obj/structure/barricade/wooden, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"pEP" = ( -/obj/structure/sink{ +"pFd" = ( +/obj/structure/machinery/light/small{ dir = 1; - pixel_y = -10 + pixel_y = 20 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"pFt" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/cyan1/east, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"pFV" = ( -/obj/structure/machinery/shower{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, -/obj/structure/window/reinforced/tinted{ +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"pFm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/window/reinforced/tinted{ - dir = 8 +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"pFy" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/exterior/paths/cabin_area) +"pFT" = ( +/obj/item/stack/catwalk, +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"pFW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/obj/structure/machinery/door/window/eastright{ - dir = 1 +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"pFZ" = ( +/obj/structure/toilet{ + dir = 4 }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec2) +/area/strata/ug/interior/outpost/jung/dorms/med1) +"pGi" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/item/storage/fancy/vials, +/turf/open/floor/strata/cyan1/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"pGm" = ( +/obj/structure/surface/rack, +/obj/item/storage/belt/utility/full, +/obj/item/tank/anesthetic, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "pGt" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_3"; opacity = 0 }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"pGw" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) "pGy" = ( /obj/item/storage/toolbox/syndicate, /obj/structure/surface/rack, @@ -25327,95 +25236,73 @@ /obj/item/stack/cable_coil/blue, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"pGM" = ( -/obj/structure/window/reinforced/tinted, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light/small{ - dir = 8 +"pGE" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/admin) +"pGK" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"pGL" = ( +/obj/item/storage/fancy/cigarettes/lady_finger, /obj/structure/surface/table/reinforced/prison, -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, /turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) -"pGY" = ( -/obj/structure/barricade/handrail/strata, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/deep/minehead) -"pHr" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/purp1, -/area/strata/ug/interior/jungle/deep/structures/engi) -"pHz" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/foyer) +"pGO" = ( +/obj/structure/surface/rack, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"pHI" = ( +/obj/item/explosive/grenade/phosphorus, +/obj/structure/surface/rack, +/obj/item/folder/red, +/obj/item/storage/toolbox/emergency, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) "pHR" = ( /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/tearlake) +"pHT" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "pIa" = ( /turf/closed/wall/resin/strata/on_tiles, /area/strata/ag/interior/outpost/gen/bball/nest) -"pIh" = ( -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"pIp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"pIr" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = -28 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/obj/item/reagent_container/spray/cleaner, +/obj/structure/surface/rack, +/obj/item/storage/box/flashbangs, +/obj/item/storage/box/flashbangs, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/bar) "pIy" = ( /obj/structure/machinery/light/small, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"pIH" = ( -/obj/structure/flora/bush/ausbushes/grassybush, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/east_dorms) -"pIZ" = ( -/obj/item/stack/sheet/plasteel/medium_stack, -/obj/item/stack/sheet/plasteel/medium_stack, -/obj/item/stack/sheet/metal/medium_stack, -/obj/item/stack/sheet/metal/medium_stack, -/obj/structure/surface/rack, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"pJg" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 - }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/tearlake) -"pJo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/ids, +"pIU" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) -"pJw" = ( -/obj/effect/decal/cleanable/vomit, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) +"pJm" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "pJz" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -25425,10 +25312,21 @@ "pJA" = ( /turf/open/gm/coast/west, /area/strata/ug/interior/jungle/deep/east_dorms) -"pKc" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/foyer) +"pJT" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/holosign/surgery, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 8; + name = "\improper Airlock" + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) "pKq" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -25436,49 +25334,60 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"pKD" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) -"pKF" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"pLn" = ( +/obj/structure/bed/chair{ + dir = 4 }, /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 + dir = 6 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"pKS" = ( -/obj/structure/bed/chair{ +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"pLA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/gm/dirt, +/area/strata/ug/interior/jungle/deep/south_engi) +"pLR" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"pMg" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"pMh" = ( +/obj/item/clothing/glasses/thermal/syndi, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/landingzone_checkpoint) +"pMs" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/machinery/light/small{ dir = 1 }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"pMM" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/research_decks/security) +"pMP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/stamp, /obj/structure/machinery/light/small{ - dir = 4 + dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"pKV" = ( -/obj/item/storage/secure/briefcase, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"pNC" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi/drome) -"pLr" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"pLA" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/gm/dirt, -/area/strata/ug/interior/jungle/deep/south_engi) -"pNm" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "pNL" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -25486,43 +25395,32 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"pNQ" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) +"pNM" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/nearlz1) "pNT" = ( /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"pOh" = ( -/obj/structure/machinery/light/small, -/obj/structure/bed/sofa/vert/grey/bot, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"pOp" = ( -/obj/structure/prop/ice_colony/surveying_device, +"pNU" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"pOm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/waterbottle, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) -"pOx" = ( -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"pOG" = ( -/obj/structure/closet/crate/freezer/rations, +/area/strata/ag/interior/outpost/gen/bball/nest) +"pPd" = ( /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"pOL" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"pOQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18" - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/restricted/devroom) +/area/strata/ag/exterior/research_decks) "pPi" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer0, @@ -25531,90 +25429,58 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) -"pPs" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"pPG" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/bcircuit, -/area/strata/ag/interior/dorms) -"pPI" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_full" +"pPp" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds2{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/landingzone_2) +"pQi" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"pPO" = ( -/obj/effect/decal/cleanable/greenglow, -/turf/open/floor/strata/white_cyan3, -/area/strata/ag/interior/outpost/med) -"pPR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/cyan3/east, -/area/strata/ag/interior/outpost/med) -"pQA" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/foyer) -"pQC" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) "pQH" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/platform/east/scrub) "pQP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"pRh" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/security) +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"pRb" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/inflatable/popped, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/nearlz2) "pRj" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/research_decks/security) -"pRl" = ( -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) "pRp" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/north_outpost) -"pRz" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/platform/east/scrub) -"pRC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ +"pRs" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"pRt" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "pSm" = ( /obj/structure/surface/rack{ layer = 2.5 @@ -25624,75 +25490,91 @@ /obj/structure/closet/bodybag/tarp, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) +"pSu" = ( +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 22 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) "pSw" = ( /turf/open/gm/coast/east, /area/strata/ug/interior/jungle/deep/east_carp) -"pTr" = ( -/obj/structure/window/framed/strata, +"pST" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"pTU" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" + }, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) -"pTP" = ( -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"pTR" = ( -/obj/structure/toilet{ - dir = 8 +/area/strata/ug/interior/jungle/platform/east/scrub) +"pUc" = ( +/obj/structure/filingcabinet{ + layer = 2.9 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"pUB" = ( +/obj/structure/bed{ + icon_state = "abed" }, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"pUa" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/engineering_guide, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"pUp" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"pUz" = ( -/obj/structure/bed/nest, -/obj/structure/platform/strata/metal{ - dir = 1 +/obj/structure/barricade/wooden{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"pUB" = ( -/obj/structure/bed{ - icon_state = "abed" +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"pUO" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"pVt" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"pVw" = ( +/obj/structure/inflatable/door, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/obj/structure/barricade/wooden{ - dir = 4 +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"pVD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"pVE" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"pVv" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"pVP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/obj/structure/surface/table/reinforced/prison, +/obj/structure/bed/chair{ + dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/medical/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) -"pWf" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"pVL" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 1; + id_tag = "bunker_or1"; + name = "\improper Operating Room 1" }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/med) "pWp" = ( /obj/structure/platform_decoration/strata{ dir = 8 @@ -25703,169 +25585,182 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"pWr" = ( -/obj/structure/bed/chair/office/light, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"pWL" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/administration) -"pWY" = ( -/obj/structure/bed/chair{ - dir = 8 - }, +"pWs" = ( +/obj/structure/largecrate/random, /turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"pXw" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/admin) -"pXN" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"pYb" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" +/area/strata/ag/interior/outpost/canteen) +"pWQ" = ( +/obj/structure/inflatable/door, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"pXh" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"pYt" = ( -/obj/structure/machinery/vending/cola, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"pXr" = ( /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) +/area/strata/ag/interior/outpost/canteen/bar) "pYM" = ( /obj/item/stack/sheet/wood, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"pYT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/blue3/west, -/area/strata/ag/interior/outpost/admin) -"pZb" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = -28 - }, -/obj/item/reagent_container/spray/cleaner, -/obj/structure/surface/rack, -/obj/item/storage/box/flashbangs, -/obj/item/storage/box/flashbangs, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/bar) "pZe" = ( /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"pZi" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) +"pZM" = ( +/obj/effect/decal/remains/xeno, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"pZO" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/landingzone_1) "pZS" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"pZY" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, +"qah" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/light/small{ - dir = 1 + dir = 8 }, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"qaq" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"qbb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "qbf" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/canteen/bar) -"qbw" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "qbA" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 5 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"qbN" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) +"qbD" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_ew_half_cap" + }, +/turf/open/floor/strata/floor3, +/area/strata/ug/interior/jungle/deep/minehead) +"qbE" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/fishfingers, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"qbI" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/red2, +/area/strata/ug/interior/jungle/deep/minehead) +"qbP" = ( +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/splint, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/engi/drome) "qbR" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"qcv" = ( -/obj/structure/bed/chair{ - dir = 8 +"qca" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"qcz" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/res) "qcB" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_carp) -"qcD" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"qcF" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) "qcO" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) +"qcR" = ( +/obj/structure/fence, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) "qcV" = ( /obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) -"qde" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen) +"qcX" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/reagent_container/food/drinks/flask, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/obj/item/reagent_container/food/drinks/milk, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) "qdq" = ( -/obj/structure/barricade/handrail/strata{ +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"qdJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/asphalt/cement/cement15, -/area/strata/ug/interior/jungle/platform/east/scrub) -"qdC" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/east_dorms) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"qdW" = ( +/obj/structure/machinery/door/airlock/prison{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) +"qem" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) "qeH" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) -"qeX" = ( -/obj/item/tool/crowbar, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/foyer) +"qff" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) "qfi" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, @@ -25874,301 +25769,249 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/crash) -"qfB" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "qfC" = ( /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"qfJ" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/item/storage/secure/briefcase, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/outpost/jung/dorms/sec2) "qfN" = ( /obj/structure/largecrate/random/secure, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"qhk" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 +"qfS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/enchiladas, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"qgj" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"qgs" = ( +/obj/structure/barricade/handrail/strata, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/deep/minehead) +"qhd" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/paths/dorms_quad) "qhp" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/landmark/corpsespawner/engineer, /turf/open/floor/greengrid, /area/strata/ag/interior/outpost/engi) -"qhz" = ( -/obj/item/storage/toolbox/electrical, -/obj/structure/surface/rack, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"qhD" = ( -/obj/item/clothing/glasses/thermal/syndi, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/landingzone_checkpoint) -"qhY" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"qiy" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"qjd" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ +"qhs" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"qjj" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"qkv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"qky" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"qkA" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"qhB" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"qkB" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ dir = 4 }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"qkH" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"qhY" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/landingzone_2) -"qlv" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"qlM" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/item/stack/medical/bruise_pack, +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"qig" = ( +/obj/structure/closet/secure_closet/personal, /obj/structure/machinery/light/small{ - dir = 4 + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"qmw" = ( -/obj/structure/sign/safety/storage, -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"qmD" = ( -/obj/structure/closet/wardrobe/suit, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" }, /turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"qmF" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"qmH" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"qmJ" = ( +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"qiA" = ( +/obj/structure/window/reinforced/tinted, /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) -"qmZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 8 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) +"qiG" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"qiQ" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/lightstick, +/obj/item/storage/box/lightstick, +/obj/item/storage/box/lightstick, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"qjr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/obj/item/tool/pen/blue, -/obj/item/storage/box/ids, -/obj/item/paper_bin, -/obj/structure/barricade/handrail/strata, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"qne" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"qjL" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"qjQ" = ( +/obj/structure/machinery/power/apc/no_power/north, +/obj/structure/closet/emcloset, +/turf/open/floor/strata, +/area/strata/ag/interior/tcomms) +"qkL" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/north_lz_caves) +"qkN" = ( +/obj/structure/machinery/computer/emails, +/obj/structure/surface/table/almayer, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"qkX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"qkZ" = ( /obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"qld" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"qlz" = ( +/obj/structure/desertdam/decals/road_stop, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"qlE" = ( +/obj/structure/machinery/door/airlock/prison{ + name = "Reinforced Airlock" }, -/turf/open/floor/strata/white_cyan1, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"qmw" = ( +/obj/structure/sign/safety/storage, +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"qnJ" = ( +/obj/item/storage/briefcase, +/turf/open/floor/strata/red1, /area/strata/ag/interior/dorms) -"qng" = ( +"qnP" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"qnp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/engi/drome) +"qoe" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/platform/strata/metal{ + dir = 8 }, -/obj/structure/machinery/power/apc/no_power/south, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"qnt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "qot" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"qoU" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 +"qoC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"qpf" = ( +/obj/structure/machinery/shower{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"qpi" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/structure/window/reinforced/tinted{ + dir = 1 }, -/obj/structure/barricade/handrail/strata{ +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/door/window/eastright{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"qpF" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/structure/surface/rack, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"qqb" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 1 }, /turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"qpq" = ( -/obj/structure/surface/rack, -/obj/item/paper_bin, -/obj/item/stack/sheet/glass, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"qpQ" = ( +/area/strata/ag/interior/outpost/security) +"qqw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) +"qqG" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/admin) -"qqr" = ( -/obj/structure/bed/chair{ dir = 4 }, -/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/power/apc/no_power/south, /turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"qqz" = ( -/obj/item/dogtag, -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"qqF" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/purp1, -/area/strata/ug/interior/jungle/deep/structures/engi) -"qrb" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/attachments, -/obj/item/storage/box/attachments, +/area/strata/ag/interior/dorms/canteen) +"qqL" = ( +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"qrm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"qrF" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement14, -/area/strata/ug/interior/jungle/platform/east/scrub) -"qsn" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - name = "Emergency NanoMed"; - pixel_x = 30 - }, /turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"qsU" = ( -/obj/item/stack/rods, -/obj/structure/pipes/standard/simple/hidden/cyan, +/area/strata/ag/interior/nearlz1) +"qrQ" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, /turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"qsX" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/strata{ - dir = 4 +"qsT" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"qtd" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/effect/decal/cleanable/ash, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"qtg" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) -"qtl" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"qtm" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/interior/plastic, +/area/strata/ag/interior/paths/cabin_area/central) +"qth" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/maint/canteen_e_1) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"qtj" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/exterior/paths/north_outpost) "qtn" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -26181,59 +26024,66 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"quJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"qtC" = ( +/obj/structure/bed/chair/dropship/passenger, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"quB" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"quG" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_sn_full_cap" }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"quR" = ( -/obj/structure/barricade/handrail/wire{ - layer = 3.5 +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"qvg" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"quX" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"qvn" = ( -/obj/structure/platform/strata/metal{ - dir = 8 +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/admin) +"qvx" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/turf/open/floor/strata/fake_wood, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) "qvy" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/crash) -"qwt" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +"qvI" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"qwJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/item/ammo_magazine/revolver/upp, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "qwM" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ag/interior/dorms/flight_control) -"qwX" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/engi) -"qxb" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) "qxi" = ( /obj/effect/decal/cleanable/blood/gibs/core, /mob/living/simple_animal/hostile/carp{ @@ -26246,15 +26096,10 @@ "qxr" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/interior/jungle/deep/tearlake) -"qxs" = ( -/obj/structure/curtain/open/shower, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"qxC" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/obj/structure/medical_supply_link, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +"qxB" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) "qxD" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -26263,183 +26108,207 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/mountain) -"qyv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"qzn" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"qxH" = ( +/obj/structure/bed/chair{ + dir = 1 }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"qzz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/bodybags, -/obj/structure/window/reinforced/tinted{ +/area/strata/ag/interior/dorms) +"qyJ" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/obj/structure/window/reinforced/tinted, -/obj/item/tool/stamp, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/obj/structure/barricade/handrail/strata{ +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) +"qyP" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) +"qyV" = ( +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/obj/item/device/flashlight/lamp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"qzF" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer, +/obj/structure/closet/secure_closet/personal, +/obj/item/lightstick, /turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) -"qzH" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"qzZ" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi/drome) -"qAa" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"qyZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"qAn" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) -"qAt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/area/strata/ag/interior/outpost/gen/foyer) +"qzG" = ( +/obj/structure/window/framed/strata, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/nearlz1) -"qAA" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/cigarettes/lady_finger, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/barricade/handrail/strata{ - dir = 8 +/area/strata/ag/interior/outpost/canteen/bar) +"qAf" = ( +/obj/structure/bed, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"qAl" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/item/device/flashlight/lamp, /turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"qAD" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"qBa" = ( -/obj/item/stack/catwalk, -/turf/open/floor/almayer/plate, /area/strata/ug/interior/jungle/deep/structures/res) "qBd" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/tearlake) -"qBy" = ( -/obj/structure/closet/secure_closet/security/soro, -/obj/item/reagent_container/food/snacks/carpmeat, +"qBq" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) +"qBM" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/t73, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"qBW" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"qBH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/structure/machinery/light/small{ - dir = 8 +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"qCe" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"qCj" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"qCk" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) -"qBS" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" +/area/strata/ag/interior/outpost/admin) +"qCy" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi) -"qBW" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_full" +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"qCZ" = ( +/obj/structure/bed{ + icon_state = "abed" }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/minehead) -"qCJ" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) +/obj/structure/machinery/light/small, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"qDf" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/nearlz1) "qDg" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"qDP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"qDl" = ( +/obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"qEv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/area/strata/ag/interior/outpost/engi) +"qDN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ dir = 4 }, -/obj/item/stool, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"qEy" = ( -/obj/item/fuel_cell, -/obj/structure/barricade/handrail/strata{ - dir = 8 +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"qDU" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"qFh" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"qDZ" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"qEi" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"qEz" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"qEE" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/nearlz1) -"qGh" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) +"qFn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/effect/landmark/xeno_hive_spawn, -/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) +"qFq" = ( +/obj/item/stack/rods, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"qFP" = ( +/obj/structure/machinery/vending/cigarette/colony, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"qHl" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/area/strata/ag/interior/dorms) +"qFQ" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/exterior/research_decks) +"qGQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/microwave, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"qGR" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"qGX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"qHh" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/east_dorms) +"qHn" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "qHo" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgibdown1" @@ -26447,120 +26316,121 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"qHC" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"qHR" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 +"qHw" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"qIH" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"qIR" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, +/obj/effect/decal/cleanable/blood, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/exterior/marsh/crash) +"qJe" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) -"qIn" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"qIp" = ( -/obj/structure/surface/rack, -/obj/item/inflatable/door, -/obj/item/inflatable/door, -/obj/item/inflatable/door, -/obj/item/tool/shovel/etool/folded, -/obj/item/tool/shovel/etool/folded, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms/south) -"qIy" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced/tinted{ +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/purp1, -/area/strata/ug/interior/outpost/jung/dorms/admin4) -"qIB" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"qII" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"qIK" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/closet/bodybag/tarp, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"qIO" = ( -/obj/item/poster, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"qJu" = ( /obj/structure/closet/secure_closet/security/soro, +/obj/item/reagent_container/food/snacks/carpmeat, /turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"qIP" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"qJd" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/landmark/corpsespawner/engineer, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"qJp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) +/area/strata/ug/interior/jungle/deep/structures/res) "qJC" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"qJF" = ( -/obj/structure/machinery/light/small{ +"qKx" = ( +/turf/open/asphalt/cement, +/area/strata/ag/exterior/vanyard) +"qKL" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/obj/item/reagent_container/spray/pepper, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"qKO" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"qKP" = ( +/obj/structure/bedsheetbin, +/obj/structure/machinery/camera/autoname{ dir = 8 }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"qKR" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/machinery/door/window/eastright, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"qLh" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"qJG" = ( -/turf/open/floor/strata/white_cyan4/east, -/area/strata/ag/interior/outpost/med) -"qJU" = ( -/turf/open/floor/prison/darkyellowfull2, +/area/strata/ug/interior/jungle/deep/structures/res) +"qLD" = ( +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi) -"qJX" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement/cement12, -/area/strata/ug/interior/jungle/platform/east/scrub) -"qKg" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib4" +"qMb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"qMe" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"qMi" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms) -"qKq" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/landingzone_2) -"qKx" = ( -/turf/open/asphalt/cement, -/area/strata/ag/exterior/vanyard) -"qKG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"qKW" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +/area/strata/ag/interior/outpost/engi) +"qMs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "qMF" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/strata, @@ -26571,129 +26441,175 @@ /obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"qMM" = ( -/obj/structure/bed/roller, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"qMW" = ( -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/admin4) +"qMZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/pizzabox/mushroom, +/obj/item/tool/kitchen/utensil/pspoon, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"qNg" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) "qNs" = ( -/obj/structure/machinery/colony_floodlight, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"qNv" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/admin3) "qOt" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"qPc" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ +"qOP" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"qOU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, -/obj/structure/prop/ice_colony/ground_wire{ +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"qOX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/canteen/bar) +"qPr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/east_carp) -"qPS" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin1) +/turf/open/floor/strata/blue3/west, +/area/strata/ag/interior/outpost/admin) +"qPw" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"qQc" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/outpost/med) +"qQj" = ( +/obj/item/stool, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) "qQq" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/body, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"qQX" = ( -/obj/structure/window/framed/strata/reinforced, +"qQM" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/reagentgrinder, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"qRd" = ( +/obj/structure/prop/dam/van, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/vanyard) +"qRm" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"qRt" = ( +/obj/structure/barricade/handrail/strata, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) -"qRc" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) +"qRD" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) -"qRk" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"qRu" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"qRL" = ( -/obj/item/stack/sheet/wood, -/obj/structure/closet/crate/internals, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "qRN" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/landingzone_2) -"qSb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"qSi" = ( -/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"qRO" = ( +/obj/structure/machinery/power/apc/no_power/east, /turf/open/floor/strata/floor3, /area/strata/ag/interior/nearlz1) -"qSl" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, +"qRU" = ( /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) +"qSj" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" + }, +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/paths/adminext) "qSo" = ( /turf/closed/shuttle/ert{ icon_state = "upp4" }, /area/strata/ag/exterior/marsh/crash) -"qSF" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" - }, -/obj/structure/machinery/light/small{ +"qSB" = ( +/obj/structure/inflatable, +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) -"qSJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/canteen) +/turf/open/floor/strata/orange_edge/east, +/area/strata/ag/exterior/research_decks) +"qSG" = ( +/obj/structure/largecrate/random, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"qSP" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) "qSQ" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/mirror{ + pixel_x = -29 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin1) "qTk" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/barricade/handrail/strata{ @@ -26705,6 +26621,12 @@ /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) +"qTl" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/gen/bball) "qTp" = ( /obj/structure/largecrate/random/barrel/yellow, /obj/structure/machinery/camera/autoname{ @@ -26712,17 +26634,19 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) +"qTC" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "qTD" = ( /obj/structure/sign/safety/storage, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/research_decks) -"qTE" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) "qTF" = ( /obj/structure/bed{ icon_state = "abed" @@ -26732,26 +26656,22 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) -"qUa" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"qTU" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"qUi" = ( -/obj/structure/bed/chair/comfy{ +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"qUl" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"qUn" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/administration) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"qUm" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) "qUB" = ( /obj/structure/bed/chair{ dir = 1 @@ -26762,47 +26682,71 @@ /obj/structure/flora/bush/ausbushes/lavendergrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"qVa" = ( +"qVv" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, +/obj/item/toy/deck, /turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) -"qVf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/obj/structure/barricade/handrail/strata{ - dir = 8 +"qVS" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"qVn" = ( -/obj/structure/sink{ +/area/strata/ag/interior/dorms) +"qWi" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"qWs" = ( +/obj/structure/prop/almayer/hangar_stencil, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"qWu" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/firealarm{ dir = 8; - pixel_x = -11 - }, -/obj/structure/mirror{ - pixel_x = -29 + pixel_x = -24 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/med1) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "qWD" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/restricted) -"qWY" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/landmark/corpsespawner/russian, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"qXA" = ( -/obj/structure/closet/firecloset/full, -/obj/effect/decal/cleanable/blood, -/obj/structure/barricade/wooden{ - dir = 8 +"qXb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"qXi" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"qXo" = ( +/obj/structure/inflatable/popped/door, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"qXv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/bar) +/obj/item/reagent_container/food/condiment/peppermill, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"qXE" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"qXK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "qXN" = ( /obj/structure/platform/strata/metal{ dir = 4 @@ -26810,26 +26754,15 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"qXS" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/tcomms) "qYm" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"qYo" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"qYz" = ( -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/med) +"qYE" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/jungle/deep/structures/engi) "qYF" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -26837,112 +26770,120 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) +"qYN" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/attachments, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"qYV" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "qYZ" = ( /obj/item/weapon/gun/rifle/type71/carbine, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"qZk" = ( -/obj/structure/bed, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"qZv" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"qZL" = ( -/obj/structure/machinery/door/airlock/prison{ - name = "Reinforced Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"qZO" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"qZZ" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"rai" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +"qZK" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) "ras" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"rat" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"rbd" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"rbh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"raB" = ( +/obj/structure/bedsheetbin, +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"raZ" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"rbd" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/tcomms) +"rbg" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "rbi" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"rbo" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" +"rbC" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/nearlz1) -"rbt" = ( -/turf/open/floor/strata/white_cyan3, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) +"rbM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "rbO" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"rbR" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"rcj" = ( -/obj/structure/barricade/handrail/strata{ +"rcm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/exterior/paths/cabin_area) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"rcw" = ( +/obj/item/clipboard, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"rcN" = ( +/obj/item/storage/briefcase, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"rcX" = ( +/obj/item/storage/box/ids, +/obj/structure/surface/rack, +/obj/item/device/radio, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "rdm" = ( /obj/structure/largecrate/random, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"rdC" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"rdF" = ( +/obj/item/device/t_scanner, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"rdI" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "reb" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -26953,24 +26894,6 @@ }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"ref" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"reh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"rej" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) "rel" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -26979,56 +26902,42 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) -"res" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"ret" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"reu" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"rfu" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"rfD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/food/snacks/flour, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"rfY" = ( +/obj/structure/bed/chair{ dir = 1 }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"rgC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"reD" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/bar) -"rfj" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"rfv" = ( -/obj/structure/platform/strata/metal{ +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"rfw" = ( -/obj/structure/bed, -/obj/structure/machinery/light/small, -/obj/item/bedsheet/medical, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) -"rge" = ( -/obj/structure/bed/chair/dropship/passenger, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) -"rgj" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/masks, -/obj/item/storage/box/masks, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"rgk" = ( -/obj/item/clipboard, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) "rgH" = ( /obj/structure/barricade/snow{ dir = 8 @@ -27036,40 +26945,29 @@ /obj/structure/blocker/invisible_wall, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/restricted) -"rgR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"rgT" = ( +"rhx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"ria" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"rip" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"riB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/stack/cable_coil/blue, -/obj/item/stack/cable_coil/blue, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"rhO" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen) +"rhW" = ( +/obj/structure/machinery/light/small, +/turf/open/asphalt/cement/cement15, +/area/strata/ug/interior/jungle/platform/east/scrub) +"rik" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/asphalt/cement/cement14, +/area/strata/ug/interior/jungle/deep/structures/res) +"rir" = ( +/obj/item/cell/high, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/med) "riM" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 @@ -27084,18 +26982,10 @@ /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) -"riQ" = ( -/obj/structure/prop/structure_lattice{ - density = 0; - desc = "This jukebox only takes quarters and you seem to be out of them at the moment."; - icon = 'icons/obj/structures/props/misc.dmi'; - icon_state = "jukebox"; - name = "Rockin Robin 2300 Jukebox"; - pixel_x = -5; - pixel_y = 16 - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) +"riO" = ( +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) "riY" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -27109,214 +26999,200 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"rjm" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/curtain/open/shower, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) "rjG" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/asphalt/cement, /area/strata/ag/exterior/tcomms/tcomms_deck) -"rky" = ( -/obj/structure/window/reinforced/tinted, -/obj/item/device/flashlight/lamp, -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"rkF" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +"rka" = ( +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"rkN" = ( -/obj/structure/bedsheetbin, -/obj/item/device/binoculars/range, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"rkV" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/engi) -"rlR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/engi) -"rlW" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 +/area/strata/ag/interior/outpost/canteen) +"rkv" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/door/window/eastright{ - dir = 8 +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"rkz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"rmi" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"rmU" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"rnl" = ( -/obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"rnA" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/area/strata/ag/interior/outpost/engi/drome) +"rkA" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"rkF" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"rkK" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"rld" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"rnN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) +"rlv" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"rlw" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"rlS" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"rmh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement2, +/area/strata/ag/interior/landingzone_1) +"rmr" = ( +/obj/structure/machinery/power/terminal{ + dir = 1 }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"rmB" = ( /obj/structure/barricade/handrail/strata{ dir = 8 }, -/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/marsh/river) +"rmK" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"rmP" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited, +/turf/closed/wall/strata_outpost, +/area/strata/ag/interior/outpost/gen/foyer) +"rni" = ( +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"roc" = ( -/obj/item/storage/belt/security, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) +/area/strata/ug/interior/jungle/deep/minehead) +"rns" = ( +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"rnR" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "rok" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) -"roz" = ( -/obj/item/storage/pill_bottle/bicaridine, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) -"roB" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) "roI" = ( /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"roQ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 8 +"rpJ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"roY" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) -"rps" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"rpG" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"rqy" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/res) +"rqi" = ( +/obj/structure/machinery/washing_machine, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"rqn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"rqI" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_full" }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"rqJ" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/landinglight/ds2/delaythree, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/landingzone_2) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) "rqL" = ( /obj/item/tool/wrench, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"rqQ" = ( -/obj/structure/lamarr, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) "rrj" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "pointybush_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"rrk" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +"rrq" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/med) +"rrO" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) "rrV" = ( /obj/structure/platform/strata{ dir = 1 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"rsb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ +"rrY" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"rsg" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) "rsm" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"rsJ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" +"rsB" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/platform/east/scrub) -"rti" = ( -/obj/structure/surface/rack, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"rtr" = ( -/obj/structure/machinery/light/small{ +/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/machinery/power/apc/no_power/west, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"rtA" = ( -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"rtG" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"rtU" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/east_engi) +"rtb" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/admin) "rtW" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/nearlz1) @@ -27325,95 +27201,83 @@ /obj/effect/landmark/static_comms/net_one, /turf/open/floor/greengrid, /area/strata/ag/interior/disposals) -"rup" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 +"rum" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"ruo" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"ruv" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "ruM" = ( /turf/open/gm/coast/beachcorner/south_east, /area/strata/ug/interior/jungle/deep/south_engi) -"ruS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"rvb" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"rvl" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) +"rvz" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "rvD" = ( /turf/open/gm/coast/beachcorner2/south_west, /area/strata/ug/interior/jungle/deep/south_engi) -"rvE" = ( -/obj/structure/closet/lasertag/blue, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"rwl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"rwL" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" +"rvU" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"rwR" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"rwe" = ( +/obj/structure/fence, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"rwx" = ( +/obj/structure/machinery/vending/snack, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) -"rwY" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"rxb" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"rxg" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ +"rwI" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/obj/item/tool/pen/blue, -/obj/item/storage/box/ids, -/obj/item/paper_bin, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"rxb" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"rxl" = ( /obj/structure/barricade/handrail/strata, -/obj/item/device/flashlight/lamp, -/obj/item/storage/pill_bottle/inaprovaline/skillless, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "rxp" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/admin3) -"rxs" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/east_dorms) -"rxK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) +"rxz" = ( +/obj/structure/window/framed/strata, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/administration) +"rxA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/landingzone_checkpoint) "rxL" = ( /obj/item/clothing/shoes/snow, /obj/structure/surface/rack, @@ -27434,130 +27298,151 @@ }, /turf/open/floor/greengrid, /area/strata/ag/interior/tcomms) +"rys" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/chawanmushi, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) "ryA" = ( /obj/structure/inflatable, /turf/open/floor/strata, /area/strata/ag/interior/mountain) -"ryC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"ryI" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/administration) -"ryJ" = ( +/turf/open/asphalt/cement/cement9, +/area/strata/ug/interior/jungle/platform/east/scrub) +"rzK" = ( /obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/med) +"rzN" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"rzR" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/item/storage/briefcase, +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) -"rAc" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "rAv" = ( /obj/structure/platform/strata{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"rAR" = ( -/obj/structure/closet/secure_closet/medical3{ - req_access = null +"rBG" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/explosive/grenade/custom/cleaner, -/obj/item/storage/pill_bottle/bicaridine/skillless, +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/platform/east/scrub) +"rBM" = ( +/obj/structure/flora/bush/ausbushes/grassybush, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"rBh" = ( -/obj/structure/platform/strata/metal{ +/area/strata/ug/interior/jungle/deep/east_dorms) +"rCn" = ( +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"rBl" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"rBA" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ +/obj/structure/closet/secure_closet/personal, +/obj/item/lightstick, +/obj/item/lightstick, +/obj/effect/spawner/random/tool, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"rCz" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 2 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"rBW" = ( -/obj/structure/bedsheetbin, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) -"rCF" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"rCI" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/canteen) +"rCU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, +/obj/structure/inflatable/popped/door, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"rDy" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"rDM" = ( /obj/structure/barricade/handrail/strata{ - dir = 4 + dir = 8 }, -/turf/open/asphalt/cement/cement9, -/area/strata/ug/interior/jungle/deep/minehead) +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement14, +/area/strata/ug/interior/jungle/platform/east/scrub) "rEr" = ( /obj/structure/platform/strata/metal{ dir = 1 }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"rEG" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"rEL" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"rET" = ( -/obj/item/stack/rods, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"rFe" = ( -/obj/structure/bed/chair/office/light, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"rFg" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 8 +"rEx" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) +"rFi" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"rFl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) "rFn" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_2"; opacity = 0 }, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"rFw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/rollingpin, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/canteen/bar) +"rFF" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"rFI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"rFQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/condiment/enzyme, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/canteen/bar) +"rFW" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "rFZ" = ( /obj/effect/decal/cleanable/blood/gibs/limb, /obj/structure/flora/grass/tallgrass/jungle/corner{ @@ -27565,20 +27450,31 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/hotsprings) -"rGa" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) "rGp" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/center) -"rHE" = ( -/obj/structure/platform/strata/metal{ - dir = 1 +"rGB" = ( +/obj/item/storage/box/donkpockets, +/obj/item/storage/box/donkpockets, +/obj/structure/surface/rack, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"rHp" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/plating, -/area/strata/ag/exterior/paths/dorms_quad) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"rHD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/obj/item/reagent_container/food/condiment/peppermill, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"rHL" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) "rHX" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -27586,330 +27482,267 @@ /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) "rHZ" = ( -/obj/item/storage/briefcase/inflatable, -/obj/item/storage/briefcase/inflatable, -/obj/structure/surface/rack, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"rIg" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" + }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"rIF" = ( -/obj/structure/bed/chair/office/light{ - dir = 1 +/area/strata/ag/exterior/research_decks) +"rII" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"rIG" = ( -/obj/effect/landmark/survivor_spawner, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) +/area/strata/ag/interior/outpost/security) +"rIL" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "rIM" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/deep/north_carp) -"rJY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/kitchen/utensil/pspoon, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +"rJo" = ( +/obj/item/clipboard, +/obj/item/clipboard, +/obj/structure/surface/rack, +/obj/item/storage/box/cups, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"rJF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"rKr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) +"rJP" = ( +/turf/open/asphalt/cement/cement2, +/area/strata/ug/interior/jungle/platform/east/scrub) +"rKo" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) "rKG" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/outpost/gen/bball/nest) -"rKM" = ( -/obj/structure/machinery/landinglight/ds2, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/landingzone_2) -"rKY" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/interior/landingzone_1) -"rLs" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"rLy" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"rLJ" = ( +"rKH" = ( +/obj/structure/machinery/optable, +/obj/effect/landmark/corpsespawner/russian, /obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"rLG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/station_alert{ + dir = 4; + pixel_x = -10 + }, +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"rLM" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) "rLO" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms) +"rLU" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 5 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"rMj" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) +"rLW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/ammo_magazine/revolver/upp, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "rMv" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_2"; opacity = 0 }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"rMH" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"rNo" = ( +"rMI" = ( +/turf/open/floor/strata/blue3/east, +/area/strata/ag/interior/outpost/admin) +"rNB" = ( /obj/structure/surface/rack, -/obj/item/storage/box/lightstick, -/obj/item/storage/box/lightstick, -/obj/item/storage/box/lightstick, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/item/storage/box/beakers, +/obj/item/storage/box/gloves, +/obj/item/storage/box/pillbottles, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) -"rNB" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/turf/open/floor/almayer/test_floor5, -/area/strata/ag/exterior/marsh/crash) "rNI" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/nearlz2) +"rNM" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "rNO" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/barricade/handrail/strata, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"rOy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/omelette, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) "rOB" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/vanyard) -"rOM" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"rON" = ( -/obj/effect/landmark/corpsespawner/doctor, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"rPk" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"rPp" = ( +"rPw" = ( /obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/nearlz1) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) "rPA" = ( /obj/structure/platform/strata/metal, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) -"rPN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner, -/obj/item/reagent_container/food/snacks/flour, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"rQc" = ( +"rPV" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/small, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi) -"rQh" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"rQl" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"rQI" = ( -/obj/structure/machinery/reagentgrinder/industrial, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"rQj" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "rQX" = ( /obj/structure/platform/strata{ dir = 8 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"rRf" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) "rRl" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"rRv" = ( -/obj/structure/filingcabinet, -/obj/structure/barricade/handrail/strata{ - dir = 8 +"rRA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, /turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"rRU" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"rRW" = ( -/obj/structure/closet/firecloset/full, +/area/strata/ag/interior/outpost/gen/foyer) +"rRB" = ( +/obj/structure/machinery/door/airlock/almayer/generic, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"rRX" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +/area/strata/ag/exterior/marsh/crash) +"rRE" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"rSf" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 }, -/obj/structure/mirror{ - pixel_x = -29 +/obj/structure/platform/strata/metal{ + dir = 1 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) +"rSg" = ( +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) "rSl" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"rSr" = ( +"rSu" = ( +/obj/structure/machinery/computer/cameras, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"rTa" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp/green, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/restricted/devroom) +"rTB" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"rTG" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms) +"rTL" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/asphalt/cement/cement4, -/area/strata/ug/interior/jungle/platform/east/scrub) -"rSK" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"rTt" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/item/stack/sheet/plasteel/medium_stack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"rTE" = ( -/obj/item/stack/catwalk, -/obj/item/tool/wrench, -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/almayer/plate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"rTK" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"rTN" = ( -/obj/item/stack/rods, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"rUG" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"rTZ" = ( +/obj/structure/reagent_dispensers/beerkeg, /turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"rVb" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/security) -"rVd" = ( -/obj/structure/machinery/camera/autoname{ - dir = 4 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"rVi" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/area/strata/ag/interior/dorms) +"rUd" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"rVp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/faxmachine, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"rVv" = ( -/obj/structure/bed/chair{ - dir = 8 +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"rUE" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"rVJ" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"rVM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake{ - pixel_x = -9; - pixel_y = 15 +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/platform/east/scrub) +"rUZ" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" }, -/obj/item/toy/deck, -/obj/item/storage/box/cups, +/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) -"rVU" = ( +"rVb" = ( +/obj/structure/closet/bombcloset, +/obj/item/clothing/suit/armor/bulletproof, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi) -"rWj" = ( -/obj/structure/machinery/shower, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/mirror{ - pixel_x = -29 - }, -/obj/item/clothing/suit/storage/hazardvest, -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/effect/landmark/wo_supplies/storage/m56d, -/obj/structure/machinery/door/window/eastright{ - dir = 2 +"rVj" = ( +/obj/structure/machinery/space_heater, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin4) -"rWB" = ( +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"rVA" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; dir = 4; @@ -27918,223 +27751,191 @@ /obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) -"rWM" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"rXm" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/paths/dorms_quad) +"rWH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/stool, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) "rXy" = ( /obj/structure/largecrate/random/barrel/yellow, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"rXY" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"rYo" = ( -/obj/structure/morgue{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"rZa" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/strata_decals/grime/grime4{ - dir = 4 - }, -/turf/open/floor/strata/orange_edge/west, -/area/strata/ag/interior/dorms) -"rZl" = ( -/obj/structure/window/reinforced/tinted{ +"rXQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ dir = 1 }, -/obj/structure/toilet{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/administration) -"rZm" = ( -/obj/structure/toilet{ - dir = 8 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"rZq" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"rZv" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh) -"rZy" = ( -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) -"rZE" = ( +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"rYe" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/outpost/gen/foyer) -"sag" = ( -/obj/structure/machinery/power/apc/no_power/east, -/obj/structure/machinery/light/small{ - dir = 4 +"rYy" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"rYA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"rYT" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"rZp" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/vanyard) +"rZx" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) "sah" = ( /obj/item/weapon/gun/pistol/t73, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"sai" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"sax" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, +"sam" = ( +/obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) +"sat" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"saE" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) +"saI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/tool/stamp, +/obj/item/paper_bin, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"saJ" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "saY" = ( /turf/open/gm/river, /area/strata/ug/interior/jungle/deep/tearlake) -"sbm" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/item/storage/fancy/vials, -/turf/open/floor/strata/cyan1/east, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"sbp" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, +"sbE" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi) -"sbt" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) +"sbS" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) "sbW" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/vanyard) -"scd" = ( -/obj/structure/bed/chair{ +"scc" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) -"sci" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NS-center" - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"scT" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/tcomms) -"scW" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) -"sdt" = ( -/obj/structure/machinery/door/airlock/strata/autoname{ - dir = 1 +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"scK" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/restricted/devroom) -"sdX" = ( -/obj/structure/closet/secure_closet/personal, +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/mass_spectrometer, +/obj/item/prop/matter_decompiler, /turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/canteen/personal_storage) +"sda" = ( +/obj/item/reagent_container/food/snacks/donkpocket, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"sdj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"sdJ" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/condimentbottles, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"sdV" = ( +/obj/structure/machinery/power/apc/no_power/east, +/turf/open/floor/strata, +/area/strata/ag/interior/outpost/engi) "seb" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"see" = ( -/obj/structure/machinery/iv_drip, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"seo" = ( -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/bball) "sep" = ( -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"seq" = ( -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +/obj/structure/bookcase, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"ser" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"seF" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"sex" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"seK" = ( -/obj/structure/platform_decoration/strata/metal{ +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"seR" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"sfA" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) -"sfi" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 1 }, -/turf/open/floor/strata/white_cyan2, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"sge" = ( -/obj/effect/decal/cleanable/blood, -/obj/item/ammo_magazine/revolver/spearhead{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"sga" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"sgf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/south) "sgq" = ( /obj/structure/bed{ icon_state = "abed" @@ -28145,121 +27946,70 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"sgz" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) "sgG" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/tcomms) -"sgU" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/engi/drome) "sha" = ( /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/paths/southresearch) -"shf" = ( -/obj/structure/closet/emcloset, -/obj/item/coin/marine/engineer, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/item/storage/pill_bottle/kelotane/skillless, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) -"shk" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/landingzone_checkpoint) "shp" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"shq" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"siw" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms) -"sjh" = ( -/obj/structure/closet/bodybag/tarp/snow, -/obj/structure/closet/bodybag/tarp/snow, -/obj/structure/closet/bodybag/tarp/snow, -/obj/structure/surface/rack{ - layer = 2.5 - }, -/turf/open/floor/strata/floor3/east, +"shU" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/tcomms) -"sjw" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +"sjY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/item/storage/pill_bottle/bicaridine, -/obj/structure/machinery/door/window/eastright{ - dir = 8 +/obj/structure/machinery/light/small, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) -"sjx" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"sjX" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"ska" = ( +/turf/open/floor/prison/floor_plate, +/area/strata/ag/interior/dorms) "ski" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/toolbox/mechanical, /obj/item/device/flashlight, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) -"skW" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) -"slc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"sli" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1; - icon_state = "commb" +"skI" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_18" +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"skR" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"slp" = ( /obj/structure/barricade/handrail/strata{ - dir = 8 + dir = 4 }, -/turf/open/asphalt/cement/cement3, -/area/strata/ug/interior/jungle/platform/east/scrub) +/turf/open/asphalt/cement/cement9, +/area/strata/ag/exterior/marsh) +"slb" = ( +/obj/structure/machinery/door/airlock/prison{ + name = "Reinforced Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"slt" = ( +/obj/structure/prop/ice_colony/surveying_device/measuring_device, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) +"slu" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "sly" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -28267,76 +28017,32 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"slz" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"slG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp/green, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"slV" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 1 - }, -/turf/open/floor/almayer/test_floor5, -/area/strata/ug/interior/jungle/deep/structures/res) +"slQ" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"slU" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) "smd" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "brflowers_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"smu" = ( -/obj/structure/closet, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) -"smD" = ( -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/storage/box/masks{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"smE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) "smG" = ( /obj/structure/largecrate/random, /obj/item/toy/deck, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"snK" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"snR" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/canteen) +"sns" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"snG" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/admin) "snV" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ug/interior/jungle/platform/east/scrub) @@ -28347,145 +28053,215 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"sow" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) +"soq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) "soI" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/asphalt/cement, /area/strata/ag/exterior/shed_five_caves) +"soY" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"spo" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "spp" = ( /obj/item/weapon/gun/pistol/t73, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"sqg" = ( -/obj/structure/reagent_dispensers/beerkeg, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"sqt" = ( -/turf/open/floor/strata/multi_tiles/west, +"spI" = ( +/obj/item/clipboard, +/obj/item/clipboard, +/obj/structure/surface/rack, +/obj/item/storage/box/cups, +/turf/open/floor/strata/floor3, /area/strata/ug/interior/jungle/deep/structures/res) -"sqK" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" +"spR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_ew_half_cap" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) +"sqO" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 8 }, -/obj/item/weapon/harpoon, -/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) +/area/strata/ag/exterior/research_decks) "sqT" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/marsh/crash) -"srf" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"sqY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/strata/multi_tiles/southwest, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) -"srg" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) "srk" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/platform/east/scrub) -"srm" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms) -"srv" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southeast, +"srB" = ( +/obj/structure/closet/crate/freezer/rations, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"srN" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/asphalt/cement/cement9, /area/strata/ug/interior/jungle/deep/structures/res) "ssd" = ( /turf/open/gm/coast/east, /area/strata/ug/interior/jungle/deep/east_dorms) -"stb" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) +"ssF" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/landingzone_2) +"ssO" = ( +/obj/structure/machinery/computer/station_alert{ + dir = 4; + pixel_x = -10 + }, +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) "stf" = ( /turf/open/gm/coast/west, /area/strata/ug/interior/jungle/deep/east_carp) -"stx" = ( -/obj/structure/surface/rack, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/inflatable, -/obj/item/tool/weldingtool, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms/south) -"stE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/carrotfries, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"stw" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"stB" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/security) "stF" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/marsh/center) -"stZ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"suI" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen) -"suP" = ( -/obj/structure/machinery/door/airlock/almayer/security/colony{ - dir = 8 +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/marsh/center) +"stM" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"stZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"suQ" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"svd" = ( +/obj/structure/bookcase, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"sve" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"svi" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/outpost/med) +"svn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/radio, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"svF" = ( +/mob/living/simple_animal/hostile/carp{ + desc = "You think this might be Glubs's son." + }, +/turf/open/gm/dirt, +/area/strata/ug/exterior/jungle/deep/carplake_center) +"svM" = ( +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) +"swl" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"swB" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/security) -"suZ" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"svh" = ( -/obj/structure/platform/strata/metal{ +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/med) +"swI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/paths/adminext) -"svr" = ( +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"swJ" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/obj/item/cell/high, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/storage/pill_bottle/bicaridine/skillless, /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 4 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"svC" = ( -/obj/item/clipboard, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"svX" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"swT" = ( +/obj/structure/window/framed/strata, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) "sxr" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform_decoration/strata{ @@ -28493,15 +28269,18 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/paths/cabin_area) -"sxu" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"sxP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 +"sxx" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"sxG" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) "sxS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin, @@ -28516,10 +28295,27 @@ /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) -"syb" = ( -/obj/structure/window/framed/strata, +"syk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/tcomms) +"syq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 8 + }, /turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/admin) +/area/strata/ag/interior/dorms/south) +"syI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/box/ids, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "syU" = ( /obj/structure/machinery/space_heater, /turf/open/floor/strata, @@ -28532,65 +28328,91 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/engi) -"szo" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +"sze" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"szq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"szr" = ( +/obj/structure/closet/secure_closet/personal, /obj/structure/machinery/light/small{ - dir = 1 + dir = 4 }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"szt" = ( +/obj/structure/curtain/medical, /turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"szC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"sAe" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/outpost/med) -"szD" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/handcuffs, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"szY" = ( -/obj/structure/machinery/space_heater, +"sAv" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/strata/ug/interior/outpost/jung/dorms/med1) +"sAD" = ( +/obj/effect/decal/remains/xeno, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"sBo" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) +"sBH" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"sCn" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"sCL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) -"sAq" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/jellysandwich, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"sDg" = ( +/obj/structure/machinery/gibber, /turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/dorms/canteen) -"sAv" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"sAX" = ( -/obj/structure/pipes/vents/pump{ +"sDX" = ( +/obj/structure/bed/chair/comfy, +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/obj/effect/landmark/survivor_spawner, /turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"sBp" = ( -/obj/structure/largecrate/random, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"sBu" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/canteen) -"sDP" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) -"sEg" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/down, -/obj/item/stack/rods, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) +"sEE" = ( +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) "sEG" = ( /obj/structure/platform_decoration/strata{ dir = 8 @@ -28601,50 +28423,42 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) -"sEM" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) "sEV" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/gm/dirt, /area/strata/ug/exterior/jungle/deep/carplake_center) -"sEW" = ( -/obj/structure/bed/chair/dropship/passenger{ +"sFc" = ( +/obj/item/clothing/shoes/snow, +/obj/structure/surface/rack, +/obj/item/clothing/shoes/snow, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/clothing/suit/storage/snow_suit, +/obj/item/tank/emergency_oxygen/engi, +/obj/effect/decal/strata_decals/grime/grime3{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"sFb" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/explosive_mines, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"sFj" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link, /turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"sFm" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 +/area/strata/ag/interior/outpost/med) +"sFs" = ( +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/red3/north, +/area/strata/ag/interior/outpost/med) +"sGs" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"sFv" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, +/turf/open/floor/strata/orange_edge/west, /area/strata/ag/interior/dorms) -"sFx" = ( -/obj/item/tool/pen/blue, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) -"sGx" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/plate, -/area/strata/ag/exterior/marsh/crash) -"sGz" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) +"sGw" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "sGJ" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -28652,294 +28466,330 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"sHi" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "gib6" - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"sHI" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"sGS" = ( +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"sHz" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) +/obj/item/reagent_container/food/condiment/peppermill, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "sHP" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"sIg" = ( -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) -"sIs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/sugar, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/bar) "sJd" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/core, /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/dorms) -"sJp" = ( -/obj/structure/machinery/light/small{ +"sJs" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, +/obj/item/ammo_magazine/revolver/upp, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"sJK" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/storage/fancy/vials, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"sJx" = ( -/obj/item/clothing/gloves/white, -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"sJM" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"sJW" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2 +/turf/open/floor/strata/purp1, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"sJQ" = ( +/obj/structure/closet/emcloset, +/obj/item/coin/marine/engineer, +/obj/structure/machinery/light/small{ + dir = 4 }, +/obj/item/storage/pill_bottle/kelotane/skillless, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, +/obj/item/stack/sheet/mineral/plastic, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) +/area/strata/ag/interior/outpost/gen/foyer) "sKg" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/east_carp) -"sKj" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/multi_tiles/southwest, +"sKh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) -"sKy" = ( +"sKt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"sKD" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6" + }, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"sKB" = ( -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/gen/bball) -"sKE" = ( -/obj/item/storage/box/cups, -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/foyer) +"sKH" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_y = 28 }, -/obj/item/book/manual/surgery, /turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/canteen/bar) -"sKH" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"sKN" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, +"sKQ" = ( /obj/structure/machinery/light/small{ - dir = 4 + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) +/obj/effect/spawner/random/powercell, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "sKX" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) -"sLC" = ( -/obj/structure/machinery/power/monitor{ - name = "Main Power Grid Monitoring" - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"sMh" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"sMj" = ( -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata, -/area/strata/ag/exterior/research_decks) -"sMy" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/security) -"sMD" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/paths/adminext) -"sMR" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/beakers, -/obj/item/storage/box/gloves, -/obj/item/storage/box/pillbottles, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +"sLg" = ( +/obj/structure/machinery/power/reactor/colony, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"sNr" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/area/strata/ag/interior/outpost/admin) +"sLo" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/platform_decoration/strata/metal{ + dir = 1 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"sNI" = ( -/obj/structure/closet/bombcloset, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/prison/darkyellowfull2, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/engi) -"sNL" = ( -/obj/structure/platform/strata/metal{ +"sLQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) -"sOa" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/effect/decal/strata_decals/grime/grime1, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"sMU" = ( +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/item/dogtag, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"sOu" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"sNK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"sOe" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/condiment/saltshaker, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) "sPc" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/tcomms) -"sPe" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +"sPu" = ( +/obj/item/clipboard, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"sPw" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 2 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) +"sPx" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) "sPF" = ( /turf/open/floor/strata, /area/strata/ug/interior/jungle/platform/east/scrub) -"sPQ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"sPR" = ( -/obj/structure/machinery/disposal, +"sPL" = ( +/obj/structure/machinery/washing_machine, /obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"sQb" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "sQx" = ( +/obj/structure/closet/bombcloset, /obj/structure/machinery/light/small{ - dir = 8 + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"sQJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"sQG" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/beakers, -/obj/item/storage/box/gloves, -/obj/item/storage/box/pillbottles, -/obj/effect/decal/cleanable/blood/splatter, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"sRg" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/t73, -/obj/item/restraint/handcuffs, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"sRk" = ( -/obj/item/fuel_cell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"sRs" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 + dir = 5 }, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) -"sRu" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"sQT" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) +"sQV" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +/obj/effect/landmark/corpsespawner/engineer, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"sRl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"sRH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"sRN" = ( +/obj/structure/barricade/deployable{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"sRO" = ( +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata, +/area/strata/ag/exterior/research_decks) "sRR" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "brflowers_1" }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) -"sSK" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"sTd" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" +"sSs" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) +"sSH" = ( +/obj/structure/machinery/light/small, +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"sST" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap" }, -/obj/item/tool/kitchen/utensil/pknife, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) "sTj" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi) -"sTq" = ( -/obj/structure/tunnel/maint_tunnel{ - pixel_y = 16 +/obj/structure/inflatable, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"sTr" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"sTE" = ( -/obj/structure/bed{ - icon_state = "abed" +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"sTx" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) +"sUf" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms) +"sUh" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/nearlz1) +"sUn" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/plump_pie, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"sUz" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib4" }, /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"sWb" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi) -"sWn" = ( +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) +"sUH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/structures/res) +"sUO" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/stamp, +/obj/item/reagent_container/food/drinks/bottle/sake{ + pixel_x = -9; + pixel_y = 15 + }, +/obj/item/paper_bin, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"sWr" = ( /obj/structure/bed/chair{ - dir = 1 + dir = 4 }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"sWX" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "sXt" = ( /obj/structure/bed/chair{ dir = 8 @@ -28960,13 +28810,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"sXI" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med1) "sXU" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata{ @@ -28977,336 +28820,240 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"sYk" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"sYI" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) -"sYX" = ( -/turf/open/floor/strata/multi_tiles/west, +"sZg" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"sZr" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"sZH" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"taa" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 +"sZJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/cheesecakeslice, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"tad" = ( /obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"tam" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"tan" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 2; - name = "\improper Airlock" + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/south) -"taR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp, -/obj/item/storage/box/cups, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"taY" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access, -/turf/open/floor/strata/white_cyan3/east, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) -"tbG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, +"tav" = ( +/obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"tbT" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 +/obj/structure/curtain/open/shower, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"taT" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"taX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/cans/sodawater, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"tbI" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 }, -/obj/structure/machinery/computer/station_alert{ +/obj/structure/toilet{ dir = 4 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"tbU" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/machinery/door/window/eastright, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"tcg" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"tcm" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/foyer) -"tdg" = ( +/obj/effect/landmark/corpsespawner/russian, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"tdu" = ( /obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" + icon_state = "pottedplant_10" }, -/obj/effect/decal/strata_decals/grime/grime3{ +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"tdK" = ( +/obj/effect/decal/strata_decals/grime/grime1{ dir = 4 }, /turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) -"tdh" = ( -/obj/structure/surface/rack, -/obj/item/storage/belt/utility/full, -/obj/item/tank/anesthetic, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"tdj" = ( -/obj/structure/machinery/chem_master, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"tdO" = ( -/obj/structure/bed/chair{ - dir = 8 - }, +"tev" = ( +/obj/structure/machinery/light/small, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"tdR" = ( -/obj/item/stack/snow, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/paths/north_outpost) -"teH" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) +/area/strata/ag/interior/outpost/canteen/personal_storage) "teI" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"teY" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner, -/obj/item/toy/deck, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"tfc" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/exterior/paths/north_outpost) +"tfa" = ( +/obj/structure/window/framed/strata/reinforced, +/obj/structure/machinery/door/poddoor/shutters/almayer, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) "tfM" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/shed_five_caves) -"tge" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/nearlz1) -"tgv" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"tfW" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/administration) +"tgA" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) "tgC" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"tgG" = ( -/obj/item/storage/box/nade_box/tear_gas, -/obj/structure/closet/secure_closet/security/soro, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"tgM" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) +"tgK" = ( +/obj/structure/filingcabinet, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"tgP" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"tgR" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/obj/item/reagent_container/food/condiment/peppermill, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "thc" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 8 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) +"thf" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"thq" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms/south) "thz" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/item/weapon/gun/pistol/t73, /turf/open/floor/greengrid, /area/strata/ag/exterior/research_decks) -"tix" = ( -/obj/structure/barricade/handrail/strata{ +"tie" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"tiM" = ( -/obj/item/tool/pen/blue, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/admin) -"tjc" = ( -/obj/structure/largecrate/random/barrel/blue, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/sec2) +"tjd" = ( /obj/structure/machinery/light/small{ - dir = 4 + dir = 1; + pixel_y = 20 }, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) +/area/strata/ag/interior/outpost/engi) "tjo" = ( /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec1) -"tjs" = ( -/obj/structure/toilet, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 +"tjw" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" }, /obj/structure/machinery/light/small{ dir = 4 }, -/obj/effect/landmark/wo_supplies/storage/belts/medical, -/obj/item/dogtag, -/obj/item/clothing/suit/armor/riot, -/obj/item/weapon/gun/rifle/type71/carbine, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/admin) -"tjw" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/strata/red3, +/area/strata/ag/interior/outpost/med) "tjM" = ( /obj/structure/closet/secure_closet/chemical{ req_access = null }, /turf/open/floor/interior/plastic, /area/strata/ag/interior/paths/cabin_area/central) -"tkg" = ( +"tjU" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"tjX" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/spawner/random/tool, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin2) +"tkh" = ( /obj/structure/barricade/handrail/strata{ - dir = 8 + dir = 1 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "tkq" = ( /obj/structure/platform_decoration/strata/metal{ dir = 1 }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"tkr" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"tkF" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/landmark/survivor_spawner, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/strata/floor2, +"tkX" = ( +/obj/structure/inflatable, +/turf/open/floor/strata/cyan3/east, /area/strata/ag/interior/outpost/med) -"tlh" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata{ +"tlY" = ( +/obj/item/stack/catwalk, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"tmd" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"tlv" = ( -/obj/structure/machinery/door/airlock/almayer/generic, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) -"tlZ" = ( -/obj/structure/surface/rack, -/obj/item/storage/pill_bottle/bicaridine, -/obj/item/tool/crowbar, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "tmi" = ( /obj/item/stack/sheet/wood, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"tmj" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"tmr" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"tmT" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"tnu" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/foyer) -"toi" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/strata/white_cyan4/north, -/area/strata/ag/interior/outpost/med) -"top" = ( -/obj/item/lightstick/red/spoke/planted{ - layer = 3.1; - pixel_y = 13 - }, -/obj/structure/prop/ice_colony/ground_wire, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 1 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 8 - }, -/obj/structure/prop/ice_colony/ground_wire{ - dir = 4 +"tnU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, -/turf/open/floor/strata/purp2, -/area/strata/ug/exterior/jungle/deep/carplake_center) +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"toq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "toV" = ( /turf/open/gm/coast/beachcorner/north_east, /area/strata/ug/interior/jungle/deep/tearlake) -"tpm" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"tpw" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/asphalt/cement/cement3, -/area/strata/ug/interior/jungle/platform/east/scrub) -"tpY" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +"tpF" = ( +/obj/effect/decal/cleanable/blood/gibs/body, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "tqG" = ( /turf/open/floor/strata, /area/strata/ag/exterior/paths/north_outpost) @@ -29314,17 +29061,11 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"tqO" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"trk" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) +"trg" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) "tru" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -29347,40 +29088,58 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"trK" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"tsQ" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgibdown1" - }, +"trU" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; - dir = 8; + dir = 1; icon_state = "p_stair_full" }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"tsS" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"tss" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"tsB" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"tsU" = ( +/obj/structure/machinery/autolathe/full, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "tsX" = ( /obj/structure/platform/strata/metal{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"ttk" = ( -/obj/structure/machinery/power/apc/no_power/east, -/turf/open/floor/strata, -/area/strata/ag/interior/landingzone_checkpoint) +"ttN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/eggplantparm, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) "ttQ" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/restricted) +"ttR" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/marsh) +"tug" = ( +/obj/structure/bed/nest, +/obj/item/storage/pill_bottle/inaprovaline/skillless, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "tuj" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer1, @@ -29389,17 +29148,23 @@ /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/paths/north_outpost) -"tuP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan3/east, -/area/strata/ag/interior/outpost/med) -"tuR" = ( -/obj/structure/machinery/power/apc/power/north, -/obj/structure/kitchenspike, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/paths/north_outpost) +"tuH" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"tvg" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/north_lz_caves) "tvk" = ( /obj/structure/platform/strata/metal{ dir = 1 @@ -29407,42 +29172,47 @@ /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer0_mud_alt, /area/strata/ug/interior/jungle/deep/minehead) -"tvp" = ( -/obj/structure/bed{ - icon_state = "abed" +"tvz" = ( +/obj/item/stack/sandbags, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/obj/item/storage/photo_album, -/obj/structure/machinery/door/window/eastright{ - dir = 2 +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"tvH" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, +/obj/structure/barricade/handrail/strata, /turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"tvu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/meatballspagetti, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) +/area/strata/ag/interior/outpost/admin) "twa" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/asphalt/cement, /area/strata/ag/exterior/tcomms/tcomms_deck) -"twg" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"twT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"txi" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) +"twV" = ( +/turf/open/floor/strata/white_cyan3/west, +/area/strata/ag/interior/outpost/med) +"txf" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "txs" = ( /turf/open/asphalt/cement, /area/strata/ag/interior/outpost/gen/bball/nest) -"tyb" = ( -/obj/item/stack/sandbags, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) +"txK" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"tyc" = ( +/obj/item/weapon/gun/rifle/type71/carbine, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "tyD" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -29452,127 +29222,176 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"tzb" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"tzE" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata/floor3/east, +"tyT" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"tzl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/turf/open/floor/strata/blue1, /area/strata/ug/interior/jungle/deep/structures/res) -"tzG" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/med) -"tAy" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"tzL" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"tBd" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"tAa" = ( +/obj/item/device/flashlight/lamp, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"tAB" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"tBe" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/nearlz1) +"tBi" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/landingzone_checkpoint) "tBn" = ( /obj/structure/machinery/space_heater, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"tBB" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"tBR" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"tBZ" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"tBO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/admin2) +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen/bar) +"tBV" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) "tCi" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/exterior/marsh/center) -"tCn" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"tCq" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"tCA" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/cyan1/east, +"tCy" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"tCK" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) "tCM" = ( /obj/structure/bed/roller, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"tCO" = ( +/obj/structure/filingcabinet, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "tCR" = ( /obj/effect/landmark/hunter_primary, /turf/open/floor/plating, /area/strata/ag/exterior/landingzone_2) +"tDa" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) "tDo" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/center) -"tDI" = ( -/obj/structure/dispenser, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"tEp" = ( -/obj/structure/machinery/colony_floodlight, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"tEr" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +"tDW" = ( +/obj/effect/spawner/random/attachment, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen) +"tEd" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/interior/landingzone_1) "tEC" = ( /obj/structure/sign/nosmoking_1, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/restricted/devroom) -"tEQ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) "tEY" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/strata, /area/strata/ag/interior/nearlz1) -"tFj" = ( -/obj/structure/closet/bombcloset, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/stack/sheet/plasteel/medium_stack, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/obj/item/stack/sheet/mineral/plastic, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"tFs" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, +"tFg" = ( +/obj/structure/machinery/power/apc/no_power/north, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"tFx" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"tGe" = ( +/obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) -"tFu" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 +/area/strata/ag/interior/outpost/security) +"tGu" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/med) -"tFx" = ( +"tGv" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"tHr" = ( +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/foyer) +"tHv" = ( +/obj/effect/landmark/static_comms/net_two, +/turf/open/auto_turf/snow/brown_base/layer2, +/area/strata/ag/exterior/vanyard) +"tHz" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"tHD" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 8; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/nearlz1) +"tHM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"tHP" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"tHR" = ( /obj/item/lightstick/red/spoke/planted{ layer = 3.1; pixel_y = 13 @@ -29588,90 +29407,39 @@ dir = 4 }, /turf/open/floor/strata/red2, -/area/strata/ug/interior/jungle/deep/east_carp) -"tFX" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) -"tGg" = ( -/obj/effect/landmark/xeno_spawn, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/almayer/plate, -/area/strata/ug/interior/jungle/deep/structures/res) -"tGk" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/admin) -"tGo" = ( -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) -"tGL" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"tHh" = ( -/obj/structure/surface/rack, -/obj/item/spacecash/c500, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"tHv" = ( -/obj/effect/landmark/static_comms/net_two, -/turf/open/auto_turf/snow/brown_base/layer2, -/area/strata/ag/exterior/vanyard) -"tHW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"tIc" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/closet/secure_closet/personal, -/obj/item/lightstick, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"tIf" = ( -/obj/item/cell/high, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/med) +/area/strata/ug/interior/jungle/deep/hotsprings) "tIl" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/mountain) -"tIn" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"tIA" = ( -/obj/structure/toilet{ - dir = 8 +"tIq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) +"tIB" = ( +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) +"tIU" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"tIV" = ( +/obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/engi) -"tJa" = ( -/obj/structure/machinery/space_heater, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/paths/adminext) +"tJc" = ( /obj/structure/machinery/light/small, -/obj/structure/platform/strata/metal{ +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med2) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) "tJp" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment{ @@ -29682,16 +29450,6 @@ }, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"tJt" = ( -/obj/item/clipboard, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"tJv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/donkpockets, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "tJJ" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -29701,11 +29459,6 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"tJO" = ( -/obj/structure/machinery/light/small, -/obj/structure/inflatable/popped, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/nearlz2) "tJS" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_carp) @@ -29720,168 +29473,104 @@ icon_state = "upp25" }, /area/strata/ag/exterior/marsh/crash) -"tLm" = ( -/obj/structure/tunnel, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/minehead) -"tLs" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/auto_turf/ice/layer1, -/area/strata/ag/exterior/paths/southresearch) -"tLD" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/structure/bed/chair{ - dir = 4 +"tLF" = ( +/obj/structure/surface/rack{ + layer = 2.5 }, -/obj/item/paper_bin, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) +/obj/item/weapon/gun/revolver/upp, +/obj/item/ammo_magazine/revolver/upp, +/obj/item/ammo_magazine/revolver/upp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "tLO" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) -"tMa" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"tMp" = ( -/obj/structure/prop/almayer/computers/mapping_computer, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/administration) -"tMB" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/window/reinforced/tinted, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/med1) +"tLS" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) +"tMh" = ( +/obj/structure/bed, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) "tMP" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"tNb" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/curtain/open/medical, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +"tNc" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) "tNr" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/gen/bball/nest) +"tNG" = ( +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "tNK" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) -"tOh" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +"tNP" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" }, /turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/marsh/river) -"tOv" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ +/area/strata/ag/interior/outpost/canteen) +"tPe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"tOF" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) -"tOJ" = ( -/obj/item/paper_bin, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"tOQ" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"tPa" = ( -/obj/structure/largecrate/random/barrel/white, +/obj/effect/decal/cleanable/blood, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) +/area/strata/ag/interior/tcomms) "tPy" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/paths/north_outpost) +/obj/item/stack/sheet/wood, +/obj/structure/closet/crate/internals, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"tPC" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) "tPN" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/west_engi) -"tPV" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"tQd" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) "tQg" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/paths/southresearch) -"tQz" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"tQq" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"tQW" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/exterior/marsh/crash) +"tQF" = ( +/obj/structure/fence, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"tRk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; name = "\improper Airlock" }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) -"tRg" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"tRj" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"tRz" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade, -/obj/structure/machinery/camera/autoname{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"tRG" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) +"tRs" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/asphalt/cement/cement2, +/area/strata/ug/interior/jungle/platform/east/scrub) "tSb" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer3, @@ -29916,164 +29605,171 @@ /obj/structure/platform/strata{ dir = 1 }, -/obj/structure/platform/strata{ - dir = 4 - }, -/obj/structure/platform/strata, -/turf/open/gm/river, -/area/strata/ag/exterior/marsh/center) -"tSz" = ( -/obj/structure/machinery/computer/guestpass, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"tSE" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"tSK" = ( -/obj/structure/closet, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"tSP" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer/plate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"tSS" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/ale, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/obj/structure/platform/strata{ + dir = 4 + }, +/obj/structure/platform/strata, +/turf/open/gm/river, +/area/strata/ag/exterior/marsh/center) +"tSI" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms) "tTk" = ( /obj/structure/flora/bush/ausbushes/var3/sparsegrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"tTD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clipboard, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"tTQ" = ( -/obj/structure/closet/secure_closet/personal, -/obj/item/clothing/suit/radiation, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"tUt" = ( +"tTF" = ( +/obj/structure/tunnel/maint_tunnel{ + pixel_y = 16 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"tTJ" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/chawanmushi, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/bar) +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/engi/drome) "tUu" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/north_lz_caves) +"tUA" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) "tUN" = ( /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) +"tUU" = ( +/obj/item/ammo_magazine/revolver/upp, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/paths/southresearch) +"tUX" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/med2) "tUZ" = ( /obj/structure/platform/strata{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"tVe" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, +"tVj" = ( +/obj/structure/coatrack, +/obj/item/clothing/suit/armor/bulletproof, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) +/area/strata/ag/interior/outpost/admin) +"tVv" = ( +/obj/structure/largecrate/random, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "tWf" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) +"tWl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"tWw" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin2) "tWJ" = ( /obj/structure/surface/rack{ layer = 2.5 }, /turf/open/asphalt/cement, /area/strata/ag/exterior/tcomms/tcomms_deck) -"tWN" = ( -/obj/structure/pipes/vents/pump, +"tWR" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/security) +"tWX" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) +/area/strata/ag/interior/tcomms) "tWY" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/tcomms/tcomms_deck) -"tXT" = ( -/turf/open/asphalt/cement/cement15, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"tYl" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi/drome) -"tYn" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/exterior/paths/cabin_area) -"tYt" = ( -/obj/item/ammo_magazine/revolver/spearhead{ - pixel_x = 6; - pixel_y = -4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) "tYF" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh/center) -"tYN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/cheesecakeslice, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"tZg" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"tZw" = ( -/obj/structure/prop/ice_colony/tiger_rug{ - layer = 2.1 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi/drome) -"uap" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname{ +"tYS" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/purp1, -/area/strata/ug/interior/jungle/deep/structures/engi) -"uas" = ( -/turf/open/asphalt/cement/cement14, -/area/strata/ag/exterior/landingzone_2) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"tYY" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/foyer) +"tZm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) "uaH" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"ubw" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/pipes/standard/simple/hidden/cyan, +"uaJ" = ( +/obj/structure/tunnel/maint_tunnel, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) +/area/strata/ag/interior/outpost/admin) +"uaN" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"ubh" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"ubl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/platform/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"ubu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/item/tool/pen/blue, +/obj/item/storage/box/ids, +/obj/item/paper_bin, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/obj/structure/barricade/handrail/strata, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "ubx" = ( /obj/structure/largecrate/random, /obj/item/paper_bin, @@ -30083,36 +29779,87 @@ /obj/structure/flora/grass/tallgrass/ice, /turf/open/auto_turf/ice/layer2, /area/strata/ag/exterior/marsh) +"ubM" = ( +/obj/structure/machinery/shower{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/minehead/ruins) "ubN" = ( /turf/open/asphalt/cement, /area/strata/ag/interior/tcomms) -"ubX" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 +"ubQ" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/marsh/river) -"ucf" = ( -/turf/open/asphalt/cement/cement15, -/area/strata/ag/interior/landingzone_1) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"ubV" = ( +/obj/structure/inflatable/popped/door, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"ucn" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) "ucD" = ( /obj/structure/inflatable/door, /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ag/interior/mountain) -"uev" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"uew" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/item/clothing/gloves/latex, +"ucE" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, /turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"ueB" = ( +/area/strata/ug/interior/jungle/deep/structures/engi) +"ucL" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"udq" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/obj/item/fuel_cell, +/turf/open/floor/strata/red2, +/area/strata/ag/interior/outpost/engi) +"udG" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"udU" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"ueJ" = ( +/obj/structure/machinery/vending/coffee, /turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) +/area/strata/ag/interior/outpost/admin) "ueK" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -30124,10 +29871,6 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh) -"ueL" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/plate, -/area/strata/ag/exterior/marsh/crash) "ueP" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, @@ -30135,54 +29878,22 @@ "ueU" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outpost/med) -"ufy" = ( -/obj/structure/surface/rack, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/strata/multi_tiles/west, +"ufx" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/almayer/plate, /area/strata/ug/interior/jungle/deep/structures/res) "ufG" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) -"ufK" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"ufR" = ( -/turf/open/asphalt/cement/cement14, -/area/strata/ug/interior/jungle/platform/east/scrub) -"ufY" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"ugd" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +"ugF" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"ugq" = ( -/obj/structure/barricade/wooden{ +/obj/structure/machinery/light/small{ dir = 8 }, -/obj/effect/landmark/corpsespawner/chef, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/bar) -"ugw" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) "ugI" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -30190,34 +29901,21 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"ugJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"uhb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"uhk" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/obj/item/stack/rods, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"ugQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"ugR" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"uhj" = ( -/obj/structure/closet/crate/freezer/rations, -/obj/item/clothing/suit/xenos, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"uhD" = ( -/turf/open/asphalt/cement/cement4, -/area/strata/ug/interior/jungle/platform/east/scrub) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"uhw" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/interior/outpost/engi/drome/shuttle) "uhF" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -30226,59 +29924,78 @@ /obj/effect/decal/cleanable/blood/gibs/up, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"uhI" = ( -/obj/structure/morgue, +"uhJ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/machinery/computer/communications, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi/drome) +"uhP" = ( +/obj/structure/filingcabinet, /obj/structure/machinery/light/small{ - dir = 8 + dir = 1 }, /turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"uhN" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"uhR" = ( -/obj/structure/closet/crate/radiation, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"uix" = ( -/obj/structure/inflatable/door, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) +"uhW" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/door/window/eastright{ + dir = 2 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"uig" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) +"uiC" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 4; + icon_state = "p_stair_sn_full_cap" + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/flight_control) "uiE" = ( /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"uiI" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/spawner/random/tool, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"uiT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"uiH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/window{ + pixel_y = 31 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"uiW" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"uiX" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/bcircuit, -/area/strata/ag/interior/dorms) -"uja" = ( +/obj/item/reagent_container/food/snacks/sliceable/pumpkinpie, +/obj/item/reagent_container/food/snacks/cherrypie{ + pixel_y = 13 + }, +/obj/structure/machinery/door/window{ + pixel_y = 10 + }, +/obj/structure/window{ + dir = 8; + pixel_y = 10 + }, +/obj/structure/window, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) +"uiZ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 + dir = 9 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/admin) -"ujk" = ( -/obj/structure/largecrate/random/barrel/green, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) +"ujh" = ( +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "ujl" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -30286,63 +30003,50 @@ /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"ujm" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"ujw" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"ujt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"ujH" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"ujA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"uku" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/obj/item/folder/red, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) "ukx" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"ukH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/administration) -"ukI" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"ulf" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, -/obj/structure/closet/crate/radiation, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"ulu" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/curtain/open/shower, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"ulC" = ( -/obj/structure/toilet, -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/admin) -"ulJ" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata/white_cyan2/west, +"uky" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"ukO" = ( +/obj/item/clothing/suit/storage/hazardvest, +/obj/item/clothing/suit/storage/hazardvest, +/obj/structure/surface/rack, +/turf/open/floor/strata, +/area/strata/ag/interior/dorms) +"ull" = ( +/obj/item/stack/catwalk, +/obj/item/tool/wrench, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"ulp" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/dorms) "ulL" = ( /obj/structure/platform/strata/metal{ @@ -30351,104 +30055,99 @@ /obj/structure/cryofeed/right, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"uno" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/disposals) -"unO" = ( -/obj/structure/machinery/landinglight/ds2/delaythree{ - dir = 1 - }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/landingzone_2) -"unR" = ( -/obj/structure/window/framed/strata/reinforced, +"ulS" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/research_decks/security) -"uoD" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen) -"uoK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 1 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"uoN" = ( -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"upa" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) -"upb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/pouch/flare/full, -/obj/item/weapon/gun/pistol/t73, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/orange_tile, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/dorms) -"upd" = ( -/obj/structure/machinery/optable, -/obj/item/tank/anesthetic, -/obj/structure/machinery/light/small{ - dir = 1 +"umL" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"umP" = ( +/obj/structure/inflatable/door, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"umR" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/shed_five_caves) +"umY" = ( +/obj/structure/machinery/door/airlock/prison{ + dir = 1; + name = "Reinforced Airlock" }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"uoI" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/down, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"upd" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) "uph" = ( /obj/structure/closet/fireaxecabinet, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) -"uqJ" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"uqK" = ( -/obj/item/clothing/shoes/snow, -/obj/structure/surface/rack, -/obj/item/clothing/shoes/snow, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/clothing/suit/storage/snow_suit, -/obj/item/tank/emergency_oxygen/engi, -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 +"upy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"uqN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"upK" = ( /turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/security) -"urt" = ( +"upM" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"upT" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, /obj/structure/stairs/perspective{ - color = "#6e6e6e" + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" }, -/obj/structure/platform/strata/metal{ +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"uqH" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"urb" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"ure" = ( +/obj/structure/bed/chair/comfy{ dir = 8 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/nearlz1) -"urv" = ( -/obj/structure/machinery/power/apc/no_power/north, -/obj/structure/closet/emcloset, -/turf/open/floor/strata, -/area/strata/ag/interior/tcomms) +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"urE" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) "urM" = ( /obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata, @@ -30461,141 +30160,166 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/nearlz2) -"urX" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"usd" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) -"ush" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 +"usF" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" }, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"usi" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/machinery/power/apc/power/north, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/interior/tatami, -/area/strata/ag/interior/outpost/canteen) -"usk" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"usH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/med) +/area/strata/ag/interior/outpost/engi) "usI" = ( /obj/structure/machinery/space_heater, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) "usN" = ( -/obj/structure/machinery/vending/snack, +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"uto" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/cups, +/obj/item/storage/box/cups, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/area/strata/ag/interior/outpost/engi) +"utp" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/bar) +"utO" = ( +/obj/item/weapon/gun/rifle/type71/carbine, +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/effect/landmark/wo_supplies/storage/belts/m41abelt, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "utV" = ( /obj/effect/landmark/monkey_spawn, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) +"utW" = ( +/obj/item/stool, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/bar) "utY" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"uuk" = ( +/obj/structure/bedsheetbin, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/personal_storage) "uul" = ( /obj/structure/largecrate/guns/russian, /turf/open/asphalt/cement, /area/strata/ag/exterior/tcomms/tcomms_deck) -"uum" = ( -/obj/structure/barricade/wooden{ - dir = 8 - }, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/bar) "uux" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/jungle/deep/structures/res) -"uuV" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 1 +"uuZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, -/turf/open/floor/almayer/plate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"uvj" = ( -/obj/item/weapon/gun/rifle/type71/carbine, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"uvi" = ( +/obj/structure/closet, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/administration) +"uvr" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/xeno_spawn, /turf/open/floor/strata/floor2, /area/strata/ug/interior/jungle/deep/structures/res) +"uvv" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) "uvw" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/west_engi) -"uvV" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) "uvZ" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/blocker/invisible_wall, /turf/open/gm/river, /area/strata/ag/exterior/marsh/water) +"uwu" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/obj/structure/largecrate/guns/russian, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) "uwJ" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"uwS" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms/south) -"uxe" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) +"uxd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) "uxf" = ( /obj/structure/fence, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"uyP" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +"uxv" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"uxM" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 1 }, -/turf/open/floor/strata/floor3/east, +/obj/structure/barricade/handrail/strata, +/turf/open/asphalt/cement/cement12, /area/strata/ag/interior/outpost/med) +"uxZ" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/warnplate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"uyj" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"uyw" = ( +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"uyJ" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "uzb" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e" }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"uzf" = ( -/obj/structure/barricade/wooden{ - dir = 8 +"uzr" = ( +/obj/structure/bookcase{ + icon_state = "book-5" }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) "uzv" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -30606,92 +30330,58 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) -"uAh" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"uAl" = ( +"uzV" = ( +/obj/structure/cargo_container/ferret/mid, +/turf/open/auto_turf/ice/layer0, +/area/strata/ag/exterior/marsh) +"uAI" = ( +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"uAM" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"uAu" = ( -/obj/structure/closet/crate, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"uBj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"uBp" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"uAx" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/platform_decoration/strata/metal{ - dir = 4 - }, -/obj/item/fuel_cell, -/turf/open/floor/strata/red2, -/area/strata/ag/interior/outpost/engi) -"uAR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/coffee, -/obj/item/reagent_container/food/snacks/cheesyfries, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"uBa" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) -"uBO" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) +/area/strata/ag/interior/outpost/engi/drome) +"uBW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "uCc" = ( /obj/structure/cargo_container/grant/rightmid, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"uCk" = ( -/obj/structure/machinery/medical_pod/bodyscanner, +"uCf" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/mask/surgical, +/obj/item/storage/surgical_tray, /obj/structure/machinery/light/small{ dir = 8 }, /turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/dorms) -"uCA" = ( -/turf/open/asphalt/cement/cement4, -/area/strata/ag/exterior/landingzone_2) -"uDg" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/blue3/west, -/area/strata/ag/interior/outpost/admin) -"uDt" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"uDK" = ( -/obj/structure/toilet{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec2) -"uDP" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"uDR" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 +"uCC" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms/south) +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"uDb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) "uDU" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -30704,214 +30394,283 @@ /obj/item/stack/sheet/wood, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"uEr" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 +"uEp" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, -/obj/structure/barricade/handrail/strata{ +/turf/open/floor/strata/white_cyan3/north, +/area/strata/ag/interior/outpost/med) +"uEM" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"uEU" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"uFb" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) +"uFi" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"uFx" = ( +/obj/structure/closet/bodybag/tarp, +/obj/structure/closet/bodybag/tarp, +/obj/structure/closet/bodybag/tarp, +/obj/structure/surface/rack, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/asphalt/cement/cement2, -/area/strata/ug/interior/jungle/platform/east/scrub) +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"uFC" = ( +/obj/item/stool, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "uFJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"uFR" = ( +/obj/structure/machinery/door/airlock/almayer/medical/colony{ + dir = 8 }, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"uGv" = ( -/obj/structure/bed/nest, -/obj/item/weapon/gun/revolver/spearhead{ - pixel_x = 6; - pixel_y = -4 +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"uFV" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"uGQ" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/plating, -/area/strata/ag/exterior/marsh/crash) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"uGP" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"uHj" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/type71/carbine, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/administration) +"uHq" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/cyan3/west, +/area/strata/ag/interior/outpost/med) +"uHt" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/storage/pill_bottle/spaceacillin, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"uHz" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"uHM" = ( +/obj/structure/closet, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "uHX" = ( /obj/effect/decal/cleanable/cobweb2, /turf/open/floor/carpet, /area/strata/ag/interior/restricted/devroom) -"uIr" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 +"uId" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/interior/landingzone_1) -"uIy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ +/obj/item/weapon/gun/revolver/upp, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"uIo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/machinery/light/small{ +/obj/structure/machinery/door/airlock/almayer/medical/colony{ dir = 8 }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"uIT" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms) -"uIW" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"uIK" = ( +/obj/structure/closet/crate/freezer/rations, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"uJe" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/prop/cash_register/off/open{ - pixel_y = 8 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) +/area/strata/ag/interior/outpost/maint/canteen_e_1) "uJn" = ( /obj/structure/pipes/standard/manifold/fourway/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"uJD" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/stamp, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) +"uJM" = ( +/obj/structure/machinery/iv_drip, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"uKi" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) "uKj" = ( /obj/structure/bed/chair, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"uKC" = ( -/obj/structure/platform_decoration/strata/metal{ - dir = 4 +"uKx" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "gibarm_flesh" }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi) -"uKI" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"uLy" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"uKH" = ( +/obj/structure/machinery/reagentgrinder/industrial, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"uKQ" = ( +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"uLb" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/platform_decoration/strata/metal{ +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/red3/north, +/area/strata/ag/interior/outpost/med) +"uLk" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/omelette, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"uLD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, +/obj/structure/machinery/light/small, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) +/area/strata/ag/interior/nearlz1) "uLK" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating, /area/strata/ag/interior/tcomms) -"uMc" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"uMO" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +"uMb" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/communications, +/turf/open/floor/almayer/plate, +/area/strata/ug/interior/jungle/deep/structures/res) +"uMd" = ( +/obj/effect/landmark/corpsespawner/doctor, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"uMo" = ( +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/north_lz_caves) +"uMG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/security) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "uNi" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/carpet, /area/strata/ag/interior/restricted/devroom) -"uNH" = ( -/obj/structure/prop/almayer/hangar_stencil, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"uNS" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan3/west, -/area/strata/ag/interior/outpost/med) -"uNV" = ( -/obj/structure/holostool, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"uOl" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 +"uNP" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/tcomms) -"uOn" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"uOr" = ( -/obj/structure/machinery/computer/cameras{ +/obj/structure/pipes/standard/manifold/hidden/cyan{ dir = 8 }, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"uOA" = ( -/obj/structure/bed/chair/office/light, -/obj/effect/landmark/survivor_spawner, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"uOS" = ( -/obj/structure/inflatable/popped, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"uOy" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"uPh" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) +"uPD" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "uPE" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 9 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/north_outpost) +"uPM" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "uPR" = ( /obj/item/weapon/gun/pistol/t73, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"uPX" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/cyan1/east, -/area/strata/ug/interior/outpost/jung/dorms/med1) -"uQp" = ( -/obj/structure/machinery/space_heater, -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"uQt" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +"uQe" = ( +/obj/structure/fence, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"uQh" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = -28 }, -/obj/item/tank/emergency_oxygen/engi, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"uQP" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"uRb" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/largecrate/random, +/obj/item/seeds/walkingmushroommycelium, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"uQs" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"uRm" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/obj/structure/machinery/light/small{ - dir = 8 +"uQE" = ( +/obj/structure/xenoautopsy/tank/broken{ + desc = "A broken cryo tank, this must've been where it all began..." }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"uRa" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) +/area/strata/ag/exterior/research_decks) "uRy" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 @@ -30920,16 +30679,27 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"uSd" = ( -/turf/open/floor/strata/multi_tiles, -/area/strata/ug/interior/jungle/platform/east/scrub) -"uSx" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/machinery/camera/autoname{ +"uRY" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) +/turf/open/floor/strata/orange_edge/west, +/area/strata/ag/interior/dorms) +"uSd" = ( +/obj/item/weapon/gun/pistol/t73, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"uSA" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/item/device/megaphone, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/asphalt/cement/cement4, +/area/strata/ug/interior/jungle/deep/minehead) "uSR" = ( /obj/effect/landmark/xeno_hive_spawn, /obj/effect/landmark/ert_spawns/groundside_xeno, @@ -30937,19 +30707,14 @@ /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/tearlake) "uSS" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/landmark/crap_item, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin1) -"uST" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"uSZ" = ( -/obj/item/storage/fancy/cigarettes/lady_finger, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) +/obj/structure/closet/firecloset/full, +/obj/effect/decal/cleanable/blood, +/obj/structure/barricade/wooden{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/bar) "uTt" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 4 @@ -30964,44 +30729,60 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"uVa" = ( +"uUn" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 1; + icon_state = "p_stair_sn_full_cap" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) +"uUB" = ( +/obj/structure/machinery/light/small, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) +"uUI" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/tool/stamp, /obj/item/paper_bin, -/obj/item/device/megaphone, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"uVd" = ( -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/obj/item/device/flashlight, -/turf/open/floor/strata/orange_cover, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/engi/drome) -"uVN" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/south) -"uWj" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" +"uUP" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/corpsespawner/doctor, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"uVw" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 }, -/obj/effect/decal/cleanable/blood, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) -"uWm" = ( +"uVE" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/dorms) +"uVQ" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 + dir = 4 }, -/obj/structure/machinery/power/apc/no_power/north, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/engi) +"uVU" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"uWy" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) "uWG" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -31010,52 +30791,82 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"uWN" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"uWS" = ( -/obj/structure/fence, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) +"uWQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) "uXg" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/south_dorms) -"uXl" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/structures/res) -"uXy" = ( -/obj/structure/bed/roller, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"uXT" = ( -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - dir = 2; - name = "Medical Airlock" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) "uXY" = ( /obj/structure/platform/strata/metal{ dir = 4 }, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) -"uYD" = ( -/obj/structure/bed/chair/office/light{ +"uYb" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/gen/bball) +"uYF" = ( +/obj/structure/machinery/shower{ dir = 1 }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"vaA" = ( -/obj/structure/surface/table/reinforced/prison, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/structure/machinery/door/window/eastright{ + dir = 1 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"uZJ" = ( +/obj/structure/closet/bodybag/tarp/snow, +/obj/structure/closet/bodybag/tarp/snow, +/obj/structure/closet/bodybag/tarp/snow, +/obj/structure/surface/rack{ + layer = 2.5 + }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"vaU" = ( -/turf/open/asphalt/cement/cement2, -/area/strata/ag/exterior/tcomms/tcomms_deck) +/area/strata/ag/interior/tcomms) +"vai" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"val" = ( +/obj/structure/bed/chair, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) +"vaz" = ( +/obj/item/stack/rods, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"vaB" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"vaO" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/obj/item/weapon/gun/shotgun/type23/riot, +/obj/item/weapon/gun/shotgun/type23/riot, +/obj/item/weapon/gun/shotgun/type23/riot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) "vaW" = ( /obj/structure/platform_decoration/strata, /turf/open/auto_turf/ice/layer1, @@ -31064,45 +30875,28 @@ /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/cabin_area) -"vbo" = ( -/obj/structure/barricade/wooden{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "vbw" = ( /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"vbP" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/wy_mre, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"vcq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 +"vcz" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/paths/adminext) +"vcP" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" }, -/obj/structure/barricade/handrail/strata{ +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/tcomms) +"vdh" = ( +/obj/structure/bed/chair/office/light{ dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"vcz" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "vdi" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 10 @@ -31111,61 +30905,33 @@ /area/strata/ag/exterior/paths/north_outpost) "vdk" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/asphalt/cement/cement3, -/area/strata/ag/interior/landingzone_1) -"vdB" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"vdN" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"veA" = ( -/obj/structure/machinery/bioprinter, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"veC" = ( /obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"veZ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/barricade/handrail/strata{ dir = 1 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"vfi" = ( -/obj/structure/machinery/cm_vending/sorted/boozeomat, -/obj/structure/machinery/camera/autoname{ +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"vfx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"vfn" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/research_decks/security) -"vfK" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, /turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) +/area/strata/ag/interior/outpost/engi/drome) "vgb" = ( /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/interior/restricted) +"vgf" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) "vgn" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/stairs/perspective{ @@ -31175,135 +30941,131 @@ }, /turf/open/auto_turf/snow/brown_base/layer3, /area/strata/ag/exterior/paths/adminext) -"vgH" = ( -/obj/structure/curtain/medical, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"vgK" = ( -/obj/structure/reagent_dispensers, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) "vgW" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"vgX" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"vgY" = ( -/obj/structure/machinery/shower{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/machinery/door/window/eastright{ +"vhf" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) +"vht" = ( +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/med2) -"vho" = ( -/obj/item/stool, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/bar) -"vhu" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"vhv" = ( -/obj/structure/surface/rack, -/obj/item/storage/belt/knifepouch, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"vhC" = ( +/obj/structure/machinery/photocopier, +/obj/structure/machinery/power/apc/power/north, /turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi/drome) -"vhF" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) +/area/strata/ug/interior/outpost/jung/dorms/admin1) "vhG" = ( /obj/effect/landmark/monkey_spawn, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"vhZ" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"vid" = ( -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"vio" = ( -/obj/structure/machinery/camera/autoname{ - dir = 8 +"vhH" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"vhT" = ( +/obj/structure/machinery/washing_machine, +/obj/item/clothing/suit/bluetag, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"vhV" = ( +/obj/structure/closet/basketball, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"vhW" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 }, -/turf/open/floor/strata/purp2, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/engi) +"vie" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) +"vir" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) "vit" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/west_engi) +"viv" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/east_carp) "viA" = ( /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"viY" = ( -/obj/structure/inflatable/door, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"viZ" = ( -/obj/item/stack/sheet/wood, -/obj/effect/decal/cleanable/blood/oil, +"viM" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/surface/rack, +/obj/item/device/flashlight, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"vkp" = ( -/turf/closed/shuttle/ert{ - icon_state = "upp9" +/area/strata/ag/exterior/research_decks) +"vjp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, -/area/strata/ag/exterior/marsh/crash) -"vkt" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/cdeathalarm_kit, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"vkL" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms) -"vkM" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) -"vkX" = ( /obj/structure/barricade/handrail/strata{ - dir = 4 + dir = 1 }, -/obj/effect/spawner/random/tool, -/turf/open/asphalt/cement/cement1, -/area/strata/ug/interior/jungle/deep/minehead) -"vlf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/gen/bball) +"vjx" = ( /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin3) -"vll" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"vkn" = ( +/obj/effect/decal/cleanable/blood{ + layer = 3 + }, +/obj/item/weapon/gun/pistol/holdout, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"vkp" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp9" + }, +/area/strata/ag/exterior/marsh/crash) +"vky" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) "vlm" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/outpost/med) -"vlA" = ( -/obj/structure/machinery/fuelcell_recycler/full, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) +"vly" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) "vlH" = ( /obj/structure/machinery/weather_siren{ pixel_x = 10; @@ -31311,40 +31073,37 @@ }, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/mountain) -"vlY" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/condiment/saltshaker, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"vmV" = ( -/obj/structure/closet/lasertag/red, +"vma" = ( +/obj/structure/machinery/washing_machine, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"vmZ" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/area/strata/ag/interior/outpost/canteen/personal_storage) +"vmp" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/admin) -"vnc" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/landingzone_2) +"vmC" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/turf/open/floor/strata/white_cyan4/north, +/turf/open/floor/strata/floor3/east, /area/strata/ag/interior/outpost/med) +"vnp" = ( +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) "vns" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"vnJ" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) "vnV" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -31356,10 +31115,16 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"vou" = ( -/obj/structure/closet/crate/freezer/rations, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/canteen/bar) +"voo" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) "vox" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -31369,22 +31134,6 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"voC" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"voL" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "vpi" = ( /obj/structure/barricade/wooden{ dir = 8 @@ -31392,72 +31141,108 @@ /obj/structure/filingcabinet, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"vpv" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan3/north, +"vpp" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/white_cyan3/northeast, /area/strata/ag/interior/outpost/med) -"vpV" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/machinery/light/small{ +"vpw" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"vqp" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"vqw" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"vqq" = ( +/obj/item/stack/sandbags, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"vqv" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "vqx" = ( /obj/effect/landmark/hunter_secondary, /turf/open/floor/plating, /area/strata/ag/exterior/landingzone_2) -"vqJ" = ( -/obj/structure/bed/chair/comfy{ +"vre" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"vrE" = ( +/obj/structure/fence, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/paths/adminext) +"vrP" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/barricade/snow{ dir = 8 }, -/obj/structure/machinery/light/small, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"vqN" = ( -/obj/structure/largecrate/random, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"vrj" = ( -/obj/structure/surface/rack, -/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) -"vrr" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"vsc" = ( +"vst" = ( +/obj/structure/prop/turbine, +/obj/structure/prop/turbine_extras/border, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"vsI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"vsP" = ( +/obj/structure/machinery/door/airlock/prison{ + dir = 1; + name = "Reinforced Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"vsQ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"vte" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/engineering/colony, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/tcomms) -"vsf" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +"vtu" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/strata/cyan3/west, -/area/strata/ag/interior/outpost/med) -"vsT" = ( -/obj/item/reagent_container/food/drinks/shaker, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) +/obj/item/tool/kitchen/utensil/pfork, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"vtG" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/machinery/door/window/eastright{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin1) "vtM" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -31466,17 +31251,39 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/interior/research_decks/security) -"vuc" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) -"vuo" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) +"vup" = ( +/obj/structure/machinery/power/monitor{ + name = "Main Power Grid Monitoring" + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"vux" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "vuJ" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_engi) +"vuU" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/pistol/t73, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"vuY" = ( +/obj/structure/bed/nest, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"vvd" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xtracks" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/canteen) "vvh" = ( /obj/effect/particle_effect/steam, /obj/effect/blocker/sorokyne_cold_water, @@ -31489,15 +31296,24 @@ /obj/structure/largecrate/random/barrel/blue, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_engi) +"vvx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/engi) "vvV" = ( /obj/effect/decal/cleanable/dirt, /obj/item/device/camera, /turf/open/floor/carpet, /area/strata/ag/interior/restricted/devroom) -"vwj" = ( -/obj/item/reagent_container/food/drinks/cans/beer, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) +"vws" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "vwC" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/disposalpipe/segment, @@ -31522,62 +31338,137 @@ "vxd" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/tcomms) -"vxz" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"vxQ" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/white_cyan2, -/area/strata/ag/interior/outpost/med) -"vxW" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/engi) -"vye" = ( -/obj/structure/surface/rack{ - layer = 2.5 +"vxm" = ( +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/almayer/test_floor5, +/area/strata/ug/interior/jungle/deep/structures/res) +"vxB" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/obj/item/tool/kitchen/utensil/pknife, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) +"vxE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata, -/area/strata/ag/interior/tcomms) -"vyw" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"vyJ" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; icon_state = "p_stair_ew_full_cap"; layer = 3.5 }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"vye" = ( +/obj/structure/surface/rack{ + layer = 2.5 + }, +/turf/open/floor/strata, +/area/strata/ag/interior/tcomms) +"vyp" = ( +/obj/structure/xenoautopsy/tank/larva, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms) +"vyv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/tcomms) -"vyS" = ( -/obj/item/stack/rods, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) -"vzl" = ( -/obj/structure/computerframe, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"vyO" = ( +/obj/structure/machinery/power/apc/power/north, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"vzi" = ( +/obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"vzp" = ( +/obj/structure/machinery/computer/cameras{ dir = 4 }, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"vzv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/machinery/computer/communications, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"vAg" = ( +/area/strata/ug/interior/outpost/jung/dorms/med2) +"vzI" = ( +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/landingzone_2) +"vzL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/cheesyfries, +/obj/item/reagent_container/food/snacks/monkeyburger{ + pixel_x = -9; + pixel_y = 12 + }, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 6; + pixel_y = 19 + }, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms/maintenance) +"vzQ" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/exterior/research_decks) +"vAc" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"vAe" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"vAg" = ( +/obj/structure/dispenser, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) +/area/strata/ag/interior/tcomms) +"vAi" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) "vAo" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/masks, +/obj/item/storage/box/masks, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"vAt" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"vAH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms) +"vAV" = ( +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/almayer/test_floor5, +/turf/open/floor/strata/red1, /area/strata/ug/interior/jungle/deep/structures/res) "vBi" = ( /obj/structure/flora/bush/ausbushes/grassybush{ @@ -31585,11 +31476,9 @@ }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"vBn" = ( -/obj/structure/fence, -/obj/structure/fence, -/turf/open/asphalt/cement/cement9, -/area/strata/ag/exterior/tcomms/tcomms_deck) +"vBo" = ( +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) "vBs" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -31598,13 +31487,16 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi) -"vBR" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/camera/autoname{ +"vBy" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"vBQ" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) "vCl" = ( /obj/structure/barricade/handrail/strata{ layer = 3.1 @@ -31616,6 +31508,16 @@ /obj/structure/platform/strata/metal, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) +"vCq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + dir = 1; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/gen/foyer) "vCD" = ( /obj/structure/bed/sofa/vert/grey/top, /obj/structure/barricade/handrail/strata{ @@ -31623,168 +31525,152 @@ }, /turf/open/floor/interior/plastic, /area/strata/ag/interior/outpost/canteen) -"vCH" = ( -/obj/structure/machinery/light/small{ +"vCI" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"vCY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/med) +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "vDr" = ( /turf/closed/shuttle/ert{ icon_state = "leftengine_1"; opacity = 0 }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"vDy" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"vDQ" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 +"vDH" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement12, +/area/strata/ug/interior/jungle/platform/east/scrub) +"vDX" = ( +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) +"vEg" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) -"vEb" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin1) +"vEm" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) "vEp" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/structures/res) -"vEw" = ( -/turf/closed/shuttle/ert{ - icon_state = "upp1" - }, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"vEW" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"vEu" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms/canteen) -"vEZ" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"vFc" = ( /obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood{ - icon_state = "xtracks" - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"vFh" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/platebot, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"vFX" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi) -"vGj" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen) -"vGl" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/engi/drome) -"vGx" = ( +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"vEw" = ( /turf/closed/shuttle/ert{ - icon_state = "upp2" + icon_state = "upp1" }, /area/strata/ag/interior/outpost/engi/drome/shuttle) -"vGF" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms/south) -"vGK" = ( +"vEH" = ( +/obj/structure/surface/rack, +/obj/item/tank/emergency_oxygen/engi, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"vGS" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" - }, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"vGW" = ( +/area/strata/ag/interior/outpost/gen/bball/nest) +"vFB" = ( +/obj/structure/filingcabinet, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"vFN" = ( /obj/effect/decal/cleanable/blood, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/east_engi) -"vGZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/barricade/handrail/strata{ - dir = 1 +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"vHe" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"vHO" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"vFT" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/slug, +/obj/item/ammo_magazine/handful/shotgun/heavy/slug, +/obj/item/weapon/gun/shotgun/type23/riot, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"vGx" = ( +/turf/closed/shuttle/ert{ + icon_state = "upp2" }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"vHR" = ( +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"vGI" = ( /obj/structure/machinery/light/small{ - dir = 1 + dir = 1; + pixel_y = 20 }, +/obj/structure/closet/emcloset, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"vGW" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/east_engi) +"vHa" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"vHh" = ( +/obj/structure/machinery/vending/security/upp, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"vHj" = ( +/turf/open/floor/almayer/test_floor5, +/area/strata/ug/interior/jungle/deep/structures/res) +"vHL" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 6 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"vIb" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"vIu" = ( -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"vIH" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/landingzone_1) -"vIM" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"vIO" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/engi/drome) +"vHS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"vJb" = ( -/obj/structure/platform/strata/metal{ - dir = 1 +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"vIF" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/item/clothing/gloves/latex, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"vIK" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) +"vIS" = ( +/obj/structure/surface/rack, +/obj/item/device/radio, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "vJj" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/shuttle/dropship/flight/lz2, /turf/open/floor/plating, /area/strata/ag/exterior/landingzone_2) +"vJt" = ( +/obj/structure/machinery/space_heater, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/engi) "vJx" = ( /turf/closed/shuttle/ert{ icon_state = "upp3" @@ -31794,151 +31680,128 @@ /obj/effect/landmark/good_item, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"vJC" = ( -/obj/structure/inflatable/door, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"vJI" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ug/interior/jungle/deep/structures/engi) -"vKz" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"vKC" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/exterior/marsh) -"vKG" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"vKT" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"vLf" = ( -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/gen/foyer) -"vLo" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) -"vLz" = ( -/obj/item/stool, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/security) -"vLA" = ( -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"vMn" = ( -/obj/structure/dropship_equipment/mg_holder, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"vNe" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"vNi" = ( +"vJS" = ( /obj/structure/bed/chair, /obj/structure/machinery/power/apc/no_power/north, /turf/open/floor/strata/floor3, /area/strata/ag/interior/dorms/south) -"vNl" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"vJT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"vNm" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform/strata/metal{ - dir = 8 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"vNv" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/admin) +"vJW" = ( +/obj/structure/machinery/computer/crew, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"vNJ" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, +/area/strata/ug/interior/jungle/deep/structures/res) +"vKf" = ( +/obj/structure/surface/rack, +/obj/item/spacecash/c500, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) -"vNP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/tool/stamp, -/obj/item/paper_bin, -/obj/structure/pipes/standard/manifold/hidden/cyan, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"vNW" = ( -/obj/structure/closet/secure_closet/security/soro, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"vOa" = ( +/area/strata/ug/interior/jungle/deep/structures/res) +"vKp" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"vLq" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/almayer/plate, +/area/strata/ag/exterior/marsh/crash) +"vMg" = ( +/obj/structure/filingcabinet, /obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"vMF" = ( +/obj/structure/bed/roller, +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) +"vMJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"vOd" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/cups, -/obj/item/storage/box/cups, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"vMP" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) +/area/strata/ag/interior/outpost/canteen/personal_storage) +"vNi" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) +"vNq" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"vNs" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/weapon/gun/shotgun/type23/riot, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) +"vNw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) "vOf" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_1"; opacity = 0 }, /area/strata/ag/interior/outpost/engi/drome/shuttle) +"vOg" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/jungle/deep/structures/res) "vOi" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, /turf/open/floor/strata, /area/strata/ag/interior/outpost/engi/drome) +"vOl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/gen/foyer) "vOs" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/outpost/engi/drome) +"vOx" = ( +/obj/structure/platform/strata/metal{ + dir = 8 + }, +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) +"vOX" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) "vPi" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/research_decks/security) +"vPz" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "vPQ" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"vPS" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/item/weapon/gun/pistol/holdout, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) -"vPV" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) "vPY" = ( /obj/effect/landmark/corpsespawner/upp, /turf/open/floor/strata, @@ -31946,169 +31809,198 @@ "vQo" = ( /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/platform/east/scrub) +"vQr" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/interior/landingzone_1) "vQs" = ( /turf/closed/shuttle/ert{ icon_state = "upp_rightengine" }, /area/strata/ag/exterior/marsh/crash) -"vQy" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"vQx" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"vQX" = ( -/obj/structure/machinery/sensortower{ - pixel_x = -8 +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/platform/east/scrub) -"vRm" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"vQA" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/window/reinforced/tinted{ +/obj/structure/machinery/computer/cameras{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/barricade/handrail/strata{ dir = 4 }, -/obj/item/tool/pen/blue, /turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/dorms) -"vRs" = ( -/obj/structure/machinery/space_heater, -/obj/structure/platform/strata/metal{ - dir = 1 +/area/strata/ag/interior/outpost/engi/drome) +"vQG" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"vSW" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/crap_item, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"vRa" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/strata_decals/grime/grime4{ dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi/drome) -"vTd" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/strata/white_cyan2/west, +/turf/open/floor/strata/orange_edge/west, /area/strata/ag/interior/dorms) -"vTC" = ( -/obj/structure/barricade/handrail/strata, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"vUv" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, +"vRV" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"vSe" = ( +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"vSp" = ( +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor5, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"vSz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1, /area/strata/ag/interior/dorms/maintenance) -"vUD" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/aspen, -/obj/structure/bed/chair{ +"vSG" = ( +/obj/structure/filingcabinet, +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"vUH" = ( -/turf/open/floor/strata/multi_tiles/west, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"vTr" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/alarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/administration) -"vUY" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) +"vTF" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/interior/landingzone_1) +"vUP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"vUZ" = ( +/obj/structure/largecrate/random, +/obj/item/storage/backpack/lightpack, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"vVs" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/asphalt/cement/cement3, +/area/strata/ug/interior/jungle/platform/east/scrub) +"vVA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) "vVK" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/minehead) -"vVL" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"vWt" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/structure/machinery/door/airlock/almayer/medical/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/med) -"vWQ" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"vWf" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/stack/sheet/wood, +/obj/item/stack/sandbags, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen) -"vWZ" = ( -/obj/structure/machinery/light/small{ +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"vWu" = ( +/obj/structure/window/reinforced/tinted{ dir = 4 }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +/obj/structure/closet/secure_closet/personal, +/obj/item/lightstick, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"vWv" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/utensil/pspoon, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"vXs" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/security) "vXt" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/southresearch) -"vYd" = ( -/obj/item/stool, -/obj/structure/machinery/light/small, +"vXz" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen/bar) +"vXE" = ( +/obj/structure/barricade/handrail/strata, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/structures/res) +"vXR" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/area/strata/ag/interior/outpost/gen/bball) "vYf" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) -"vYo" = ( -/turf/open/asphalt/cement/cement15, -/area/strata/ag/exterior/research_decks) -"vYp" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - name = "\improper Chunkeez Diner door" - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms/maintenance) -"vYA" = ( -/obj/structure/machinery/power/apc/power/north, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/minehead/ruins) -"vZh" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/tool/pen/blue, -/obj/item/storage/box/gloves{ - pixel_x = 7; - pixel_y = 14 +"vYE" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"vZl" = ( -/obj/effect/landmark/corpsespawner/russian, -/obj/structure/bed/roller, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"vZr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) +"vYL" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) -"vZu" = ( -/obj/effect/landmark/monkey_spawn, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) -"vZC" = ( -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/plating/warnplate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"vZQ" = ( -/obj/effect/decal/cleanable/blood, -/obj/effect/decal/cleanable/blood/gibs/core, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"vZG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "vZT" = ( /turf/open/gm/coast/beachcorner2/south_east, /area/strata/ug/interior/jungle/deep/south_engi) -"waa" = ( -/obj/structure/machinery/light/small, -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) +"vZX" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/med) "wab" = ( /obj/structure/machinery/space_heater, /obj/structure/platform/strata/metal{ @@ -32116,13 +32008,42 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/sec2) -"waQ" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" +"waj" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"wak" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/peppermill, +/obj/structure/bed/chair, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"wam" = ( +/obj/item/tool/pen/blue, +/obj/structure/bed/chair/office/light, +/turf/open/floor/strata/white_cyan2, +/area/strata/ag/interior/outpost/med) +"was" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"waH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/research_decks) "waZ" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -32133,32 +32054,51 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"wcf" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"wbR" = ( +/obj/structure/machinery/door/airlock/almayer/security/colony{ + dir = 8 }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/research_decks) -"wcq" = ( -/obj/structure/xenoautopsy/tank/broken{ - desc = "A broken cryo tank, this must've been where it all began..." +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/security) +"wch" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/outpost/jung/dorms/admin4) +"wcl" = ( +/obj/structure/platform/strata/metal{ + dir = 8 }, -/turf/open/floor/strata/cyan1/east, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/paths/adminext) +"wcQ" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/tool/match, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/dorms) -"wds" = ( -/obj/structure/barricade/handrail/strata{ +"wcW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/stack/catwalk, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/tcomms) +"wdk" = ( +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; dir = 1 }, -/obj/item/device/megaphone, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/asphalt/cement/cement4, -/area/strata/ug/interior/jungle/deep/minehead) -"wdJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/condiment/peppermill, -/obj/effect/decal/cleanable/blood/gibs/down, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/shed_five_caves) +"wdz" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"wdF" = ( +/turf/open/asphalt/cement/cement14, +/area/strata/ag/exterior/landingzone_2) +"wdH" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/maintenance) "wdN" = ( /obj/structure/platform/strata{ dir = 4 @@ -32166,57 +32106,46 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/interior/restricted) -"wee" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/south) -"wek" = ( -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"wen" = ( +"wdS" = ( /obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" + dir = 8 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"weo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/fishfingers, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"wet" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"weE" = ( -/obj/structure/window/framed/strata/reinforced, /turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) -"weJ" = ( -/obj/structure/machinery/light/small{ +/area/strata/ag/exterior/vanyard) +"wer" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/toolbox, +/obj/structure/window/reinforced/tinted{ dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/administration) -"weR" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 +/obj/structure/window/reinforced/tinted, +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"weB" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + dir = 8; + icon_state = "p_stair_full" }, -/turf/open/floor/almayer/plate, -/area/strata/ag/interior/outpost/engi/drome/shuttle) -"weS" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/curtain/open/shower, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/exterior/research_decks) +"weL" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"wfn" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood{ + icon_state = "xtracks" + }, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) "wfv" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; @@ -32225,22 +32154,50 @@ }, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/exterior/paths/southresearch) -"wfC" = ( -/obj/structure/machinery/power/port_gen/pacman/super, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) +"wfw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/faxmachine, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "wfE" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/interior/tatami, /area/strata/ag/interior/restricted) -"wfN" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/strata/floor3, +"wfO" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"wgb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/engi/drome) +"wgd" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/research_decks/security) +"wgj" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/platform_decoration/strata/metal{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"wgn" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null + }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/admin) -"wga" = ( -/obj/item/tool/crowbar/red, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) "wgB" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, @@ -32250,30 +32207,32 @@ /obj/item/tank/anesthetic, /turf/open/floor/strata, /area/strata/ag/interior/mountain) -"wgR" = ( -/obj/effect/decal/strata_decals/grime/grime3{ - dir = 8 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"wgV" = ( -/obj/item/stool, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 +"whx" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"whw" = ( -/obj/structure/closet/coffin, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"whJ" = ( +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/engi) +"whA" = ( +/obj/structure/largecrate/random, /turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/paths/north_outpost) -"wie" = ( -/obj/item/stool, -/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/exterior/research_decks) +"whF" = ( +/obj/structure/closet/secure_closet/personal, +/turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/canteen/personal_storage) +"whK" = ( +/turf/open/asphalt/cement/cement1, +/area/strata/ug/interior/jungle/platform/east/scrub) +"whN" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/landingzone_1) "wij" = ( /obj/structure/flora/bush/ausbushes/grassybush, /turf/open/auto_turf/strata_grass/layer1, @@ -32282,148 +32241,125 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/tcomms) -"wis" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"wiv" = ( -/obj/effect/decal/cleanable/blood/splatter, -/obj/item/stack/rods, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"wiy" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/south) -"wiI" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +"wix" = ( +/obj/structure/machinery/scoreboard{ + id = "basketball"; + pixel_y = 30 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"wiJ" = ( -/obj/structure/machinery/light/small, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"wiZ" = ( +/obj/effect/decal/cleanable/blood{ + dir = 4; + icon_state = "gib6" }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"wjn" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/storage/pill_bottle/spaceacillin, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms) "wjv" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/marsh/center) +"wjV" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/core, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"wkf" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/turf/open/asphalt/cement/cement15, +/area/strata/ug/interior/jungle/platform/east/scrub) "wkv" = ( /obj/structure/flora/bush/ausbushes/genericbush, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"wkB" = ( +"wkE" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"wkW" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/gen/bball) +"wlL" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"wmG" = ( +/obj/item/storage/box/ids, /obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/souto/grape, -/turf/open/floor/strata/floor3, +/obj/item/storage/box/ids, +/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) -"wkZ" = ( -/obj/structure/fence, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"wlj" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/engi/drome) -"wlF" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/asphalt/cement/cement2, -/area/strata/ug/interior/jungle/deep/structures/res) -"wlS" = ( -/obj/structure/fence, -/turf/open/asphalt/cement/cement4, -/area/strata/ug/interior/jungle/deep/structures/res) -"wmf" = ( -/obj/item/stack/sandbags, -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, +"wmS" = ( +/obj/structure/bed/chair/comfy, /turf/open/floor/strata/white_cyan1/east, /area/strata/ag/interior/outpost/canteen) -"wmO" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/toy/deck, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) "wmZ" = ( /turf/closed/wall/strata_ice/dirty, /area/strata/ag/interior/outpost/engi) -"wna" = ( -/obj/structure/closet/secure_closet/personal, -/obj/structure/machinery/alarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"wnd" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_edge/east, -/area/strata/ag/interior/dorms) "wne" = ( /turf/open/gm/coast/beachcorner2/north_east, /area/strata/ug/interior/jungle/deep/east_dorms) -"wnm" = ( -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/vanyard) -"wnz" = ( -/obj/item/storage/toolbox/electrical, -/obj/item/storage/toolbox/electrical, -/obj/structure/surface/rack, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"wnC" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"woa" = ( -/obj/structure/window/framed/strata, +"wnf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, /turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi/drome) -"woc" = ( -/obj/structure/pipes/vents/pump{ +"wnp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) +"wnI" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"wnN" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi/drome) "wod" = ( /obj/item/tank/emergency_oxygen/engi, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"wov" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"woA" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ - dir = 2 +"woL" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"woO" = ( -/obj/structure/kitchenspike, -/obj/structure/machinery/light/small{ +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 1 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ dir = 4 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/dorms/canteen) +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/west_engi) "woP" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -32432,37 +32368,27 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"woT" = ( -/obj/structure/bookcase, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/administration) -"wpl" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 +"woR" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"wpH" = ( -/obj/structure/machinery/faxmachine, -/obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"wpJ" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/security) +"woX" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/prison/darkyellowfull2, /area/strata/ag/exterior/research_decks) -"wqe" = ( -/obj/structure/bed/chair{ +"wph" = ( +/obj/structure/machinery/light/small{ dir = 8 }, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"wpD" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/engi/drome) -"wqk" = ( -/obj/structure/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) "wqm" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -32471,24 +32397,17 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/marsh/center) -"wqp" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"wqN" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 - }, +"wqs" = ( +/obj/structure/bed/nest, +/obj/effect/landmark/corpsespawner/upp, /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) -"wrf" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/barricade/handrail/strata{ - dir = 8 +/area/strata/ug/interior/jungle/deep/minehead) +"wrc" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/maintenance) "wrp" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/interior/dorms/flight_control) @@ -32496,40 +32415,17 @@ /obj/structure/flora/grass/tallgrass/ice/corner, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh/center) -"wrM" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/effect/decal/cleanable/blood/gibs/limb, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/platform/east/scrub) -"wrR" = ( -/obj/structure/surface/rack, -/obj/item/stack/sheet/glass, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"wrU" = ( -/obj/structure/window/framed/strata/reinforced, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/dorms/hive) -"wrV" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/platform/east/scrub) -"wsa" = ( -/obj/structure/machinery/door_control{ - id = "or01"; - name = "Surgery Door Release"; - normaldoorcontrol = 1; - pixel_x = 23 +"wrZ" = ( +/obj/structure/barricade/wooden{ + dir = 1 }, -/obj/structure/filingcabinet, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 2; + name = "\improper Airlock" }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/bar) "wsh" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata/metal{ @@ -32537,22 +32433,39 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) +"wsq" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) "wsr" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, +/obj/structure/surface/rack, +/obj/item/book/manual/engineering_guide, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"wsw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/blue3/west, +/area/strata/ag/interior/outpost/admin) +"wsE" = ( +/turf/open/asphalt/cement/cement3, +/area/strata/ag/exterior/landingzone_2) +"wsH" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/administration) +"wta" = ( /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"wsF" = ( -/obj/item/stack/rods, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/engi/drome) -"wsK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/box/ids, -/obj/item/clothing/glasses/thermal/syndi, -/turf/open/floor/strata/purp1, -/area/strata/ug/interior/jungle/deep/structures/engi) +/area/strata/ag/interior/dorms) +"wtk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ + dir = 8; + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/south) "wto" = ( /obj/structure/machinery/door/airlock/almayer/security/colony{ dir = 2; @@ -32560,135 +32473,146 @@ }, /turf/open/floor/strata, /area/strata/ag/interior/outpost/security) -"wuz" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) "wuI" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/interior/jungle/deep/east_carp) -"wuQ" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb, -/obj/item/ammo_magazine/shotgun/slugs{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_x = 6; - pixel_y = -4 +"wvb" = ( +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/research_decks) +"wvi" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e" }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"wvj" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/flight_control) -"wvo" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/attachments, -/obj/structure/barricade/handrail/strata{ +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"wvl" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/cubancarp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"wvn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"wvp" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/item/stack/sheet/metal/medium_stack, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) +/area/strata/ag/interior/dorms/south) "wvt" = ( /obj/structure/blocker/forcefield/multitile_vehicles, /turf/closed/wall/strata_ice/jungle, /area/strata/ug/interior/jungle/deep/east_dorms) +"wvE" = ( +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) "wvN" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) -"wwb" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"wwd" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/obj/structure/machinery/light/small, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"wwr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"wvU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/flour, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/outpost/canteen/bar) +"wwe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3, +/area/strata/ag/interior/outpost/med) +"www" = ( +/obj/structure/machinery/camera/autoname{ dir = 4 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/med) -"wxt" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/asphalt/cement/cement1, -/area/strata/ug/interior/jungle/platform/east/scrub) -"wxS" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"wxD" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/suit/radiation, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"wxE" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"wxN" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/recharge_station, /turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"wyK" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/bottle/sake, +/area/strata/ag/interior/tcomms) +"wxO" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"wxS" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/engi) +"wyg" = ( +/obj/item/stack/rods, +/obj/structure/inflatable/door, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball) +"wyj" = ( +/obj/structure/surface/rack, /obj/structure/machinery/light/small{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/maint/canteen_e_1) +"wyn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) +"wyG" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"wzm" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"wyY" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 }, -/obj/effect/landmark/xeno_spawn, /turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"wAA" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" +/area/strata/ag/interior/outpost/security) +"wzA" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/med2) +"wzL" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/marsh/river) +"wzS" = ( +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "wAG" = ( /obj/structure/fence, /obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata, /area/strata/ag/interior/tcomms) -"wAM" = ( -/obj/structure/machinery/light/small{ +"wBj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/prison/darkyellowfull2, +/obj/structure/inflatable/door, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/exterior/research_decks) -"wAY" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/orange_tile, -/area/strata/ag/interior/dorms) -"wBh" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, +"wBF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"wBs" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/admin) "wBI" = ( /obj/structure/bed{ @@ -32699,95 +32623,61 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med2) -"wBJ" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/snacks/flour, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/outpost/canteen/bar) -"wBX" = ( -/obj/structure/machinery/optable, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/med) -"wCb" = ( -/obj/structure/window/reinforced/tinted{ - dir = 4 +"wBL" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access = null }, -/obj/structure/closet/secure_closet/personal, -/obj/item/lightstick, -/obj/item/lightstick, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"wCd" = ( -/obj/item/stack/catwalk, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/explosive/grenade/custom/cleaner, +/obj/item/storage/pill_bottle/bicaridine/skillless, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"wCf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/device/flashlight/lamp, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"wCk" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2, /area/strata/ag/interior/outpost/med) -"wCl" = ( -/obj/structure/bed/chair, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"wCt" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"wCC" = ( +"wBQ" = ( +/obj/structure/machinery/chem_dispenser/soda/beer, /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"wBW" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"wCF" = ( +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/outpost/gen/foyer) +"wCj" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/research_decks/security) +"wCm" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 8; - icon_state = "commb" - }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"wCH" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 - }, +/obj/structure/machinery/faxmachine, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"wCo" = ( +/obj/structure/barricade/snow, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"wCU" = ( -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"wDh" = ( +/area/strata/ag/exterior/paths/cabin_area) +"wCS" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"wDw" = ( -/obj/structure/bed/chair/office/light{ dir = 4 }, /turf/open/floor/strata/fake_wood, /area/strata/ag/interior/administration) +"wDb" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/obj/structure/platform_decoration/strata/metal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"wDp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/stack/cable_coil/blue, +/obj/item/stack/cable_coil/blue, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/engi/drome) +"wDv" = ( +/turf/open/floor/strata/floor3, +/area/strata/ug/interior/jungle/deep/minehead) "wDF" = ( /obj/structure/machinery/light/small, /obj/effect/decal/cleanable/blood, @@ -32797,6 +32687,12 @@ /obj/structure/flora/grass/tallgrass/jungle, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) +"wEm" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "wEo" = ( /obj/structure/bed{ icon_state = "abed" @@ -32804,21 +32700,29 @@ /obj/effect/landmark/good_item, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"wEu" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/asphalt/cement/cement9, -/area/strata/ug/interior/jungle/platform/east/scrub) "wEE" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 4 +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/condiment/peppermill, +/obj/effect/decal/cleanable/blood/gibs/down, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"wEG" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"wEN" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"wEP" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/device/flashlight/lamp, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, /turf/open/floor/strata/blue1, /area/strata/ag/interior/outpost/admin) "wEU" = ( @@ -32826,28 +32730,41 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"wEX" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"wFz" = ( -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/tcomms/tcomms_deck) +"wFy" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_container/food/condiment/saltshaker, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "wFG" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_engi) -"wFW" = ( +"wFL" = ( +/obj/item/stack/sandbags/large_stack, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"wFX" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) +"wGa" = ( +/obj/structure/curtain/medical, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/outpost/jung/dorms/sec1) +"wGl" = ( /obj/structure/machinery/light/small{ dir = 1; pixel_y = 20 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"wFY" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/south) -"wGg" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/minehead/ruins) +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) "wGm" = ( /obj/structure/fence, /turf/open/floor/strata, @@ -32855,30 +32772,12 @@ "wGn" = ( /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/south_engi) -"wGo" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/effect/spawner/random/powercell, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/canteen) "wGp" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/marsh/crash) "wGx" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms/canteen) -"wGK" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/survivor_spawner, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) "wGS" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 @@ -32886,205 +32785,180 @@ /obj/effect/blocker/sorokyne_cold_water, /turf/open/gm/river, /area/strata/ag/exterior/marsh) +"wHa" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/dorms) "wHg" = ( /obj/structure/filingcabinet, /obj/item/pamphlet/skill/medical, /turf/open/floor/strata, /area/strata/ag/interior/administration) -"wHm" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) -"wHQ" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"wHn" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/dorms/south) +"wHC" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/surface/rack, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"wHP" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/res) "wHW" = ( /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/east_engi) -"wHX" = ( -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"wIH" = ( +"wID" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"wIE" = ( /obj/structure/surface/table/reinforced/prison, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/research_decks/security) -"wIN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"wJz" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/machinery/microwave, +/obj/structure/platform/strata/metal{ + dir = 1 }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) +"wJU" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/item/reagent_container/food/drinks/cans/waterbottle, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"wKJ" = ( /obj/structure/stairs/perspective{ color = "#6e6e6e"; dir = 8; - icon_state = "p_stair_sn_full_cap" + icon_state = "p_stair_full" }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"wKS" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi/drome) -"wJD" = ( -/obj/structure/machinery/vending/cigarette/colony, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"wJG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"wJP" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ +/area/strata/ag/interior/dorms) +"wLd" = ( +/obj/structure/bed/chair, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"wLg" = ( +/obj/structure/machinery/washing_machine, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/gen/bball) +"wLp" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_ew_full_cap"; + layer = 3.5 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen) +"wLv" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/auto_turf/strata_grass/layer1, +/area/strata/ug/interior/jungle/deep/east_dorms) +"wLO" = ( +/obj/structure/surface/rack, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"wLV" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/barricade/handrail/strata{ +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"wMa" = ( +/obj/structure/pipes/vents/pump{ dir = 4 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"wKe" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N" +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"wMh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/obj/structure/barricade/handrail/strata{ - dir = 1 +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/gen/bball) -"wKl" = ( -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"wKv" = ( -/obj/structure/machinery/computer/crew, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) -"wLi" = ( -/obj/structure/bedsheetbin, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"wLs" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"wLv" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/auto_turf/strata_grass/layer1, -/area/strata/ug/interior/jungle/deep/east_dorms) -"wMi" = ( -/obj/item/stack/rods, -/obj/effect/decal/cleanable/blood/gibs/core, -/obj/structure/blocker/forcefield/multitile_vehicles, +/area/strata/ag/interior/dorms/south) +"wMp" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"wMo" = ( -/obj/structure/machinery/space_heater, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/engi) -"wMs" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/guestpass, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) +/area/strata/ag/interior/outpost/canteen) "wMy" = ( /obj/structure/flora/grass/tallgrass/jungle/corner{ dir = 6 }, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"wME" = ( -/obj/structure/coatrack, -/obj/item/clothing/suit/armor/bulletproof, +"wMF" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"wNo" = ( +/obj/structure/filingcabinet, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"wMG" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"wMI" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/engi) -"wMN" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"wNp" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - req_one_access = null - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) +/area/strata/ag/interior/dorms/south) "wNq" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/east_engi) -"wNz" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/canteen) -"wOd" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/tcomms) -"wOv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - name = "\improper Airlock" +"wNt" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"wNG" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"wOH" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"wNK" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"wOr" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 1 +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/obj/structure/window/reinforced/tinted, -/obj/structure/window/reinforced/tinted{ - dir = 4 +/turf/open/floor/almayer/plate, +/area/strata/ag/interior/outpost/engi/drome/shuttle) +"wOv" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"wOW" = ( -/obj/structure/machinery/power/reactor/colony, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/shed_five_caves) -"wOY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +/obj/structure/fence, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"wOO" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"wPk" = ( -/obj/structure/toilet{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin3) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) "wPp" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata, @@ -33097,25 +32971,25 @@ /obj/structure/machinery/light/small, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"wPt" = ( -/obj/structure/machinery/power/terminal{ - dir = 4 +"wPO" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/structure/machinery/camera/autoname{ + dir = 8 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"wPw" = ( -/obj/item/stack/rods, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/gen/bball/nest) -"wPH" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/disposalpipe/segment, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) -"wPZ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/red1, /area/strata/ag/interior/outpost/security) +"wPV" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/landmark/crap_item, +/turf/open/floor/strata/blue1, +/area/strata/ug/interior/outpost/jung/dorms/admin1) +"wQc" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball/nest) "wQx" = ( /obj/structure/machinery/light/small{ dir = 1; @@ -33123,56 +32997,40 @@ }, /turf/open/asphalt/cement, /area/strata/ug/interior/jungle/platform/east/scrub) -"wQJ" = ( -/obj/structure/closet/wardrobe/medic_white, -/obj/structure/machinery/light/small{ - dir = 8 +"wRA" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"wQK" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"wQT" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/colony, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/landingzone_checkpoint) -"wRF" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap" +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"wRB" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms/flight_control) -"wSi" = ( -/obj/item/storage/box/donkpockets, -/obj/item/storage/box/donkpockets, -/obj/structure/surface/rack, -/turf/open/floor/strata/blue1, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ug/interior/jungle/deep/structures/res) -"wSA" = ( -/obj/structure/inflatable, -/turf/open/floor/strata/cyan3/east, +"wRM" = ( +/turf/open/floor/strata/cyan2/east, /area/strata/ag/interior/outpost/med) -"wSE" = ( -/obj/effect/decal/cleanable/blood{ - dir = 4; - icon_state = "gib6" - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ +"wSk" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) +"wSm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/cheesecakeslice, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +"wSR" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds2{ dir = 4 }, -/obj/structure/machinery/holosign/surgery, -/obj/structure/machinery/door/airlock/almayer/medical/glass/colony{ - dir = 8; - name = "\improper Airlock" - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) "wTn" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/down, @@ -33180,266 +33038,298 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"wTq" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/restricted/devroom) -"wTv" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ +"wTK" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"wTG" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/vanyard) +"wTV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/bottle/vodka, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"wTW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2 }, -/turf/open/floor/strata/multi_tiles, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi) +"wUb" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/asphalt/cement/cement12, +/area/strata/ag/exterior/landingzone_2) +"wUf" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ + name = "\improper Airlock" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"wUq" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/med) +"wUU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi) +"wUW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/gen/foyer) -"wTN" = ( -/obj/structure/xenoautopsy/tank/larva, -/turf/open/floor/strata/cyan1/east, +"wUZ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/research_decks/security) +"wVm" = ( +/obj/structure/mirror{ + pixel_y = 24 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/orange_tile, /area/strata/ag/interior/dorms) -"wUD" = ( +"wVs" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/exterior/research_decks) +"wVJ" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/explosive_mines, +/obj/item/storage/box/explosive_mines, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/res) +"wVS" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"wWm" = ( +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/administration) +"wWn" = ( /obj/effect/decal/cleanable/blood, -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/effect/decal/cleanable/blood/gibs/down, +/obj/item/stack/rods, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/dorms) -"wUF" = ( -/turf/open/asphalt/cement/cement3, -/area/strata/ag/exterior/north_lz_caves) -"wVm" = ( -/obj/structure/machinery/light/small{ +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"wWt" = ( +/obj/effect/decal/strata_decals/grime/grime4{ dir = 8 }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/red3/north, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot, +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) +"wWE" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) +"wWL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan3/east, /area/strata/ag/interior/outpost/med) -"wWc" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"wWx" = ( -/obj/structure/machinery/washing_machine, -/obj/item/clothing/suit/bluetag, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/canteen/personal_storage) "wWS" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/paths/adminext) -"wWX" = ( -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) +"wWY" = ( +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) "wXb" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) +"wXe" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/landingzone_checkpoint) "wXm" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/south_dorms) -"wXZ" = ( -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/canteen/personal_storage) -"wYc" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/security) -"wYr" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap" +"wXH" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/stamp, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"wXV" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" }, -/obj/structure/platform/strata/metal{ - dir = 8 +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi/drome) +"wXW" = ( +/obj/structure/bed/nest, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/landmark/corpsespawner/chef, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) +"wYs" = ( +/obj/effect/glowshroom, +/obj/structure/barricade/handrail/strata{ + dir = 4 }, /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"wYs" = ( -/obj/structure/surface/rack, -/obj/item/storage/bible/booze, -/obj/structure/machinery/power/apc/no_power/west, -/turf/open/floor/strata, -/area/strata/ag/interior/disposals) +/area/strata/ag/interior/tcomms) "wYx" = ( /turf/open/floor/carpet, /area/strata/ag/interior/restricted/devroom) -"wYB" = ( -/obj/item/stack/rods, +"wYJ" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/platform/east/scrub) +/area/strata/ag/interior/outpost/engi/drome) "wYL" = ( /obj/structure/machinery/weather_siren{ pixel_y = -8 }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/tcomms) -"wYT" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/obj/item/stack/sheet/wood, +"wYX" = ( +/obj/effect/spawner/random/toolbox, /turf/open/floor/strata/floor3/east, /area/strata/ag/exterior/research_decks) -"wZv" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 - }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/dorms/south) -"wZy" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) -"wZA" = ( -/obj/effect/decal/cleanable/blood{ - layer = 3 - }, -/obj/structure/toilet{ - dir = 4 - }, -/obj/effect/landmark/corpsespawner/russian, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/res) "wZM" = ( /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/exterior/shed_five_caves) +"wZT" = ( +/obj/structure/cargo_container/ferret/left, +/turf/open/auto_turf/ice/layer1, +/area/strata/ag/exterior/marsh) "wZZ" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/platform/east/scrub) -"xat" = ( +"xaV" = ( +/obj/structure/platform/strata/metal, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"xbh" = ( /obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) -"xaT" = ( -/obj/structure/machinery/door/airlock/almayer/engineering/colony{ - dir = 2 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/exterior/research_decks) -"xbi" = ( /obj/structure/pipes/standard/simple/hidden/cyan, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi) -"xbw" = ( -/obj/structure/fence, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/paths/adminext) -"xbI" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_ew_full_cap"; - layer = 3.5 +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"xbv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/floor2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"xbD" = ( +/obj/item/lightstick/red/spoke/planted{ + layer = 3.1; + pixel_y = 13 }, -/obj/structure/platform/strata/metal{ +/obj/structure/prop/ice_colony/ground_wire, +/obj/structure/prop/ice_colony/ground_wire{ dir = 1 }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"xbS" = ( -/obj/structure/machinery/constructable_frame, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/tcomms) -"xch" = ( -/obj/effect/decal/cleanable/ash, -/turf/open/floor/strata/floor3/east, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 8 + }, +/obj/structure/prop/ice_colony/ground_wire{ + dir = 4 + }, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/south_engi) +"xci" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/power/apc/no_power/west, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) +"xcl" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/strata/orange_cover, /area/strata/ag/interior/outpost/engi/drome) +"xcx" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/dorms/south) +"xcL" = ( +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms) "xdr" = ( /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/shed_five_caves) -"xdy" = ( -/obj/structure/machinery/photocopier, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/med) "xdE" = ( /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/interior/dorms/maintenance) -"xem" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/res) -"xeq" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms) +"xeb" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/canteen) "xes" = ( /obj/structure/platform_decoration/strata{ dir = 8 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"xey" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/almayer/test_floor5, -/area/strata/ag/exterior/marsh/crash) -"xez" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/spray/cleaner, -/obj/item/paper_bin, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) -"xeG" = ( -/obj/structure/machinery/vending/security, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/res) "xeJ" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 1 }, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/marsh) -"xeT" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/security) -"xeW" = ( -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 4 +"xfl" = ( +/obj/structure/machinery/colony_floodlight, +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/research_decks) +"xfV" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot/upp, +/turf/open/floor/strata, +/area/strata/ag/interior/landingzone_checkpoint) +"xgH" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/administration) -"xfi" = ( +/obj/effect/decal/cleanable/blood, /obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 9 + dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"xfz" = ( -/obj/structure/closet/wardrobe/pjs, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/maint/canteen_e_1) -"xfJ" = ( -/turf/open/floor/strata/white_cyan3/north, -/area/strata/ag/interior/outpost/med) -"xfR" = ( +/turf/open/floor/strata/white_cyan1, +/area/strata/ag/interior/dorms) +"xgJ" = ( /obj/structure/machinery/light/small{ dir = 4 }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/dorms) -"xgQ" = ( -/obj/structure/machinery/landinglight/ds1, -/turf/open/asphalt/cement/cement12, -/area/strata/ag/interior/landingzone_1) +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"xhd" = ( +/obj/structure/machinery/vending/cigarette/colony, +/obj/item/clothing/head/soft/ferret{ + pixel_y = 9 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"xht" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) +"xhw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/south) "xhM" = ( /obj/structure/machinery/weather_siren{ dir = 4; @@ -33448,89 +33338,60 @@ }, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/shed_five_caves) -"xih" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/landingzone_checkpoint) +"xhZ" = ( +/obj/structure/barricade/wooden{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "xio" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/west_engi) -"xiu" = ( -/obj/structure/machinery/landinglight/ds2/delaytwo{ - dir = 4 +"xiF" = ( +/obj/item/stack/sandbags, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/personal_storage) +"xiG" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"xiN" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/landingzone_2) +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"xiP" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/admin) "xjr" = ( /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/east_dorms) -"xjy" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/cameras{ - dir = 4 - }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/outpost/security) -"xjD" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/dorms) -"xjG" = ( -/mob/living/simple_animal/cat/Runtime{ - desc = "Also known as Bernie. Fond of potted plants and Space Carp flavored treats."; - name = "Bernard" - }, -/turf/open/floor/strata/white_cyan2, -/area/strata/ag/interior/outpost/med) -"xjN" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 +"xjC" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/exterior/marsh/river) -"xkc" = ( -/obj/structure/desertdam/decals/road_stop, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) "xkj" = ( /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"xkt" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"xkI" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/dorms) -"xkV" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/dorms/canteen) -"xlc" = ( -/obj/structure/filingcabinet, -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"xlr" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/asphalt/cement/cement15, -/area/strata/ug/interior/jungle/deep/structures/res) -"xlW" = ( +"xku" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/engi/drome) +"xkz" = ( +/obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/barricade/deployable{ - dir = 4 + dir = 1; + pixel_y = 20 }, /turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) +/area/strata/ag/interior/outpost/med) "xlX" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -33538,54 +33399,92 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin1) -"xmq" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/admin) -"xna" = ( -/obj/structure/filingcabinet, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/security) +"xmj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"xmQ" = ( +/obj/structure/holostool, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "xnn" = ( /obj/structure/sign/safety/storage, -/turf/closed/wall/strata_outpost, -/area/strata/ag/exterior/shed_five_caves) -"xor" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/bed/chair, -/turf/open/floor/strata/floor2, +/turf/closed/wall/strata_outpost, +/area/strata/ag/exterior/shed_five_caves) +"xno" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/cyan1/east, /area/strata/ag/interior/outpost/med) +"xoI" = ( +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/item/stack/sheet/plasteel/medium_stack, +/obj/item/stack/sheet/metal/medium_stack, +/obj/item/stack/sheet/metal/medium_stack, +/obj/structure/surface/rack, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/engi) "xpk" = ( -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/flashlight/lamp/green, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"xqt" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) "xre" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_3, /turf/open/auto_turf/snow/brown_base/layer2, /area/strata/ag/exterior/tcomms/tcomms_deck) -"xsl" = ( -/obj/structure/bed/chair{ +"xri" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/guestpass, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/landingzone_checkpoint) +"xrA" = ( +/obj/item/storage/secure/briefcase, +/obj/structure/machinery/light/small{ dir = 1 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/engi/drome) +"xrH" = ( +/obj/item/tool/kitchen/knife/butcher, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/dorms/canteen) +"xrQ" = ( +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"xsh" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/administration) +"xsm" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms) "xsH" = ( /turf/closed/shuttle/ert{ icon_state = "rightengine_3"; opacity = 0 }, /area/strata/ag/exterior/marsh/crash) -"xsP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/engi/drome) -"xtl" = ( +"xsK" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) +"xta" = ( +/obj/structure/machinery/chem_dispenser/soda/beer, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"xts" = ( /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating/platebot, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/engi/drome) "xtw" = ( /obj/structure/bed/chair{ @@ -33593,20 +33492,11 @@ }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin3) -"xuf" = ( -/obj/structure/window/framed/strata, -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) -"xut" = ( -/obj/structure/largecrate/random, -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/turf/open/asphalt/cement/cement9, -/area/strata/ug/interior/jungle/platform/east/scrub) +"xul" = ( +/obj/structure/machinery/power/apc/power/north, +/obj/structure/kitchenspike, +/turf/open/floor/strata/fake_wood, +/area/strata/ug/interior/jungle/deep/minehead) "xuE" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform/strata/metal{ @@ -33617,127 +33507,150 @@ }, /turf/open/gm/river, /area/strata/ag/exterior/research_decks) +"xuN" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"xuS" = ( +/obj/structure/closet/secure_closet/personal, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/item/clothing/suit/storage/bomber, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/canteen/personal_storage) "xuY" = ( /turf/open/gm/coast/beachcorner/north_east, /area/strata/ug/interior/jungle/deep/south_engi) -"xvo" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10" +"xvK" = ( +/obj/structure/barricade/wooden{ + dir = 8 }, -/obj/structure/barricade/handrail/strata{ +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/outpost/canteen/bar) +"xvY" = ( +/obj/item/stack/sheet/wood, +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib6" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/canteen/bar) +"xwh" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/tcomms) +"xws" = ( +/obj/structure/machinery/light/small{ dir = 4 }, -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ug/interior/jungle/deep/structures/res) -"xwg" = ( /obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/pen/blue, -/turf/open/floor/strata/floor2, -/area/strata/ag/interior/outpost/engi/drome) -"xwp" = ( -/obj/structure/curtain/open/medical, -/turf/open/floor/strata/white_cyan1/east, +/obj/item/storage/fancy/vials, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"xwL" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/interior/outpost/maint/canteen_e_1) -"xwQ" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 8; - icon_state = "p_stair_full" +"xwN" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 }, -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/multi_tiles, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/engi) +"xxq" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/strata/multi_tiles/southwest, /area/strata/ag/exterior/research_decks) -"xxo" = ( -/obj/structure/machinery/power/apc/power/north, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin2) +"xxH" = ( +/obj/structure/noticeboard{ + desc = "A board for pinning important notices upon. There are a few pushpins dangling from it. Crudely carved into the baseboard is a picture of what seems to be a screaming warlock. To their right is a whip lashing out comically over what you figure are software engineers slaving over a box labeled CM13. The words 'spriterz rule' is carved beneath the box."; + pixel_y = 32 + }, +/obj/structure/bookcase{ + icon_state = "book-5" + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/med) +"xxL" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ag/interior/outpost/med) +"xxP" = ( +/obj/structure/fence, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/exterior/tcomms/tcomms_deck) "xxS" = ( /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/nearlz2) +"xxW" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/outpost/security) "xyz" = ( /obj/structure/mirror, /turf/closed/wall/strata_outpost/reinforced/hull, /area/strata/ag/interior/tcomms) -"xyL" = ( -/turf/open/asphalt/cement/cement14, -/area/strata/ag/exterior/tcomms/tcomms_deck) -"xzm" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/obj/structure/platform_decoration/strata/metal, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"xzo" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ +"xyR" = ( +/obj/structure/machinery/space_heater, +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/research_decks/security) +"xze" = ( +/obj/structure/machinery/power/terminal{ dir = 8 }, -/turf/open/floor/strata/cyan2/east, -/area/strata/ag/interior/outpost/med) -"xzO" = ( -/obj/structure/machinery/vending/coffee, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/blue1, -/area/strata/ug/interior/jungle/deep/structures/res) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/exterior/shed_five_caves) +"xzn" = ( +/obj/structure/cargo_container/ferret/right, +/turf/open/auto_turf/ice/layer0, +/area/strata/ag/exterior/marsh) "xzR" = ( /turf/open/floor/plating, /area/strata/ag/exterior/marsh/crash) -"xzT" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{ - dir = 1; - name = "\improper Airlock" +"xzV" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/canteen/personal_storage) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/exterior/vanyard) "xAc" = ( /obj/structure/flora/grass/tallgrass/ice/corner{ dir = 6 }, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) -"xAy" = ( -/obj/structure/surface/rack, -/obj/item/tank/emergency_oxygen/engi, -/obj/item/storage/belt/utility/full, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/engi/drome) -"xAC" = ( -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) -"xBo" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ +"xBu" = ( +/obj/structure/platform/strata/metal{ dir = 1 }, -/turf/open/asphalt/cement/cement4, -/area/strata/ag/interior/landingzone_1) -"xBx" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, -/turf/open/floor/strata/orange_cover, +/turf/open/floor/strata/floor3, /area/strata/ag/interior/outpost/engi/drome) -"xBY" = ( -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ug/interior/jungle/deep/structures/engi) -"xCx" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"xCT" = ( +"xCa" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/communications{ - dir = 4 +/obj/item/storage/box/bodybags, +/obj/structure/window/reinforced/tinted{ + dir = 8 }, -/obj/structure/machinery/light/small{ +/obj/structure/window/reinforced/tinted, +/obj/item/tool/stamp, +/obj/item/reagent_container/food/drinks/cans/souto/grape, +/obj/structure/barricade/handrail/strata{ dir = 8 }, -/turf/open/floor/strata/purp1, -/area/strata/ug/interior/jungle/deep/structures/engi) +/obj/item/device/flashlight/lamp, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/strata/blue1, +/area/strata/ag/interior/outpost/admin) +"xDs" = ( +/obj/item/tool/mop, +/obj/structure/janitorialcart, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "xDu" = ( /obj/structure/sign/nosmoking_2, /turf/closed/wall/strata_outpost/reinforced/hull, @@ -33746,10 +33659,13 @@ /obj/effect/decal/cleanable/blood, /turf/open/auto_turf/strata_grass/layer0_mud, /area/strata/ug/interior/jungle/deep/east_engi) -"xDS" = ( -/obj/structure/filingcabinet, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) +"xDR" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/nearlz1) "xEj" = ( /obj/item/reagent_container/food/drinks/bottle/sake{ pixel_x = 9; @@ -33758,10 +33674,9 @@ /obj/structure/surface/table/almayer, /turf/open/asphalt/cement, /area/strata/ag/exterior/paths/adminext) -"xEI" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/kitchen/knife, -/turf/open/floor/strata/white_cyan1, +"xEr" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/prison/darkredfull2, /area/strata/ag/interior/dorms/maintenance) "xEV" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_1, @@ -33771,29 +33686,23 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/platform/east/scrub) -"xFd" = ( -/obj/structure/window/framed/strata/reinforced, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/maint/canteen_e_1) "xFf" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" }, /turf/open/gm/dirt, /area/strata/ug/interior/jungle/deep/south_engi) -"xFk" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/outpost/gen/foyer) "xFl" = ( /obj/structure/cargo_container/grant/rightmid, /turf/open/auto_turf/ice/layer0, /area/strata/ag/exterior/marsh) +"xFm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/tank/emergency_oxygen/engi, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) "xFC" = ( /obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, /turf/open/auto_turf/strata_grass/layer0, @@ -33802,15 +33711,10 @@ /obj/structure/sign/safety/biohazard, /turf/closed/wall/strata_outpost/reinforced, /area/strata/ag/exterior/nearlz2) -"xFM" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) "xFP" = ( -/obj/effect/decal/remains/xeno, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, /turf/open/floor/strata/multi_tiles, /area/strata/ag/interior/dorms/hive) "xFT" = ( @@ -33819,6 +33723,12 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/auto_turf/ice/layer1, /area/strata/ag/interior/outpost/gen/bball/nest) +"xGa" = ( +/obj/structure/bed{ + icon_state = "abed" + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/outpost/jung/dorms/admin3) "xGi" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 9 @@ -33826,85 +33736,43 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"xGl" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/paper_bin, -/obj/item/tool/stamp, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"xGp" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/handset{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/structure/machinery/light/small{ - dir = 4 +"xGq" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/interior/outpost/gen/foyer) +/turf/open/floor/plating/platebot, +/area/strata/ag/interior/outpost/engi/drome/shuttle) "xGA" = ( /obj/effect/landmark/crap_item, /turf/open/auto_turf/strata_grass/layer0, /area/strata/ug/interior/jungle/deep/west_engi) -"xHd" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan{ - dir = 1 +"xGP" = ( +/obj/structure/barricade/handrail/strata{ + dir = 8 }, -/turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/outpost/admin) -"xHi" = ( /turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/vanyard) -"xHm" = ( -/obj/structure/window/framed/strata, +/area/strata/ug/interior/jungle/deep/structures/res) +"xHd" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + dir = 2 + }, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) +/area/strata/ug/interior/jungle/deep/structures/res) +"xHo" = ( +/obj/structure/bed/chair/office/light, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "xHw" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" }, /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/med1) -"xHy" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 - }, -/obj/structure/fence, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/exterior/research_decks) -"xHG" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/item/storage/large_holster/machete/full, -/obj/effect/spawner/random/toolbox{ - pixel_y = 12 - }, -/obj/structure/platform_decoration/strata/metal{ - dir = 1 - }, -/turf/open/floor/strata/red3/north, -/area/strata/ag/interior/outpost/med) -"xHI" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/surface/rack, -/obj/item/device/flashlight, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"xHJ" = ( -/obj/structure/platform/strata/metal{ - dir = 4 - }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/nearlz1) -"xHR" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "xHW" = ( /obj/structure/platform/strata/metal, /obj/structure/stairs/perspective{ @@ -33914,42 +33782,24 @@ }, /turf/open/auto_turf/snow/brown_base/layer1, /area/strata/ag/exterior/paths/adminext) +"xIb" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony, +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/outpost/maint/canteen_e_1) "xId" = ( /obj/structure/flora/bush/ausbushes/grassybush, /obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/east_dorms) -"xIL" = ( -/obj/structure/closet/secure_closet/personal, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) "xJq" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -11 - }, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"xJB" = ( -/obj/structure/inflatable/popped/door, -/turf/open/floor/strata/fake_wood, -/area/strata/ug/interior/jungle/deep/minehead) +/obj/structure/machinery/vending/snack, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/administration) "xJD" = ( /obj/structure/closet/bodybag, /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"xJF" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) -"xJG" = ( -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib6" - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) "xJH" = ( /obj/structure/flora/bush/ausbushes/grassybush{ icon_state = "fullgrass_1" @@ -33958,10 +33808,10 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/greengrid, /area/strata/ug/interior/jungle/deep/structures/engi) -"xJX" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan3/north, -/area/strata/ag/interior/outpost/med) +"xKu" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/nearlz1) "xKy" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/structure/platform_decoration/strata{ @@ -33978,17 +33828,12 @@ /obj/effect/decal/cleanable/blood/gibs/body, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"xKJ" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) -"xLw" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/pistol/t73, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) +"xKI" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/ammo_magazine/revolver/upp, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms/hive) "xLB" = ( /obj/effect/decal/cleanable/blood, /obj/item/stack/sheet/wood, @@ -33998,46 +33843,33 @@ /obj/structure/cryofeed/right, /turf/open/gm/river, /area/strata/ag/interior/tcomms) -"xLS" = ( -/obj/structure/pipes/vents/pump{ +"xLY" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"xMo" = ( +/obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"xLW" = ( -/obj/structure/bed/chair, -/obj/item/stack/sheet/metal/medium_stack, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"xMa" = ( -/obj/structure/bed{ - icon_state = "abed" - }, -/turf/open/floor/strata/purp1, -/area/strata/ug/interior/outpost/jung/dorms/admin4) -"xMl" = ( -/turf/open/asphalt/cement/cement3, -/area/strata/ug/interior/jungle/platform/east/scrub) -"xMz" = ( -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/jungle/deep/structures/engi) -"xMF" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/nearlz1) +"xMw" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/turf/open/floor/strata/floor2, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/exterior/paths/cabin_area) +"xMI" = ( +/turf/open/asphalt/cement/cement14, +/area/strata/ag/exterior/tcomms/tcomms_deck) +"xNA" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/machinery/door/airlock/almayer/medical/colony, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) -"xNo" = ( -/obj/structure/closet/secure_closet/security/soro, -/obj/item/reagent_container/food/snacks/carpmeat, -/turf/open/floor/strata/red1, -/area/strata/ug/interior/jungle/deep/structures/res) -"xOb" = ( -/turf/open/floor/strata/floor2, -/area/strata/ug/interior/jungle/deep/structures/engi) +"xOl" = ( +/turf/open/asphalt/cement/cement9, +/area/strata/ug/interior/jungle/platform/east/scrub) "xOo" = ( /obj/effect/landmark/xeno_spawn, /turf/open/auto_turf/strata_grass/layer1, @@ -34048,6 +33880,11 @@ /obj/effect/decal/cleanable/blood/gibs/core, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) +"xOt" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/storage/toolbox/syndicate, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) "xOx" = ( /obj/effect/blocker/sorokyne_cold_water, /obj/effect/blocker/sorokyne_cold_water, @@ -34060,19 +33897,13 @@ /obj/structure/platform/strata, /turf/open/gm/river, /area/strata/ag/exterior/marsh/river) -"xOD" = ( -/obj/structure/platform/strata/metal, -/turf/open/floor/strata/red3/north, -/area/strata/ag/interior/outpost/med) -"xOE" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 - }, +"xOB" = ( +/obj/structure/largecrate/random/barrel/blue, /obj/structure/machinery/light/small{ - dir = 8 + dir = 4 }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/med) +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/res) "xOL" = ( /obj/structure/flora/grass/ice/brown/snowgrassbb_2, /turf/open/auto_turf/snow/brown_base/layer2, @@ -34082,74 +33913,133 @@ /turf/open/floor/strata, /area/strata/ug/interior/outpost/jung/dorms/admin2) "xPz" = ( -/obj/structure/bookcase{ - icon_state = "book-5" +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"xPR" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/outpost/med) +"xPB" = ( +/obj/structure/surface/rack, +/obj/item/inflatable/door, +/obj/item/inflatable/door, +/obj/item/inflatable/door, +/obj/item/tool/shovel/etool/folded, +/obj/item/tool/shovel/etool/folded, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/dorms/south) +"xPM" = ( /obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/microwave, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/admin1) +/obj/structure/machinery/computer/communications{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) "xPT" = ( /obj/item/reagent_container/food/drinks/cans/cola, /turf/open/auto_turf/ice/layer1, /area/strata/ag/exterior/paths/southresearch) -"xQf" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/white_cyan3/southwest, +"xPY" = ( +/obj/structure/bed, +/obj/structure/machinery/light/small, +/obj/item/bedsheet/medical, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/med) +"xQt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ug/interior/jungle/deep/structures/res) +"xRh" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/meat, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/dorms/maintenance) +"xRA" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/floor2, /area/strata/ag/interior/outpost/med) -"xQm" = ( -/obj/item/stack/rods, -/obj/structure/pipes/vents/pump/on, +"xRN" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/effect/landmark/corpsespawner/russian, +/obj/structure/bed/roller, /turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/engi) -"xQr" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 6 +/area/strata/ag/interior/outpost/gen/bball) +"xRQ" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 }, -/turf/open/floor/strata/white_cyan1/east, -/area/strata/ag/interior/outpost/canteen/bar) -"xQs" = ( -/turf/open/asphalt/cement/cement1, -/area/strata/ag/exterior/landingzone_2) -"xRh" = ( -/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/computer/station_alert{ + dir = 4 + }, +/obj/structure/surface/table/reinforced/prison, /turf/open/floor/strata/blue1, -/area/strata/ug/interior/outpost/jung/dorms/admin2) -"xRX" = ( -/obj/item/fuel_cell, -/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, -/obj/structure/barricade/handrail/strata{ +/area/strata/ag/interior/administration) +"xRT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/snacks/mushroompizzaslice, +/turf/open/floor/strata/cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"xSd" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/lower_cafeteria) "xSw" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3, -/area/strata/ag/interior/outpost/gen/bball) -"xSx" = ( -/obj/structure/machinery/power/apc/power/north, -/turf/open/floor/strata, -/area/strata/ag/interior/outpost/engi/drome) +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/test_floor5, +/area/strata/ug/interior/jungle/deep/structures/res) "xSB" = ( /obj/structure/filingcabinet, /turf/open/auto_turf/snow/brown_base/layer0, /area/strata/ag/interior/outpost/gen/bball/nest) -"xTE" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/trash/plate{ - pixel_x = 1; - pixel_y = 3 +"xSG" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2 }, -/obj/item/reagent_container/food/condiment/peppermill, -/obj/structure/bed/chair{ - dir = 4 +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ag/interior/administration) +"xTn" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/outpost/canteen/lower_cafeteria) +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/tcomms) +"xTH" = ( +/obj/structure/machinery/space_heater, +/obj/structure/barricade/handrail/strata{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) +"xTO" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/dorms/canteen) +"xTP" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/strata/multi_tiles/west, +/area/strata/ug/interior/jungle/deep/structures/res) "xTU" = ( /turf/open/auto_turf/snow/brown_base/layer4, /area/strata/ag/exterior/nearlz2) @@ -34163,44 +34053,49 @@ "xUg" = ( /turf/open/gm/coast/south, /area/strata/ug/interior/jungle/deep/south_engi) -"xUt" = ( -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/dorms) -"xVX" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 +"xUq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/med) +"xUB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/fake_wood, -/area/strata/ag/interior/research_decks/security) -"xWg" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 5 +/area/strata/ag/interior/outpost/gen/bball) +"xVu" = ( +/obj/structure/filingcabinet, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/interior/outpost/engi) +"xVV" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/maintenance) -"xWJ" = ( -/obj/item/stack/rods, /turf/open/floor/strata/white_cyan2/west, /area/strata/ag/interior/dorms/canteen) +"xWn" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) "xWN" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/blood/gibs/limb, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"xWZ" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/obj/structure/machinery/light/small{ - dir = 1 +"xWT" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/disposalpipe/segment{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) -"xXb" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, +/obj/structure/pipes/standard/simple/hidden/cyan, /turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/interior/outpost/med) +/area/strata/ag/interior/outpost/engi/drome) "xXi" = ( /obj/effect/decal/cleanable/blood/gibs/body, /obj/effect/decal/cleanable/blood/gibs/core, @@ -34210,210 +34105,201 @@ /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_dorms) -"xXs" = ( -/obj/item/stack/sheet/wood, -/turf/open/floor/strata/multi_tiles/southwest, -/area/strata/ag/exterior/research_decks) -"xXH" = ( -/obj/structure/machinery/power/smes/buildable{ - capacity = 1e+006; - dir = 1 - }, -/turf/open/floor/prison/floor_plate, -/area/strata/ag/interior/dorms) -"xYb" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/item/reagent_container/food/drinks/cans/waterbottle, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/cyan1/east, -/area/strata/ag/interior/outpost/gen/bball) -"xYl" = ( -/obj/structure/pipes/standard/manifold/hidden/cyan, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/canteen/personal_storage) "xYw" = ( /obj/item/clothing/mask/cigarette/cigar/cohiba, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"xYS" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/tcomms) -"xYZ" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ag/interior/outpost/engi/drome) -"xZj" = ( -/obj/structure/prop/dam/truck/cargo, +"xYD" = ( +/obj/item/weapon/gun/rifle/type71/carbine, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen/bar) +"xYG" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/strata/cyan3/east, +/area/strata/ag/interior/outpost/med) +"xYK" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony, /turf/open/floor/strata/multi_tiles/west, -/area/strata/ag/exterior/research_decks) -"xZw" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/dorms/south) -"xZK" = ( -/obj/structure/machinery/shower{ - dir = 1 - }, -/obj/structure/window/reinforced/tinted{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 8 - }, -/obj/structure/machinery/door/window/eastright{ - dir = 1 - }, -/turf/open/floor/strata/white_cyan2/west, -/area/strata/ug/interior/outpost/jung/dorms/sec1) -"xZX" = ( +/area/strata/ag/interior/outpost/engi) +"xZr" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"xZT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/floor3/east, +/area/strata/ag/interior/outpost/canteen) +"yay" = ( /obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/effect/decal/cleanable/blood{ - icon_state = "xgib2" - }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms) +/turf/open/floor/strata/white_cyan2/west, +/area/strata/ag/interior/dorms/canteen) "yaC" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"yaM" = ( -/obj/structure/pipes/standard/simple/hidden/cyan, -/turf/open/floor/strata/orange_cover, -/area/strata/ag/interior/tcomms) -"yaP" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 4 +/obj/item/clipboard, +/obj/structure/surface/table/reinforced/prison, +/turf/open/floor/strata/red1, +/area/strata/ug/interior/jungle/deep/structures/res) +"ybo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, -/turf/open/floor/strata/multi_tiles/west, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ag/interior/outpost/gen/bball) +"ycw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin, +/obj/item/tool/pen/blue, +/turf/open/floor/strata/multi_tiles/southeast, /area/strata/ag/interior/outpost/engi/drome) -"ybi" = ( -/obj/structure/pipes/vents/pump{ +"ycx" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/strata/fake_wood, +/area/strata/ag/interior/outpost/security) +"ycJ" = ( +/obj/structure/machinery/power/terminal{ dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/interior/outpost/canteen) -"ybW" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"ydF" = ( /turf/open/floor/strata/red1, -/area/strata/ag/interior/nearlz1) -"ydR" = ( -/obj/structure/bookcase{ - icon_state = "book-5" - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/strata/ag/interior/outpost/gen/foyer) +/area/strata/ag/interior/administration) "ydV" = ( /obj/effect/decal/cleanable/blood{ icon_state = "xgib2" }, /turf/open/floor/strata, /area/strata/ag/exterior/research_decks) -"yed" = ( -/obj/structure/machinery/door/airlock/almayer/medical/colony{ - dir = 1; - id_tag = "bunker_or1"; - name = "\improper Operating Room 1" - }, -/turf/open/floor/strata/white_cyan1, -/area/strata/ag/interior/outpost/med) -"yei" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigar, -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 +"yep" = ( +/obj/structure/barricade/wooden, +/turf/open/floor/strata/floor3/east, +/area/strata/ug/interior/jungle/deep/minehead/ruins) +"yex" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/handset{ + pixel_x = 8; + pixel_y = 6 }, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"yey" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/item/storage/pill_bottle/bicaridine, +/obj/structure/machinery/door/window/eastright{ + dir = 8 }, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement12, +/turf/open/floor/strata/multi_tiles/west, /area/strata/ag/interior/outpost/med) -"yfc" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/pipes/vents/pump{ - dir = 4 +"yey" = ( +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/admin) +"yeI" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 }, -/turf/open/floor/strata/multi_tiles, -/area/strata/ag/interior/dorms/hive) -"yfg" = ( -/obj/structure/machinery/light/small{ +/turf/open/asphalt/cement/cement3, +/area/strata/ag/interior/landingzone_1) +"yeL" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/strata/ug/interior/jungle/deep/structures/engi) +"yfz" = ( +/obj/structure/platform/strata/metal{ dir = 8 }, -/turf/open/floor/strata/floor3, +/turf/open/floor/strata/fake_wood, /area/strata/ag/interior/outpost/engi) -"yfi" = ( -/obj/structure/reagent_dispensers/watertank, +"yfS" = ( +/obj/structure/filingcabinet, /turf/open/floor/strata/floor3/east, /area/strata/ag/interior/tcomms) -"yfW" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool/folded, -/obj/item/weapon/gun/pistol/t73, -/obj/item/attachable/bayonet/upp, -/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, -/turf/open/floor/strata/red1, -/area/strata/ag/interior/landingzone_checkpoint) -"ygi" = ( -/obj/structure/pipes/standard/simple/hidden/cyan{ - dir = 10 - }, -/turf/open/floor/prison/darkyellowfull2, -/area/strata/ag/interior/outpost/engi) -"ygp" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) "ygq" = ( /turf/closed/wall/strata_outpost, /area/strata/ug/interior/outpost/jung/dorms/admin2) -"ygH" = ( -/obj/structure/barricade/handrail/strata, -/turf/open/floor/strata/floor3/east, -/area/strata/ag/exterior/research_decks) -"ygO" = ( -/obj/structure/barricade/handrail/strata{ +"ygs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ dir = 4 }, -/obj/structure/barricade/handrail/strata, -/turf/open/asphalt/cement/cement15, -/area/strata/ug/interior/jungle/deep/minehead) -"ygZ" = ( -/obj/item/stool, -/turf/open/floor/prison/darkredfull2, -/area/strata/ag/interior/dorms/maintenance) -"yhH" = ( +/obj/effect/decal/cleanable/blood{ + icon_state = "xgib2" + }, +/turf/open/floor/strata/multi_tiles, +/area/strata/ag/interior/dorms) +"ygt" = ( /obj/structure/surface/table/reinforced/prison, -/obj/effect/spawner/random/toolbox, -/obj/structure/window/reinforced/tinted{ - dir = 8 +/obj/structure/machinery/computer/cameras{ + dir = 1 }, -/obj/structure/window/reinforced/tinted, +/turf/open/floor/strata/red1, +/area/strata/ag/interior/dorms/flight_control) +"ygQ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/kitchen/utensil/pfork, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_tile, +/area/strata/ag/interior/dorms) +"yhe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/test_floor5, +/area/strata/ug/interior/jungle/deep/structures/res) +"yhB" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/obj/item/storage/firstaid/regular, +/turf/open/floor/strata/purp2, +/area/strata/ug/interior/jungle/deep/structures/engi) +"yhF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"yhO" = ( +/obj/structure/machinery/door/airlock/almayer/command{ + dir = 2 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) +"yiu" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/asphalt/cement/cement1, +/area/strata/ag/exterior/landingzone_2) +"yjf" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/barricade/handrail/strata{ dir = 8 }, -/obj/item/device/flashlight/lamp, -/turf/open/floor/strata/blue1, -/area/strata/ag/interior/outpost/admin) +/turf/open/floor/strata/orange_cover, +/area/strata/ag/interior/outpost/engi/drome) +"yjm" = ( +/obj/structure/machinery/processor, +/obj/item/reagent_container/food/snacks/meat{ + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/strata/cyan2/east, +/area/strata/ag/interior/outpost/canteen/bar) "yjG" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/auto_turf/strata_grass/layer1, /area/strata/ug/interior/jungle/deep/south_engi) +"ykc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/prison/darkredfull2, +/area/strata/ag/interior/landingzone_checkpoint) +"ykd" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/strata/floor2, +/area/strata/ag/interior/outpost/engi/drome) "ykh" = ( /obj/structure/machinery/weather_siren{ dir = 8; @@ -34423,17 +34309,41 @@ /obj/structure/pipes/standard/simple/hidden/cyan, /turf/closed/wall/strata_outpost, /area/strata/ag/exterior/shed_five_caves) -"ylA" = ( -/obj/structure/surface/rack, -/turf/open/floor/strata/floor3/east, -/area/strata/ug/interior/jungle/deep/structures/res) +"yku" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/turf/open/asphalt/cement/cement4, +/area/strata/ag/interior/landingzone_1) +"ykT" = ( +/obj/structure/window/framed/strata/reinforced, +/turf/open/floor/strata/floor3, +/area/strata/ag/interior/outpost/gen/bball) +"ykW" = ( +/turf/open/floor/strata/cyan3/east, +/area/strata/ag/interior/outpost/med) +"ykZ" = ( +/obj/structure/window/framed/strata, +/turf/open/floor/strata/multi_tiles/southwest, +/area/strata/ug/interior/jungle/deep/structures/engi) +"yla" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/white_cyan1/east, +/area/strata/ag/interior/outpost/canteen) "ylE" = ( /turf/open/gm/coast/beachcorner2/north_west, /area/strata/ug/interior/jungle/deep/south_engi) -"ylY" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata/purp2, -/area/strata/ug/interior/jungle/deep/structures/engi) +"ylL" = ( +/obj/structure/platform/strata/metal{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/strata/ag/exterior/research_decks) (1,1,1) = {" aaa @@ -34873,46 +34783,46 @@ wrp wrp wrp wrp -qFh +pNM cqE -hBC -ogs -ogs -hBC -ogs -ogs -ogs -hBC -ogs -ogs -ogs +hZV +qYV +qYV +hZV +qYV +qYV +qYV +hZV +qYV +qYV +qYV azx -iWy -qhY +ktX +eZI azx -fLk -fLk +ruv +ruv azx -sDP -sDP -sDP -dxr -iYA -sDP -sDP -sDP -dxr -sDP -sDP -sDP -dxr -sDP -iYA -sDP -sDP -dxr -sDP -sDP +fhn +fhn +fhn +usN +uhk +fhn +fhn +fhn +usN +fhn +fhn +fhn +usN +fhn +uhk +fhn +fhn +usN +fhn +fhn rtW bAe bAe @@ -35062,52 +34972,52 @@ aac aac aac kSU -tSE -fUq -cCm -cCm -tGL -qQX -oel +mRL +vai +vBo +vBo +bSb +sBo +qDf cqE -hhu -pav -drn -drn -drn -drn -drn -drn -drn -drn -hHe -vdk -drn -drn -vdk -drn -drn -seK -hby -hby -hby -hby -hby -hby -hby -hby -fxv -ohJ -fzQ -rBh -sDP -urt -fzQ -fzQ -fzQ -fzQ -fzQ -fzQ +dvN +rmh +pxc +pxc +pxc +pxc +pxc +pxc +pxc +pxc +vly +sCL +pxc +pxc +sCL +pxc +pxc +iUT +bJl +bJl +bJl +bJl +bJl +bJl +bJl +bJl +aVb +gYF +iqW +vOx +fhn +mrH +iqW +iqW +iqW +iqW +iqW +iqW rtW bAe bAe @@ -35257,42 +35167,42 @@ aac aac kSU kSU -rtA +bGC cjb cjb coP -rsb -qQX -oel +ygt +sBo +qDf cqE -fjy -cFP +nET +dgW apc -czr -rKY -iwz -mVZ -czr -rKY -iwz -mVZ -czr -rKY -iwz -mVZ -czr -rKY -iwz -mVZ -czr -rKY -iwz -mVZ -czr -rKY +vTF +mYn +vQr +lcm +vTF +mYn +vQr +lcm +vTF +mYn +vQr +lcm +vTF +mYn +vQr +lcm +vTF +mYn +vQr +lcm +vTF +mYn apc -pCP -fjy +qZK +nET cqE cot aZS @@ -35302,7 +35212,7 @@ cqE cqE cqE cqE -fbg +gjo rtW bAf bAf @@ -35323,12 +35233,12 @@ crN bhJ bhY biG -pKD +lBP jnH xzR xzR jnH -eoA +hTp bmW aac aac @@ -35451,18 +35361,18 @@ aac aac aac kSU -smu -wvj +koz +gar aiw cof cjb -nkx -qQX -oel +oqG +sBo +qDf cqE -fjy -cFP -fhV +nET +dgW +kcg crE crE arS @@ -35485,19 +35395,19 @@ crE arS crE crE -lGs -pCP -fjy +whN +qZK +nET cqE cqE cqE cqE beK -xHJ -xHJ +xMo +xMo bnb cqE -ogs +qYV rtW alz aXG @@ -35515,14 +35425,14 @@ nTS crN aZv bgQ -bhL +bgQ aZv aZv bia -lgY -eoA -eoA -eoA +edt +hTp +hTp +hTp bia bmY bnK @@ -35646,18 +35556,18 @@ aac aac aac kSU -smu -cCm +koz +vBo aix cjb coP -ruS -qQX -oel +geo +sBo +qDf cqE -fjy -cFP -vIH +nET +dgW +tEd crE crE crE @@ -35680,24 +35590,24 @@ crE crE crE crE -xBo -pCP -fjy +pZO +qZK +nET cqE aQv aQv cqE -gbk +vnp aQv aQv -eAd +tFx cqE -ogs -ogs +qYV +qYV bAq -eHV -eHV -eHV +lTM +lTM +lTM aac aac aac @@ -35842,17 +35752,17 @@ aac aac kSU ahr -cCm -lsQ -cCm -cCm -rsb -qQX -oel +vBo +dIC +vBo +vBo +ygt +sBo +qDf cqE -fjy -cFP -xgQ +nET +dgW +iqA crE crE crE @@ -35875,21 +35785,21 @@ crE crE crE crE -keI -pCP -fjy +hxH +qZK +nET cqE aQv aQv cqE -gbk +vnp aQv aQv -eAd +tFx beJ -prY +nYA cqE -prY +nYA aZj aZv aZv @@ -35904,7 +35814,7 @@ bjN aVq bjN aVq -bgR +bhM bhM bgS bgS @@ -36037,17 +35947,17 @@ kSU kSU kSU wrp -foc -dDS -qQX -qQX +pDR +eob +sBo +sBo wrp wrp -cUY +qqL cqE -fjy -cFP -jnr +nET +dgW +hEa crE crE crE @@ -36070,21 +35980,21 @@ crE crE crE crE -uIr -pCP -fjy +yku +qZK +nET cqE cqE cqE cqE cot -sNL -sNL +eqv +eqv bce cqE -prY +nYA cqE -prY +nYA aZk aVq aVq @@ -36230,19 +36140,19 @@ aac aac kSU cyG -mNr -rvl -cCm -lsQ -cCm -cCm -mNr -rvl -ybW +lhA +pnB +vBo +dIC +vBo +vBo +lhA +pnB +sUh cqE -fjy -cFP -fhV +nET +dgW +kcg crE crE crE @@ -36265,9 +36175,9 @@ crE crE crE crE -lGs -pCP -fjy +whN +qZK +nET cqE cqE cqE @@ -36277,9 +36187,9 @@ cqE cqE cqE cqE -prY +nYA cqE -prY +nYA aZl aZx aZx @@ -36425,19 +36335,19 @@ aac aac kSU cyG -mlY -mlY +eXi +eXi cjb aix cjb cjb -mlY -mlY -ybW +eXi +eXi +sUh amq -jzE -cFP -vIH +efe +dgW +tEd crE crE crE @@ -36460,21 +36370,21 @@ crE crE crE crE -xBo -luF -cjd +pZO +bAh +cDt aVX -vLo -vLo +hHr +hHr bcf cqM cqM cqM cqM bqV -prY +nYA cqE -prY +nYA aVq aZx aZx @@ -36620,19 +36530,19 @@ aac aac kSU cyG -qSF -wRF -cCm -lsQ -cCm -cCm -qSF -wRF -ybW +uiC +qKO +vBo +dIC +vBo +vBo +uiC +qKO +sUh cqE -fjy -cFP -xgQ +nET +dgW +iqA crE crE crE @@ -36655,21 +36565,21 @@ crE crE crE crE -keI -pCP -fjy -gbk +hxH +qZK +nET +vnp aQv aQv -eAd +tFx cqE aQv aQv cqE bqW -prY +nYA cqE -prY +nYA aZj aVq aZx @@ -36817,17 +36727,17 @@ kSU kSU kSU wrp -foc -dDS -qQX -qQX +pDR +eob +sBo +sBo wrp wrp -qFh +pNM cqE -fjy -cFP -cGt +nET +dgW +oKP crE crE crE @@ -36850,24 +36760,24 @@ crE crE crE crE -hQU -pCP -fjy -gbk +etH +qZK +nET +vnp aQv aQv -eAd +tFx beJ aQv aQv cqE cqE -ogs -ogs +qYV +qYV bAq -eHV -eHV -eHV +lTM +lTM +lTM aZx aZx aVq @@ -36887,7 +36797,7 @@ bhO bhO okM qSo -nOm +rRB qSo nxF gTE @@ -37012,17 +36922,17 @@ aac aac kSU ahr -cCm -lsQ -cCm -rFe -sjx -qQX -oel +vBo +dIC +vBo +nCp +bZl +sBo +qDf cqE -fjy -cFP -fhV +nET +dgW +kcg crE crE crE @@ -37045,19 +36955,19 @@ crE crE crE crE -lGs -pCP -fjy +whN +qZK +nET cot -sNL -sNL +eqv +eqv bce cqE cqE cqE cqE cqE -ogs +qYV rtW rtW bER @@ -37081,9 +36991,9 @@ bhO bgS bhO mpk -xey -jMS -crJ +eYK +cMF +gor iEo qSo nxF @@ -37206,18 +37116,18 @@ aac aac aac kSU -smu -cCm +koz +vBo aix cjb cjb -rsb -qQX -oel +ygt +sBo +qDf cqE -fjy -cFP -vIH +nET +dgW +tEd crE crE crE @@ -37240,19 +37150,19 @@ crE crE crE crE -xBo -pCP -fjy -ogs -oWq -ogs -qSi -ogs -ogs -ogs -cNl -ogs -tSK +pZO +qZK +nET +qYV +qRO +qYV +xKu +qYV +qYV +qYV +pmK +qYV +uHM rtW azx bET @@ -37276,11 +37186,11 @@ bhO hQP bhO mpk -jMS -jMS -jMS -jMS -sGx +cMF +cMF +cMF +cMF +ivG cXU bhO bgS @@ -37401,18 +37311,18 @@ aac aac aac kSU -smu -wvj +koz +gar aiA qwM ajK -qtl -ubw -kNA +cWY +dot +xDR cqM -jzE -cFP -xgQ +efe +dgW +iqA apT crE arS @@ -37435,15 +37345,15 @@ crE arS crE crE -keI -pCP -fjy -ogs +hxH +qZK +nET +qYV alz -rPp -rPp +kuj +kuj beL -axy +tHD azx alz alz @@ -37471,11 +37381,11 @@ bhO bhO bhO mpk -fyV -jMS -jMS -ueL -jMS +ieS +cMF +cMF +vLq +cMF cXU bhO bhO @@ -37597,49 +37507,49 @@ aac aac kSU kSU -cCm +vBo cjb cjb coP -ruS -qQX -oel +geo +sBo +qDf cqE -fjy -cFP +nET +dgW apc -qxb -dSZ -kuH -kXP -dSZ -uBa -kuH -qxb -dSZ -uBa -kuH -qxb -dSZ -uBa -kuH -qxb -dSZ -uBa -kuH -qxb -dSZ -uBa +yeI +jdb +xWn +hJR +jdb +eFo +xWn +yeI +jdb +eFo +xWn +yeI +jdb +eFo +xWn +yeI +jdb +eFo +xWn +yeI +jdb +eFo apc -pCP -fjy -ogs -tge -oEB -dfM -dfM -dfM -dfM +qZK +nET +qYV +gNB +wzL +cem +cem +cem +cem aac aac aac @@ -37666,9 +37576,9 @@ bgS bsU bhO mpk -rNB -jMS -fcY +tQq +cMF +qIR vkp blW vQs @@ -37792,45 +37702,45 @@ aac aac aac kSU -tSE -fUq -cCm -cCm -rsb -qQX -oel +mRL +vai +vBo +vBo +ygt +sBo +qDf cqE -fjy -kfi -fzR -fzR -fzR -fzR -fzR -fzR -fzR -fzR -fzR -fzR -fzR -fzR -fzR -jEx -fzR -fzR -fzR -fzR -fzR -fzR -fzR -fzR -fzR -fzR -ucf -fjy -ogs -tge -xat +nET +fnB +mGF +mGF +mGF +mGF +mGF +mGF +mGF +mGF +mGF +mGF +mGF +mGF +mGF +cQH +mGF +mGF +mGF +mGF +mGF +mGF +mGF +mGF +mGF +mGF +ebU +nET +qYV +gNB +vky cqG bbA bbA @@ -37862,7 +37772,7 @@ bgS bhO tKS blW -nOm +rRB blW vQs xsH @@ -37989,43 +37899,43 @@ aac kSU kSU kSU -fCd +ntU wrp wrp wrp -iVF +bIm cqE -cjd -dzJ -dzJ -dzJ -dzJ -dzJ -dzJ -oom -dzJ -dzJ -dzJ -dzJ -dzJ -dzJ -dzJ -dzJ -dzJ -dzJ -dzJ -dzJ -dzJ -dzJ -dzJ -dzJ -dzJ -oom -dzJ -oCj -ogs -tge -xat +cDt +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +gOA +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +uFJ +gOA +uFJ +hyG +qYV +gNB +vky bhK ahA ahA @@ -38184,11 +38094,11 @@ aac aac aac crA -iEn -wrU +tNG +mrc akr -gEm -ybW +oca +sUh cqE anj cqE @@ -38215,12 +38125,12 @@ cqE cqE cqE cqE -fjy +nET aSP -rPp -rPp +kuj +kuj azx -xat +vky bhK ahA ahA @@ -38379,11 +38289,11 @@ aac aac aac crA -oxN -wrU +wvN +mrc aks -gEm -ybW +oca +sUh cqE anj aom @@ -38410,12 +38320,12 @@ cqE aom cqE cqE -fjy +nET azx -oEB -dfM -dfM -fKw +wzL +cem +cem +ecw bhK ahB aiP @@ -38442,7 +38352,7 @@ aVq aVq bgS bgS -uGQ +bED xzR bgS bhN @@ -38574,40 +38484,40 @@ crA crA crA crA -jnR +iqb ddp ddp ddp crY -tad -mPb +qVS +lyi ctC bYE -avI -avI +lVB +lVB crY -bBI -aie -wuz +kDP +kKo +eua cbj -tmr -tmr -tmr -tmr -xkI +wta +wta +wta +wta +lRF crY -kSw -kSw -kBM -xjD -kSw -kSw +rLO +rLO +aPf +itk +rLO +rLO crY -ogs +qYV aQv -fjy -rbo -xat +nET +otj +vky agA apA apA @@ -38616,7 +38526,7 @@ aZW crN bjB bnn -uno +dFE pkO pkO pkO @@ -38769,40 +38679,40 @@ cnO cnO cnO cnO -ffW +vuY cnO cnO ddp -fmi -tmr -fHz -ulJ +pDo +wta +qXK +qFP ctC -iZg -duY -knK -vkL -qvg +nJv +fXM +gLo +qWi +krf cbj -tmr +wta bPs -gYr -vRm +dSs +bSk aCD aCD ctC -snK -oAy -wek -kJR -wek -wek +rTZ +ulp +uAI +giD +uAI +uAI ctC -cub +nPi aQv -gNM +cgK azx -xat +vky cou bnm ahB @@ -38812,9 +38722,9 @@ crN bjj aYa brf -btV -wYs -bAw +cRu +iDX +eNT bEX brf aZV @@ -38960,42 +38870,42 @@ aac crA cnO bjY -chR -gKR -pUz +wEm +uUP +iSB bjY -chR -iEn +wEm +tNG cnO ddp -sxu -tmr -fHz -vTd +hGR +wta +qXK +xqt ctC -vkL -dlq -egw -vkL -qvg -tmr +qWi +oEa +uhW +qWi +krf +wta cbj -fKO -xeq -xeq +qnJ +vgf +vgf crY crY crY crY -oAy -vnJ -tmr -tmr -wAY +ulp +nkq +wta +wta +czh ctC -mUW +cFy aQv -fjy +nET azx aac cou @@ -39033,8 +38943,8 @@ cwS cwS cwS glN -xih -xih +eFs +eFs glN bsU bhN @@ -39154,43 +39064,43 @@ aac aac crA cnO -ffW -jxa -xFP -pUz -kRL -yfc -tYt +vuY +lGV +hwp +iSB +cos +bKQ +moe cnO ddp crY -tad -mPb +qVS +lyi ctC ctC -kdh +vOX ctC crY -eus -qvg +iTK +krf cbj -tmr -pov -kxD -pOh +wta +lrr +uVE +elO crY -jtF -eah +gdX +vAt crY crY -dcZ -emb -rCF -wek -ezG -ogs -kkB -jzE +hLe +mzc +qxH +uAI +dla +qYV +mkE +efe aac aac cou @@ -39228,9 +39138,9 @@ cwS fzN cwS cbO -yfW -tOv -nHc +kAQ +gZy +eCn bsU bsU bhN @@ -39349,49 +39259,49 @@ aac aac crA cnO -oKh -ddg -edw -kjL -nYk -bGI -iVm -edw -bEG -mLS -epW -cjs -mLS -hGZ -dPA -siw -hbI -hbI -uvV -epW +gSu +sAD +xKI +esV +rLW +uId +kvc +xKI +vdk +kFT +hzd +cPR +kFT +kvZ +oSa +ulS +alt +alt +glJ +hzd awG -oag -hbI -hbI -siw +vAH +alt +alt +ulS aEI aEI -cdN -iDj -xUt -dcZ -tmr -wek -ezG -ogs +voo +hmq +oGM +hLe +wta +uAI +dla +qYV aQv -lvY +uLD aSR -fWW -tOh -tOh -tOh -fWW +wxE +rmB +rmB +rmB +wxE crN aVq crN @@ -39423,9 +39333,9 @@ cwS pvA nGi cbO -iaU -shk -nHc +mDj +jvv +eCn aac aac aac @@ -39545,48 +39455,48 @@ aac crA cnO bjY -ltc +otp cnO cnO -ntW +oOx bjY -gKR +uUP cnO ddp crY -tad -mPb +qVS +lyi ctC ctC -xZX +ygs ctC -juz -rnl -qpi +ewy +dnK +dYm cbj -vHO -pov -kxD -pOh +wiZ +lrr +uVE +elO crY crY crY -mgD +ciY ctC -ngQ -jCg -rCF -wek -ljR -cub +sUz +qfS +qxH +uAI +fzx +nPi aQv -gNM -qAt -pKD -eaa -eaa -eaa -pKD +cgK +tBe +lBP +ngR +ngR +ngR +lBP bjj aVq crN @@ -39619,7 +39529,7 @@ pvA xFl cwT cbO -wQT +nJX cwT aac aac @@ -39738,50 +39648,50 @@ aac aac aac crA -lcA -bYP -sge -oKh +mMY +wXW +sJs +gSu cnO -chR +wEm bjY -ntW +oOx cnO ddp -clY -tmr -fHz -clY +xsm +wta +qXK +xsm ctC -mgD +ciY aCl -kBy -vkL -hdv -tmr +lYG +qWi +pEh +wta awI -hdv -vkL -vkL +pEh +qWi +qWi ctC ctC crY -cOA +jrW aHb -xUt -dcZ -rCF -wek -srm -ogs +oGM +hLe +qxH +uAI +wHa +qYV aQv -fjy -prY -pKD -eaa -eaa -eaa -pKD +nET +nYA +lBP +ngR +ngR +ngR +lBP crN crN aVq @@ -39933,59 +39843,59 @@ aac aac aac crA -sRk -oKh -rgR -oKh +oso +gSu +kQY +gSu cnO -xRX +gto ajl -lWm +bDu cnO ddp -rej -rbR -uiW -pYt +jXw +jjU +wKS +mVW ctC -igd +bOL ctC -juz -rnl -qpi +ewy +dnK +dYm cbj -tmr -pov -kxD -pOh +wta +lrr +uVE +elO ctC aDF -vfi +pQi aFQ -qne -qKg -nLc -tmr -wek -ezG -ogs -kkB -gOl +xgH +jDE +oTB +wta +uAI +dla +qYV +mkE +kbr aSR -xjN -ubX -ubX -ubX -xjN +iPi +dxl +dxl +dxl +iPi crN bjN crN aZv csI -btW -bxb -bAz -bEY +nXe +hAh +cMO +hQH csI bab aWp @@ -40029,8 +39939,8 @@ aac aac aac mIG -rZv -iOo +mds +jTi bjL bdL ben @@ -40130,7 +40040,7 @@ aac crA cnO cnO -ltc +otp cnO cnO ddp @@ -40138,34 +40048,34 @@ ddp ddp ddp ddp -clY -tmr -fHz -clY +xsm +wta +qXK +xsm ctC -mgD +ciY ctC -vkL -dVw -fKO -tmr +qWi +hIB +qnJ +wta cbj -hdv -jQg -jQg +pEh +mHT +mHT ctC cdH -nux -lPr -sTd -egQ -rwl -fgX -wek -ezG -ogs +xta +vNs +vxB +wWt +seF +fKC +uAI +dla +qYV aQv -fjy +nET aac aac aWk @@ -40176,7 +40086,7 @@ aWg crN bjN bcx -uno +dFE pkO pkO pkO @@ -40225,7 +40135,7 @@ aac aac lcs kZU -rZv +mds bdL ben bea @@ -40325,42 +40235,42 @@ crA crA ddp ddp -paQ +fLH ddp ddp ptT -ajm -dxV -dxV +lPv +umL +umL ddp crY -tad -mPb +qVS +lyi ctC ctC -xZX +ygs ctC ctC ctC -amT +kgx avr -tmr +wta bPs -bNA -bNA +cYA +cYA ctC ctC -iCP -oiu -dcZ -jCg -kGj -vHO -wek -ezG -cub +igx +ygQ +hLe +qfS +xOt +wiZ +uAI +dla +nPi aQv -gNM +cgK rtW aac aWk @@ -40419,8 +40329,8 @@ bur aac aac mIG -iOo -iOo +jTi +jTi bjL ben hir @@ -40518,27 +40428,27 @@ crA crA crA cnO -bKW -dwy -jsY -dwy -osf -ico -dwy -dwy -dwy -bEG -mLS -epW -uiW -iIX +xFP +aZR +lWJ +aZR +nBc +oCA +aZR +aZR +aZR +vdk +kFT +hzd +wKS +inh ctC -mgD -sFv +ciY +sUf arZ -sFv -qky -tmr +sUf +wsq +wta cbj bPs azD @@ -40546,21 +40456,21 @@ azD ctC ctC ctC -mIm -rZa -rZa -fgF -lGA -ujH +iIR +vRa +vRa +uRY +sGs +tNc crY -mUW +cFy aQv -fjy +nET azx aac -wrf -fkE -qAn +vzi +gTC +mvL aVq crN aWp @@ -40609,7 +40519,7 @@ aac aac bur bug -eyt +iWR bus aac aac @@ -40713,48 +40623,48 @@ cnO cnO cnO cnO -ltc +otp ddp bjY bjY ddp ddp -vWZ -kub -mQb +vaB +gMb +rvU ddp crY -tad -mPb +qVS +lyi ctC ctC -lAU -sFv +kHC +sUf afv -sFv -lUr +sUf +jYx cbj -fyl -tmr +uKQ +wta cbj -tmr -tmr -ikW -bOX +wta +wta +wEG +xcL bZV bPs aIo aJR bPs -bOX -ikW -wFY -wFY -oDI -cCD +xcL +wEG +xcx +xcx +wvp +dSu cnB -iBP -iBP +wHn +wHn cnB aac bcx @@ -40905,13 +40815,13 @@ aac aac crA cnO -igZ -oKh +tug +gSu cnO -jPW +rcm ddp -oKh -eRL +gSu +paU cnO ddp ddp @@ -40919,38 +40829,38 @@ ddp ddp ddp crY -tmr -kDt -uIT -iDj -lWq -sFv +wta +nrM +rTG +hmq +nOx +sUf ctl -sFv -jRh -prk +sUf +cQF +hEc emg kUN azE aBl aCG -dGq -nCa -gFs -ipe -ipe -cDx -wnd -dGq -dGq +uDb +wcQ +cWZ +fty +fty +iKM +jJV +uDb +uDb aPa aPa aRF -wFY -luV +xcx +bVg aWl bXV -nvy +nqa bcx bcx bcx @@ -40978,7 +40888,7 @@ ben ben bin cwS -dMw +wZT cuy cwS aac @@ -41099,53 +41009,53 @@ aac aac aac crA -mXb -iQN -dwy -bEG -fuu -bEG -dwy -nzb +hoK +tHM +aZR +vdk +jeK +vdk +aZR +qwJ cnO wGx wGx -llR -llR -llR +oIR +oIR +oIR wGx -sep -qSb +fQc +aHG wGx crY -mgD +ciY ctC ctC ctC ctC -egU +cNF bZV ctC ctC -wSE -iWE +pJT +hFQ ctC ctC ceW -kFh -hmR -juX -gVE +nhu +qMZ +wTV +bVl ctC ctC -eXn -wFY -oDI -vgX +wNo +xcx +wvp +cJV cnB bXd aXB -luV +bVg bcx aWp bcx @@ -41173,7 +41083,7 @@ ben ben bit cwS -lrO +uzV rrV cwS pax @@ -41295,52 +41205,52 @@ aac aac crA cnO -mkU -oKh +cQO +gSu cnO -ltc +otp ddp -uGv -jjX +fLD +nAA cnO wGx -kOu -iBi -iBi -iBi -mbc -iBi -xkV +qXi +bZn +bZn +bZn +xTO +bZn +eEN wGx crY -pKF -roY -roY -roY -siw +pFd +iDu +iDu +iDu +ulS avu sJd -qzF -joD -hBs -wUD -uCk +tfa +uCf +fzL +osh +urE aEL crY -weE -weE -weE +fQj +fQj +fQj aLl aMF ctC cjw cnB -oDI +wvp aLq -tan +nVq aWm aXC -luV +bVg bcx aac aac @@ -41368,7 +41278,7 @@ ben bdL biu cwS -nSQ +xzn nAM fRi hpe @@ -41493,44 +41403,44 @@ cnO cnO cnO cnO -ltc +otp ddp cnO cnO cnO wGx -hFR -vwj -vns -jcJ -jcJ -vns -xkV +xhd +deY +dgk +xVV +xVV +dgk +eEN wGx crY crY -pUp +epY crY crY ctC -tmr +wta awK -qzF -cgA -pPG -uiX -hMC -qzF +tfa +rKH +mIu +hpE +gVi +tfa aLM aNe aNe aOX aPn aOX -wiy +hXU aPe aQx -nfW +tss aSW cnB cjw @@ -41688,34 +41598,34 @@ crA crA crA crA -jPW +rcm ddp wGx wGx wGx wGx wGx -pbs -mQS -mCH -eLK -vns -xkV -snR -pRl -pRl -pRl -npZ -huf +rTL +val +wvl +xRT +dgk +eEN +rCz +rns +rns +rns +nMz +dfQ bYE cbj bZV -qzF -cON -sgf -wTN -wcq -qzF +tfa +lHN +ejK +vyp +uQE +tfa aMV aNj aNm @@ -41725,9 +41635,9 @@ aPT aNL aPh cjw -oDI +wvp aLq -luV +bVg jOa aXD cjw @@ -41766,7 +41676,7 @@ aac aac rsm coC -ius +cAh coC wrw aac @@ -41883,35 +41793,35 @@ aac aac aac cfr -kNB -laK -lPp -hYj -cAv -lPp -iOD -pqB -vEW -jhE -jhE -pdt -jti +oRk +sdj +uxd +ocs +cLC +uxd +ttN +hfb +apB +kJC +kJC +mwZ +rxb bAt ctC ctC -pUp +epY ctC ctC ctC -mSd -omZ +ewm +jCw ctC ctC -iWE -iWE -iWE +hFQ +hFQ +hFQ ctC -rHE +hUQ aNl aNo aNl @@ -41919,8 +41829,8 @@ aOY aPX cjw aPi -wiy -oDI +hXU +wvp cmC cnB bXd @@ -41930,8 +41840,8 @@ aac aac aac aac -kkd -dxe +mYv +qkL aYX aWp aWp @@ -42078,27 +41988,27 @@ aac aac aac cfr -hXC +qdJ xdE wGx -nmp -fjw -vns -sAq -iBi -fjw -vns -jcJ -vns -xkV -oRH -kiY -wQK +uwu +yay +dgk +luD +bZn +yay +dgk +xVV +dgk +eEN +cyz +nzD +glE cbj -lqt -clY +mJH +xsm ctC -rnA +pNC bZV aym ctC @@ -42115,9 +42025,9 @@ aPX cjx cjw cnB -jIV -wgR -tan +oxj +uyw +nVq aLq aXF cjw @@ -42125,8 +42035,8 @@ aac aac aac aac -kkd -dLo +mYv +hDc aYY aYd bcx @@ -42181,32 +42091,32 @@ xTU bvE bvE bvD -iMo -lpF -lpF -lpF -lpF -lpF -lpF -lpF -lpF -lpF -lpF -lpF -lpF -qkH -lpF -lpF -lpF -lpF -lpF -lpF -lpF -lpF -lpF -lpF -lpF -uas +hNT +wsE +wsE +wsE +wsE +wsE +wsE +wsE +wsE +wsE +wsE +wsE +wsE +nFh +wsE +wsE +wsE +wsE +wsE +wsE +wsE +wsE +wsE +wsE +wsE +wdF bwt xTU kkL @@ -42272,34 +42182,34 @@ aac aac bAu bGg -bLm +dyh afI xdE -rPN -vns -fjw -xWJ -eOT -iBi -qGh -weo -iKm -vns -fUk -qSJ -epW -epW -epW -dxu -epW -rRf +rfD +dgk +yay +ilQ +ozk +bZn +lWo +qbE +dBZ +dgk +ujw +nnK +hzd +hzd +hzd +vIK +hzd +lDg aEI kSW ayn -ljR +fzx ciA ciA -dOL +jkq aLy aMH aNo @@ -42307,11 +42217,11 @@ aNo aNo aNl aQa -oLm +jKU aPk -wFY -wZv -dKh +xcx +thq +mqy cnB cjw cjw @@ -42320,8 +42230,8 @@ aac aac aac aac -lhJ -dLo +cJN +hDc aWp aYd tUu @@ -42376,32 +42286,32 @@ bvJ bvE bvD bvD -uCA +vzI bJI -ffy -feU -cwx -xiu -ffy -prp -cwx -xiu -ffy -feU -cwx -xiu -ffy -feU -cwx -xiu -ffy -feU -cwx -xiu -ffy -feU +oyj +laI +eEm +yiu +oyj +wSR +eEm +yiu +oyj +laI +eEm +yiu +oyj +laI +eEm +yiu +oyj +laI +eEm +yiu +oyj +laI bJI -joh +haA bvE bwt kkL @@ -42467,34 +42377,34 @@ aac bAu bwg hGO -bLm +dyh afJ xdE -cue -vns -sHI -mOB -eOT -iBi -vns -mxf -mxf -vns -xkV -wNz -tmr -tmr -tmr -tmr -tmr -tmr +mSD +dgk +mbA +alg +ozk +bZn +dgk +mBM +mBM +dgk +eEN +dGW +wta +wta +wta +wta +wta +wta cbj bZV bPs -srm +wHa ciA ciA -kTH +rVA aLz aMI aNo @@ -42502,12 +42412,12 @@ aNo aNo aNo aOB -oLm +jKU aPk -wFY -uwS -wFY -luV +xcx +fOu +xcx +bVg jOa eRV cjw @@ -42515,8 +42425,8 @@ aac aac aac aac -jjk -dxe +tvg +qkL aYZ aWp aYd @@ -42571,8 +42481,8 @@ bvE rNI xTU bvD -uCA -rKM +vzI +cUs tCR jWs ewk @@ -42595,8 +42505,8 @@ jWs ewk jWs jWs -doy -joh +ssF +haA bxo bwt kkL @@ -42662,28 +42572,28 @@ bAu bwg acX hGO -bLm +dyh afI xdE -oKP -vns -tyb -vns -rJY -iBi -vns -jcJ -vns -lky -xkV -oRH -clY -xfR +qQM +dgk +lGc +dgk +vWv +bZn +dgk +xVV +dgk +cas +eEN +cyz +xsm +uFb cbj -xfR -clY +uFb +xsm ctC -rnA +pNC bZV aym ctC @@ -42699,9 +42609,9 @@ aPr aOB cnB cjw -isE -uwS -vgX +oiz +fOu +cJV cnB coy aXB @@ -42710,8 +42620,8 @@ aac aac aac aac -jjk -dxe +tvg +qkL aYX aWp aYd @@ -42766,8 +42676,8 @@ xTU rNI xTU bvD -uCA -kqh +vzI +lmQ jWs jWs jWs @@ -42790,8 +42700,8 @@ jWs jWs jWs jWs -ldI -joh +fXu +haA bvE bwt bwt @@ -42858,19 +42768,19 @@ acX acX hGO xdE -hXC +qdJ xdE agN -lAD -sep -rkF -fqs -iBi -vns -tvu -rOy -vns -mQl +dbE +fQc +pUO +xrH +bZn +dgk +gPz +uLk +dgk +qhB wGx crY crY @@ -42878,8 +42788,8 @@ crY crY crY crY -mSd -omZ +ewm +jCw ctC aHb aBq @@ -42893,11 +42803,11 @@ aJX aMJ aNB cjy -luV -iIG -uwS -wFY -tan +bVg +hMu +fOu +xcx +nVq aWn aXI cjw @@ -42929,8 +42839,8 @@ bdL bdL ben beQ -iOo -iOo +jTi +jTi lcs aac aac @@ -42961,8 +42871,8 @@ hPr rNI bvE bvD -uCA -lNm +vzI +wUb jWs jWs jWs @@ -42985,8 +42895,8 @@ jWs jWs jWs jWs -unO -joh +pfl +haA bvE bwt byr @@ -43053,31 +42963,31 @@ acX acX hGO xdE -kxk +qJe xdE wGx wGx -tlv +vNq aiH wGx -cwg -vns -mxf -mxf -vns -qnp +tvz +dgk +mBM +mBM +dgk +qqG auC crY crY -lvI -xXH +oeM +jRa att crY -tmr +wta bZV ctC -pZY -upb +nfV +dKP ctC aDN aER @@ -43085,13 +42995,13 @@ aMJ aNo aPX aJY -nms +qhd aMK cjy -luV -nBK -uwS -tkr +bVg +haB +fOu +mVl cnB cjw cjw @@ -43113,8 +43023,8 @@ aac aac aac mfp -xih -xih +eFs +eFs cwT beW bea @@ -43124,7 +43034,7 @@ bdL bdL bxy ben -iOo +jTi kZU lcs aac @@ -43156,8 +43066,8 @@ rNI rNI xTU bvD -uCA -kYs +vzI +jrS vqx jWs jWs @@ -43180,8 +43090,8 @@ jWs jWs jWs jWs -oVT -joh +pPp +haA kkL bvE bwt @@ -43248,31 +43158,31 @@ acX acX hGO xdE -phV -laK -lPp -mzU -sep -sep -cHa -cRe -jpd -dFg -kXY -iBi -xkV +wrc +sdj +uxd +cAe +fQc +fQc +jau +vYL +vqq +dvd +gCk +bZn +eEN wGx crY aqg -kwx +ska asf atu aLl cbj bZW ayo -lNA -ogD +wVm +jpq ctC aDO aER @@ -43284,10 +43194,10 @@ ciA ciA ciA aQu -vNi -uwS -wFY -luV +vJS +fOu +xcx +bVg jOa aXJ cjw @@ -43302,15 +43212,15 @@ aXP aXP aXP aWp -lJg -wUF -nZl +hXX +iTR +lic aac aac mfp -wMs -ioM -nHc +xri +xfV +eCn beY ben bea @@ -43319,8 +43229,8 @@ bdL bdL bdL bjL -iOo -iOo +jTi +jTi lcs aac ble @@ -43351,8 +43261,8 @@ bvE bvE bvE bvE -uCA -rKM +vzI +cUs jWs jWs jWs @@ -43375,8 +43285,8 @@ jWs jWs jWs jWs -doy -joh +ssF +haA bvD bvD bvE @@ -43442,32 +43352,32 @@ jbI bDE acX hGO -bLm +dyh bID xdE -sep -sep -sep -sep +fQc +fQc +fQc +fQc xdE xdE -vYp +nav xdE -lCu -ugw -tQz +kGS +pST +czs xdE crY crY -oJb +ktY bXe atv crY -lKw +jUl bZV -hVR -wek -mFZ +tSI +uAI +keE ctC aDO aER @@ -43478,10 +43388,10 @@ cjy ciA ciA aNM -luV -nBK -uwS -vgX +bVg +haB +fOu +cJV cnB aPh aXE @@ -43497,15 +43407,15 @@ aXP aXP aWp aWp -lsU +uMo bRf cbu aac aac mfp -yei -fyE -nHc +poW +lKF +eCn beZ bfr bea @@ -43546,8 +43456,8 @@ bvE bvE bvE bvD -uCA -rqJ +vzI +lBh jWs jWs jWs @@ -43570,8 +43480,8 @@ jWs jWs jWs jWs -ldI -joh +fXu +haA bvD bvD bvE @@ -43637,29 +43547,29 @@ aac jbI bDE hGO -bLm +dyh bID xdE -eRR -woO -ljk -sep +sDg +nOL +dWt +fQc xdE -riQ -mLX -jMq -mLX -jMq -lCl -jMq +kku +jKK +iEd +jKK +iEd +swI +iEd crY crY bXY -trk +oji bXY crY ctC -gCv +lNn ctC azO ctC @@ -43673,11 +43583,11 @@ aJZ ciA ciA aNN -luV -dAI -uwS -wFY -tan +bVg +mAA +fOu +xcx +nVq aLq aXK cjw @@ -43692,13 +43602,13 @@ aZP glL aac aZJ -lsU +uMo bRf cwT mfp mfp cuz -lpb +fzF isa cwT ocw @@ -43741,8 +43651,8 @@ bvE bvE bvD bvE -uCA -lNm +vzI +wUb jWs jWs jWs @@ -43765,8 +43675,8 @@ jWs jWs jWs jWs -unO -joh +pfl +haA bvE bvE bwt @@ -43832,46 +43742,46 @@ aac aac jbI bEh -bLm +dyh bID xdE xdE xdE xdE -vUv +wdH xdE -dpj -nHb -ygZ -nHb -ygZ -qEv -scW +qBW +qQj +ibW +qQj +ibW +rWH +hRU crY -inf +vUZ arj ash atw ctC emg sJd -hVR +tSI cbj aBu -sFv +sUf oLv aER aMT aNo aNB cnB -vGF -uDR +oJe +sga cjw cnB -gGw -oDI -wFY +wMh +wvp +xcx cnB cjw cjw @@ -43887,18 +43797,18 @@ aZP glL aac aac -ouO +iOy bRg cbO -kur -qhD +hiW +pMh cuA -qsn -fdL -hjo -iFM +fdD +eVP +qxB +laS cbO -oPZ +fXG bgq bea bdL @@ -43936,8 +43846,8 @@ bvD bvD bvD bvE -uCA -kYs +vzI +jrS jWs jWs jWs @@ -43960,8 +43870,8 @@ jWs jWs jWs jWs -hEt -luq +leB +qem bvE byr kBL @@ -44028,42 +43938,42 @@ aac aac aac cfr -iXA +tDa bIK bIK bIK -stb -xWg +nAP +rum xdE -fZD -pen -dqs -pen -ksE -vlY -jMq +uiH +wMF +mTo +wMF +vzL +sOe +iEd crY -npc +wFX arj ash -atx +ukO ctC avB awN ctC cbj -aBv -sFv +lAG +sUf ciA aER aMU aNo aOz -oLm -wFY -wFY -tVe -nLv +jKU +xcx +xcx +pLn +lCE aPa aRF aLq @@ -44090,10 +44000,10 @@ cmq cbO cbO iuB -gUz +mFR ofd -gpk -vKC +rxA +fSz bha bha bhe @@ -44131,8 +44041,8 @@ bvD bvE bvD bvE -uCA -rKM +vzI +cUs jWs jWs jWs @@ -44155,8 +44065,8 @@ jWs jWs jWs jWs -doy -joh +ssF +haA bvD bvE bwt @@ -44228,40 +44138,40 @@ cfr cfr cfr cfr -mai +mxv xdE -uJe -jMq -mLX -jMq -mLX -bFk -scW +hwj +iEd +jKK +iEd +jKK +vSz +hRU crY crY arj bXf bXZ -siw +ulS avC bPs ctC azP aBw -sFv +sUf ciA aER aMS aNo aOB -oLm +jKU aLq aML aNP -wFY -wFY -oDI -tPV +xcx +xcx +wvp +miJ cjw aac aac @@ -44280,15 +44190,15 @@ aac aac aac mfp -jpE -lJZ -dxA -hIf -fdL -ttk -fdL +lEE +tBi +jRp +wXe +eVP +gNE +eVP cbO -oqs +aIO bgq ben bdL @@ -44326,8 +44236,8 @@ bvE bvD bvE bvD -uCA -kqh +vzI +lmQ jWs jWs jWs @@ -44350,8 +44260,8 @@ jWs jWs jWs jWs -ldI -joh +fXu +haA bvD bvE bwt @@ -44423,26 +44333,26 @@ aac aac aac cfr -mai +mxv xdE -gsB -gfB -eAN -kLz -xEI -lNO -jMq -gHP +pSu +qGQ +bid +xRh +kvT +mLj +iEd +xEr ctC ctC -nug +bOk ctC ctC -hOJ +iat ctC ayp -weE -weE +fQj +fQj ctC oLv aER @@ -44450,12 +44360,12 @@ aMS aNo aPX aKa -aFF +gkm cjw cjw cjw cnB -cxL +wtk cjw cnB aac @@ -44479,7 +44389,7 @@ mfp mfp mfp cbO -wQT +nJX mfp cwT cbO @@ -44521,8 +44431,8 @@ bvD bvE bvE bvE -uCA -lNm +vzI +wUb vJj jWs ewk @@ -44545,8 +44455,8 @@ jWs ewk jWs jWs -unO -joh +pfl +haA bvD bvE bwt @@ -44618,7 +44528,7 @@ aac aac aac cfr -mai +mxv xdE xdE xdE @@ -44626,11 +44536,11 @@ xdE xdE xdE aui -gsP +tjU xdE xdE xdE -ffZ +lDq xdE xdE avE @@ -44645,13 +44555,13 @@ aMV aNo aOB cjw -jAV -lSd -lxV -gWv +kiq +ssO +pHI +dOe cjw -iAG -stx +gys +jkN cjw aac bgh @@ -44673,11 +44583,11 @@ aac aac aac mfp -dnY -jIO -opG +qkN +liw +vaO cbO -jpB +ivM bgs bea ben @@ -44716,32 +44626,32 @@ bvE bvE bvE xTU -uCA +vzI bJI -moh -lsu -qRN -omc -moh -lsu -qRN -omc -moh -lsu -qRN -omc -moh -lsu -qRN -omc -moh -lsu -qRN -omc -moh -lsu +nuG +evJ +vmp +kAq +nuG +evJ +vmp +kAq +nuG +evJ +vmp +kAq +nuG +evJ +vmp +kAq +nuG +evJ +vmp +kAq +nuG +evJ bJI -joh +haA bvD bvE bwt @@ -44813,21 +44723,21 @@ aac aac aac cfr -uWm -stb -stb -osG -stb -stb -stb -osG -pRC -pRC -pRC -stb -osG -stb -lRK +tnU +nAP +nAP +dXX +nAP +nAP +nAP +dXX +rFl +rFl +rFl +nAP +dXX +nAP +bzF avF avF ayq @@ -44840,13 +44750,13 @@ aMG aNo aOE cjw -wee -xZw -psi -plD -uVN -amS -qIp +iFe +ell +kPm +xhw +exH +mNv +xPB cjw aac aTV @@ -44867,12 +44777,12 @@ aZP aZK bgh bcz -nHc -vhF -jIO -lpb -nHc -iyA +eCn +mMQ +liw +fzF +eCn +ejF bgt ben bea @@ -44911,32 +44821,32 @@ bvD bvD bvD bvM -jhI -xQs -xQs -xQs -xQs -xQs -xQs -qKq -xQs -xQs -xQs -xQs -xQs -xQs -xQs -xQs -xQs -xQs -xQs -xQs -xQs -xQs -xQs -xQs -xQs -maO +nHd +tIB +tIB +tIB +tIB +tIB +tIB +lET +tIB +tIB +tIB +tIB +tIB +tIB +tIB +tIB +tIB +tIB +tIB +tIB +tIB +tIB +tIB +tIB +tIB +fpg bvD bvE bwt @@ -45009,12 +44919,12 @@ aac aac cfr cfr -hVK -hVK +pGO +pGO xdE xdE -hVK -hVK +pGO +pGO cfr cfr cfr @@ -45037,7 +44947,7 @@ aOF cnB cjw cjw -mSM +syq aPq cnB cjw @@ -45063,11 +44973,11 @@ aZK aZK bcz cbO -efL -jIO -vNW +kHi +liw +lth cbO -jpB +ivM bgs bea ben @@ -45219,7 +45129,7 @@ aac aac auv ciA -jzx +qSj aHB aZK bdx @@ -45243,14 +45153,14 @@ aQI aVi aQq aWy -dhh -mBq -nQn -cLf +xSG +wWm +iSs +uvi cfR -fTH -weJ -hsd +uHj +neC +uku bIV aZP aZP @@ -45259,10 +45169,10 @@ bav bcA cwT cbO -xih +eFs lQT cwT -jpB +ivM bgu bhb ben @@ -45279,7 +45189,7 @@ aac aac aac vlH -jbt +ovd ble bme aac @@ -45439,13 +45349,13 @@ aQq aVv aac bwp -mBq -mBq -mBq +wWm +wWm +wWm cfR -pjR -psv -sIg +qyP +fJg +ydF cfR bav aZP @@ -45454,10 +45364,10 @@ aZP aZK bcW bdO -eYN -ktK -ktK -fMG +skR +ttR +ttR +ipO bgu bea bdL @@ -45492,9 +45402,9 @@ bdL bdL bdL xFH -jld -avZ -tJO +pRb +dzY +dHB xFH aac bwt @@ -45634,12 +45544,12 @@ aTg aVP aac bwp -rZl -egq +cVW +dHT coB coB cfR -pWL +wsH cfR coB baw @@ -45687,9 +45597,9 @@ bdL bdL bvu wGm -xkc +qlz npX -xkc +qlz qfC aac bwu @@ -45832,10 +45742,10 @@ bwp coB cfR cfR -iTQ -jgz -xeW -wna +hcm +ovg +tdK +vTr bIW coB baK @@ -45882,9 +45792,9 @@ bdL bdL bvv wGm -xpk +fMG hUJ -xpk +fMG qfC aac aac @@ -46025,14 +45935,14 @@ aDQ bhz bhz bkv -tbT -rky -gAp -ort +xRQ +nFL +pXh +rNM cqH cqH bIX -cYB +nOB bgh aZK aZP @@ -46077,9 +45987,9 @@ bhe bha bvx wAG -fHi +lrj oPz -ukI +dik iNe aac aac @@ -46218,16 +46128,16 @@ bgh aac bwp bwp -eEB -pGM -fEC -qJp +oqn +hWM +nhi +xht buO bxs ctA -qJp -cqW -cYB +xht +vre +nOB bgh bbj aZK @@ -46272,9 +46182,9 @@ ben bea aac vxd -dXR +pvP hUJ -rai +tWX vxd aac aac @@ -46412,18 +46322,18 @@ aTb aac aac bwp -ejj -gAp -hTN +iQZ +pXh +ifc cqH brv -erP -ueB +flW +tfW coB -vUH -eGt +xsh +fgQ coB -qUn +ilk coB bcd aZK @@ -46467,16 +46377,16 @@ bea aac aac wGm -mVh +eQv hUJ -vsc +aUi qfC aac aac aac mfp -xih -xih +eFs +eFs ocw kkL bwt @@ -46607,19 +46517,19 @@ bgh aac aac bwp -iJm -ort +mvv +rNM cwe -erP -tRg +flW +chI coB cfR cfR -lba -hTN -jxR -qIB -cYB +gxa +ifc +qWu +hyc +nOB bcg aZK bdx @@ -46662,17 +46572,17 @@ aac aac aac wGm -mVh +eQv hUJ -vsc +aUi qfC aac aac aac mfp -hLT -bmx -nHc +gFz +ykc +eCn kkL kkL bwt @@ -46802,19 +46712,19 @@ aac aac aac bwp -oEc -tWN +rcw +ppO bky bZj cfR cfR -cWQ -rWM -tWN -jYc -ukH -qJp -eLR +was +fWS +ppO +kpn +psT +xht +pqg bch bcB bdy @@ -46857,17 +46767,17 @@ aac aac aac hYc -gel +xTn hUJ -rai +tWX hYc aac aac aac mfp -mgn -shk -nHc +beo +jvv +eCn kkL kkL xTU @@ -46997,19 +46907,19 @@ aac aac aac bwp -wpH -ort +jbd +rNM cwe -ejj -cYB -iPP -psv -cMp -ukH -dNG -psv -ort -ltI +iQZ +nOB +qgj +fJg +bAU +psT +dqE +fJg +rNM +saE aZK aZP aZP @@ -47052,16 +46962,16 @@ aac aac aac qfC -xpk +fMG hUJ -vsc +aUi rXy aac aac sgG mfp cbO -wQT +nJX mfp kkL xTU @@ -47141,9 +47051,9 @@ aac aac cmo cmp -mbp -dGk -pOQ +rTa +kxu +eFm cmo anb aoA @@ -47169,10 +47079,10 @@ ccd ccd bYJ ccd -etE -bNd -yaC -vIu +sUn +gyN +pql +jsq aKk bbj bbj @@ -47192,19 +47102,19 @@ aac bwp bwp bwp -caD -sOa +jca +cWT csm -tdg -cYB -dWl -psv -ryC -psv -psv -psv -qIB -cYB +onp +nOB +qCy +fJg +wCS +fJg +fJg +fJg +hyc +nOB bdQ bgh bbj @@ -47247,16 +47157,16 @@ aac aac aac qfC -xpk +fMG hUJ -sKy +tPe qfC aac aac sgG -rmU +gLk ubN -xpk +fMG sgG nJK bxy @@ -47336,10 +47246,10 @@ aac aac cmo dOG -kfQ +qyJ juY -cUX -sdt +pDT +lIp anE amj amj @@ -47355,19 +47265,19 @@ aac aac aac adS -bKF -wuQ -bKF +vFT +bFH +vFT vPi -iMy +wvb asj -uOn +rIL cuP uKj -teY +bXX kcw kcw -vIu +jsq aKk bbj bbj @@ -47385,20 +47295,20 @@ aac aac aac bwp -joo -wDw -sIg -ueB +ecH +psp +ydF +tfW cwe -mbv -cYB -woT -psv -ryC -cSO -uSx -piS -gxE +mSt +nOB +mAt +fJg +wCS +sxx +ggQ +xJq +kjW bIV bgh bgh @@ -47412,13 +47322,13 @@ tIl aac bhS dOO -wnm -llP -wnm -nLX +bcl +xzV +bcl +eZx dOO eMZ -iyS +jiU dOO dOO boG @@ -47442,16 +47352,16 @@ aac aac aac nmS -jJX +bRx hUJ -vsc +aUi rXy aac aac sgG -lmS +jCa lrd -cLR +iRW sgG nJK bea @@ -47531,9 +47441,9 @@ aac aac cmo cmp -cUX +pDT juY -cUX +pDT cmo anN aoA @@ -47550,19 +47460,19 @@ aac aac aac adS -oce -oce -oce +rEx +rEx +rEx aqj -iMy +wvb jyO -vIu +jsq cuP cuP -rQl +pqj kcw kcw -vIu +jsq aKk bdA bbj @@ -47580,16 +47490,16 @@ aac aac aac bwp -tMp -kSi -hGK -ugd +eTv +dpq +kHG +jMh csm -tOJ +lLn coB bwp -cSy -hTN +tFg +ifc bwp bwp bwp @@ -47607,14 +47517,14 @@ tIl aac aac rOB -cHW -kVW -iUj -cHW +qRd +wdS +rZp +qRd dOO -eQm +eSS qKx -kzw +oVm sbW boG blJ @@ -47637,16 +47547,16 @@ btq jww tWY hYc -gel +xTn npX -rai +tWX hYc sgG sPc xDu -iQw +wxN ubN -xpk +fMG sgG nJK nJK @@ -47726,9 +47636,9 @@ aac aac cmo gDg -cUX -cUX -wTq +pDT +pDT +eWf cmo anb amj @@ -47745,19 +47655,19 @@ aac aac aac adS -jVo -tRz -jVo +jRy +itz +jRy vPi -iMy +wvb asl -hnm +ogO cuP cuP -uOn -vIu -vIu -vIu +rIL +jsq +jsq +jsq aKk bgh bbj @@ -47778,13 +47688,13 @@ bwp coB bcI coB -iAV +gER cwe -pQP +jgH cfR cfR -vUH -eGt +xsh +fgQ bwp aac aac @@ -47802,14 +47712,14 @@ tIl aac aac rOB -iUj -nVS -iUj -iUj +rZp +wTK +rZp +rZp dOO -xHi +nYs opg -xHi +nYs dOO boH blJ @@ -47830,17 +47740,17 @@ btv btv btv btv -kYD -tzb -fHi +lSP +ouA +lrj oPz -cRA -nzn -qII +oPU +gkL +vqv sgG sgG vxd -scT +uPh vxd sgG nJK @@ -47945,12 +47855,12 @@ pRj vPi aqk ark -oyE -vJb +mPZ +ylL cuP cuP -uOn -vIu +rIL +jsq aIz aJp aKl @@ -47972,14 +47882,14 @@ aac aUn cqr cqQ -cYB -iAV +nOB +gER csm -urX +kWQ coB bZj -ort -hTN +rNM +ifc bwp bwp bwp @@ -48002,9 +47912,9 @@ aac aac aac rOB -kAv +mkP khh -xHi +nYs dOO boI bpw @@ -48025,7 +47935,7 @@ btv btv btv btv -hgx +umP qot qot fIG @@ -48033,8 +47943,8 @@ vwC cAt cAt iBM -ulf -uhR +oho +fYr qfC vye sgG @@ -48117,7 +48027,7 @@ aac cmo cmo wYx -gEh +cFL uNi cmo anb @@ -48140,12 +48050,12 @@ pRj vPi aql ark -iMy -aJt +wvb +lhd cuP -uOn -uOn -vIu +rIL +rIL +jsq baT bfa bbj @@ -48167,12 +48077,12 @@ bgh aUn cqr cqQ -cYB -iAV +nOB +gER cwe -oME -hYI -nAE +dUM +iLm +gDJ cqH csm bGa @@ -48220,18 +48130,18 @@ aac aac btq btq -kYD -xpk -xpk +lSP +fMG +fMG hUJ -vsc -xpk -xpk +aUi +fMG +fMG hUJ -vsc -uAh -uAh -ctT +aUi +eSA +eSA +ktp eqO nJK bxy @@ -48312,7 +48222,7 @@ aac cmo tEC wYx -wTq +eWf wYx cmo anb @@ -48330,17 +48240,17 @@ aac aac aac adS -qBy -iLw -ugQ +bEL +qKL +iKb aqm ark -iMy -vJb +wvb +ylL cuP -uOn -hgF -cUo +rIL +kWt +wcl baU aJV aZK @@ -48362,12 +48272,12 @@ bdA aUn cqr aVZ -cYB -iAV +nOB +gER bkz -sqK -nDI -qJp +ehx +qqw +xht ctA bAM bGb @@ -48417,17 +48327,17 @@ aac jww tWY kOr -mVh +eQv hUJ -vsc +aUi gRO -eJA +ifY hUJ -vsc -xpk -xpk -mVh -hDN +aUi +fMG +fMG +eQv +dYG bjL bdL bdL @@ -48525,15 +48435,15 @@ aac aac aac mIE -wCU -vfn -mdi -enk +gLO +wCj +tZm +mRg arm -oja -evv +waH +vyv auw -lIU +oSg aHj bcB aIC @@ -48557,15 +48467,15 @@ tWf aUx cqr cqQ -okh -sHi +jFn +bKg cwe -uSZ +pGL bwp bwp bwp cfR -kAw +gie bJG bwp aac @@ -48612,17 +48522,17 @@ aac aac aac ibH -mVh +eQv hUJ -vsc -uAh -xpk +aUi +eSA +fMG ava oVR qot qot qot -cVb +fMQ bxc bxc bxc @@ -48720,15 +48630,15 @@ aac aac aac amu -chE -lCE -hFD -fBs +fqb +poX +iRJ +wgd arn -iMy -vJb +wvb +ylL ukx -uOn +rIL aHu aZP aZP @@ -48752,10 +48662,10 @@ aTe vgn aVl bcL -nDI -fAv +qqw +kCL bkA -itd +ntE bwp aac aac @@ -48807,17 +48717,17 @@ sgG sgG aac oeH -uNV +xmQ tJp -xfi -uAh -mVh -xpk -vsc -xpk -vZQ -mVh -gdO +pJm +eSA +eQv +fMG +aUi +fMG +fqy +eQv +lId bxd bdL bdL @@ -48915,15 +48825,15 @@ aac aac aac adS -msh -kLo -ctM -fBs +nmr +nuu +lLc +wgd arn -iMy -aJt +wvb +lhd ukx -uOn +rIL aHu aZP aZK @@ -48948,8 +48858,8 @@ axb aVm bcM coB -qUn -gPk +ilk +rxz bwp bwp aac @@ -48990,28 +48900,28 @@ bsu aac aac aac -dkx +pBO btv btq xre aac sgG -jKd -xJq -uAh +vAc +joH +eSA vxd vxd vxd mpr -qXS +vte vxd vxd -dGE -uAh -gaa -uAh -uAh -ctT +qjL +eSA +kpA +eSA +eSA +ktp lTG ben bdL @@ -49110,17 +49020,17 @@ ccd ccd ccd adS -ilZ -ilZ -ilZ +nRJ +nRJ +nRJ aqp -wcf -vYo -vJb +oOF +jEr +ylL bYK -uOn -myc -svh +rIL +mZF +tIV aWd aZP aZP @@ -49182,26 +49092,26 @@ blJ bqE bmp bsN -hTm -oZR -xyL +hWB +nfD +xMI btq btq btq btp aac sgG -rON -rZm -uAh +uMd +eql +eSA vxd -kMA -xlc -dJm +fAi +tCO +psI epm -nkN +tsB sgG -urv +qjQ qfC riY cGg @@ -49303,19 +49213,19 @@ aac aac aac bGo -dFd -cSI -fDl -vNm -fDl -cSI -fDl -vNm -gYX +qoe +bej +byH +eDv +byH +bej +byH +eDv +keD urM -uOn -uOn -vIu +rIL +rIL +jsq aSL aJW aZK @@ -49377,24 +49287,24 @@ blJ bmp bmE bsN -guZ +xxP uul -eSI +mZL btp btq btv btp aac sgG -scT +uPh vxd vxd vxd -jmY -uAh -uAh +loh +eSA +eSA hUJ -tTD +fqT vxd bvq qfC @@ -49509,8 +49419,8 @@ ras cuP ukx cuP -uOn -vIu +rIL +jsq aIG aVp aKs @@ -49572,28 +49482,28 @@ bpA bqF brh brU -jsi +rwe gAv rjG -rZq -pDC -rZq -nme +qoC +dlV +qoC +nRQ aDQ wio -ukI -fHi -fHi -nqo -qhk -uAh -uAh +dik +lrj +lrj +nYX +qGX +eSA +eSA hUJ -nre +kEU vxd vxd -scT -scT +uPh +uPh vxd sgG sPc @@ -49699,15 +49609,15 @@ anw bJJ bJJ bJJ -uOn +rIL cuP cuP ukx cuP -res -vIu -xHy -xHy +jFF +jsq +wOv +wOv ccV jjJ ccd @@ -49718,9 +49628,9 @@ baw bbj aac aac -ktm -vIu -vIu +kNr +jsq +jsq aSL aZP aZP @@ -49750,9 +49660,9 @@ aac bfg bgJ xdr -wOW +umR jVg -jLt +wdk okE aac aac @@ -49767,29 +49677,29 @@ bmp bmE bmp bsN -guZ +xxP tWJ lbh lbh lbh lbh -jJJ +pdB aac sgG -uQt -uAh -xpk -nDk -xpk -xpk -xpk -jOk -vhu +xFm +eSA +fMG +dMz +fMG +fMG +fMG +lOr +yfS vxd -fRc -xpk -xpk -ovk +gmw +fMG +fMG +svd sgG aac aac @@ -49888,34 +49798,34 @@ aac aac aac nkp -tam -uOn -wpJ -kTc -tam -tam +obU +rIL +wYX +dNK +obU +obU cuP cuP cuP -mLz -uOn -uOn -uOn -yaC -ujk +pFm +rIL +rIL +rIL +pql +fnr jjJ jjJ jjJ mGv -cfX +fea aIN baw aPs aac aac -uqK -uOn -vIu +sFc +rIL +jsq aac aWy aZK @@ -49945,9 +49855,9 @@ aac bfg bgI xdr -wOW +umR soI -lPL +xze okE aac aac @@ -49962,29 +49872,29 @@ bmp vXt bmp bsN -guZ +xxP lbh lbh lbh lbh lbh -jJJ +pdB aac sgG -vsc -uAh -fHM +aUi +eSA +rFi vxd -ork -ork +rPw +rPw uph -iNU +pLR vxd vxd -xpk -uAh -uAh -fXq +fMG +eSA +eSA +cCZ sgG aac aac @@ -50089,28 +49999,28 @@ bJJ aov bJJ bJJ -uOn +rIL cuP cuP -mLz -uOn -uOn -uOn -uOn -kgg -hYf -uev +pFm +rIL +rIL +rIL +rIL +sns +kjz +eLp jjJ -wkZ -wkZ +tQF +tQF jjJ -vUY +qEi jjJ ccd ccd jjJ -uOn -vIu +rIL +jsq aac aac aTi @@ -50134,13 +50044,13 @@ aac aac aac fil -vIu -vIu +jsq +jsq bfe bfc bgI xdr -lBd +dSg hPK hYl okE @@ -50157,29 +50067,29 @@ bmp bnu bmD bsN -guZ +xxP lbh lbh lbh twa hLf -hnP +gZW aac sgG -vsc -uAh -xpk -ria -oUW -aTd -lkF -xpk -pqD -eoW -xpk -uAh -uAh -fDb +aUi +eSA +fMG +lLi +xDs +fZE +qSG +fMG +oGg +iXp +fMG +eSA +eSA +tLF sgG aac aac @@ -50287,25 +50197,25 @@ kcw cuP cuP cuP -mLz -vIO -uOn -vIO -uOn -kgg -hYf -oHr +pFm +scc +rIL +scc +rIL +sns +kjz +bKi aEW -uOn -uOn -vOa -uOn -lqc -ygp -ppd +rIL +rIL +iNR +rIL +uVw +nIC +fEN jjJ aQK -vIu +jsq aac aac bgh @@ -50326,17 +50236,17 @@ aZK axb ccs ccs -sMD +vcz cuP -mXY -vIu -wYr +vrP +jsq +sqO bff bfc bgI xhM xnn -flv +cKI xdr czb aac @@ -50352,29 +50262,29 @@ blJ bmp bmE bsN -vBn -cRU +gsX +bQy lbh lbh -cRU -cRU -pli +bQy +bQy +nvc aac sgG -vsc +aUi fNH -fXM -uAh -uAh -uAh -uAh -uAh -sgz -uAh -uAh -uAh -uAh -fDb +fjW +eSA +eSA +eSA +eSA +eSA +shU +eSA +eSA +eSA +eSA +tLF sgG aac aac @@ -50473,34 +50383,34 @@ aac aac aac ccd -xCx -wAM -lIU -qKG -lIU -wAM -lIU +dOh +xgJ +oSg +uhb +oSg +xgJ +oSg cuX cuX -lOw -uOn -uOn -uOn -uOn -kgg -xZj -pPs +qRD +rIL +rIL +rIL +rIL +sns +fVL +wID jjJ -cWO +uRa aHk arm aKi arm arm -gKO -xaT +rTB +lCv fBC -vIu +jsq aac aac aac @@ -50521,11 +50431,11 @@ aac aDd ccs ccs -sMD +vcz cuP -uOn -vIu -mKc +rIL +jsq +mUE bfd bfc bgI @@ -50548,28 +50458,28 @@ blJ tQg brW bsn -jQS +nPP lbh -eSI +mZL vxd vxd vxd sgG sgG -jED +iNh sly uLK -uAh -uAh -uAh -uAh -uAh -uAh -uAh -uAh -uAh -uAh -sjh +eSA +eSA +eSA +eSA +eSA +eSA +eSA +eSA +eSA +eSA +uZJ sgG aac aac @@ -50670,37 +50580,37 @@ ccd ccd ccd adS -ilZ -ilZ -ilZ +nRJ +nRJ +nRJ aqp -ryJ +dCf cuP cuP -mLz -vIO -uOn -vIO -uOn -kgg -tIn -fDK +pFm +scc +rIL +scc +rIL +sns +wVs +uWy jjJ -uMc -mLz -uOn -npr -fba -jYQ -mLV +cTD +pFm +rIL +rUd +lWU +hkI +sQb jjJ aQK -vIu -kkx -nsu +jsq +ucn +mHp aWr -vIu -vIu +jsq +jsq aSL aZK aZP @@ -50709,18 +50619,18 @@ aZP aZP aZP aUz -vIu -vIu +jsq +jsq aac aac aac -xbw -xbw +vrE +vrE cmX cuP -uOn -vIu -mKc +rIL +jsq +mUE bfg bfc bgJ @@ -50743,28 +50653,28 @@ blJ blJ tQg bsN -jQS +nPP lbh -eSI -jeS -eOs -hlS -lsx -uOl -jeN -fEh -eeC -yaM -yaM -yaM -yaM -fHi -wOd -wOd -wOd -yaM -rtG -lGI +mZL +rbd +pyy +fXZ +iRS +syk +iXr +wcW +fim +gXK +gXK +gXK +gXK +lrj +dwK +dwK +dwK +gXK +qNg +wzS sgG aac aac @@ -50865,37 +50775,37 @@ aac aac aac adS -gUb -nLz -wIH -fBs -uOn +dds +sat +cWm +wgd +rIL cuP cuP -mLz -uOn -uOn -uOn -uOn +pFm +rIL +rIL +rIL +rIL jjJ jjJ jjJ jjJ jjJ -aOV +luy jjJ jjJ jjJ jjJ jjJ jjJ -uOn -uOn -wkZ -wkZ -wkZ -uOn -vIu +rIL +rIL +tQF +tQF +tQF +rIL +jsq aWe bed aZP @@ -50904,18 +50814,18 @@ aYi aRR aRR aZe -vIu -ifu +jsq +bNH aac ccd cmX fBC -rAc -uWS +pPd +uQe cuP -uOn -vIu -mKc +rIL +jsq +mUE bfd bfc bgJ @@ -50938,28 +50848,28 @@ blJ blJ blJ bsM -oWg +dAX lbh -eSI +mZL vxd mpr vxd vxd vxd -jBc -uAh -xpk -hCo -qsX -kQo -pxm -vzl -lKH -fcp -hDq -kQo -kQo -gTL +vCY +eSA +fMG +cBU +qUl +wYs +dHi +hKC +mcK +oqN +gVQ +wYs +wYs +nFk sgG aac aac @@ -51060,57 +50970,57 @@ aac aac aac mIE -uQp -xVX -nDB -unR -qKG +xyR +oln +dbK +pMM +uhb cuX cuX -lOw -bKM -uOn -fjT -uOn -hWD -uOn -vOa +qRD +kOA +rIL +qDU +rIL +mNk +rIL +iNR aEX aGi ukx cuP -vIu -kMd -vIO -kMd -vIu +jsq +jRh +scc +jRh +jsq cuP cuP cuP aUF cuP -uOn -vIu +rIL +jsq aSL aZP aZP bdw aYj -ktm -vIu -jfg -vIu -sBp +kNr +jsq +klG +jsq +bNH aXG -iyK -rAc +jBc +pPd fBC -rAc -uWS +pPd +uQe cuP -uOn -vIu -bOQ +rIL +jsq +jia bfh bfc bgJ @@ -51135,15 +51045,15 @@ blJ brW tSi lbh -eSI +mZL jIz -xpk -cas -xpk -xpk -vsc -sgz -xpk +fMG +oAO +fMG +fMG +aUi +shU +fMG myk pbF efR @@ -51255,57 +51165,57 @@ aac aac aac bUd -fBJ -sag -kZQ -nKe -uOn +phX +nNZ +kWL +wUZ +rIL cuP cuP -mLz -uOn -uOn -uOn -uOn -uOn -uOn -uOn +pFm +rIL +rIL +rIL +rIL +rIL +rIL +rIL cuP cuP ukx cuP -sai +woX nZR jjJ nZR -ryJ +dCf cuP cuP cuP ukx aWs -tam -pOx -hAt -izF -izF -dXG -xwQ -vIu -uOn -mLz -uOn -uOn +obU +gDN +meF +weB +weB +jiS +eZM +jsq +rIL +pFm +rIL +rIL aac bYJ -vHR +mvb bNS -hTy -hTy +jbV +jbV cuX -cuo -fpr -vIu +ilt +vAe +jsq bfi bgi bgN @@ -51330,23 +51240,23 @@ blJ blJ wfv lbh -eSI -nDk -xpk -uAh -uAh -uAh -wen -uAh -yfi +mZL +dMz +fMG +eSA +eSA +eSA +bHX +eSA +fpn vxd pJz erq erq hkn -uAh -uAh -quR +eSA +eSA +oNu pJz erq pZe @@ -51454,7 +51364,7 @@ adS adS adS adS -ryJ +dCf cuP cuP fzz @@ -51469,41 +51379,41 @@ cuX cuX cfZ cuX -qKG -nfG -oBy -nfG -qKG +uhb +pxO +hVY +pxO +uhb cuX cuX aTn urM -sMj +sRO aYm -dbC -uOn -uOn -uOn -mLz -uOn -uOn -uOn +urb +rIL +rIL +rIL +pFm +rIL +rIL +rIL ukx cuP cuP -rAc +pPd bNR bSa bNR bJJ bNR cuP -mLz -uOn -vIu -vIu -vIu -qNs +pFm +rIL +jsq +jsq +jsq +mQF bhk bfd bfc @@ -51525,15 +51435,15 @@ blJ blJ wfv lbh -eSI -nDk -xpk -xYS -xpk -xpk -xpk -xpk -tDI +mZL +dMz +fMG +dlR +fMG +fMG +fMG +fMG +vAg vxd ulL xLH @@ -51649,7 +51559,7 @@ aac aac djW djW -guM +iiR tqG cuP cuP @@ -51664,11 +51574,11 @@ cuP cuP cuP cuP -sai +woX nZR jjJ nZR -ryJ +dCf cuP cuP cuP @@ -51686,19 +51596,19 @@ cuX cfZ cuX cuX -hTy +jbV bNS -sPQ +iHv fBC -rAc +pPd cna cuP fzz -lIU -lIU -lIU -lIU -elT +oSg +oSg +oSg +oSg +tGv bhr bkI bfd @@ -51720,23 +51630,23 @@ blJ bsu vnV lbh -eSI +mZL doO vxd vxd -jtp +hYO vxd vxd -ork -ork +rPw +rPw sgG sgG sgG sgG sgG -vyJ -pWf -mSe +rSf +vcP +ppq sgG sgG sgG @@ -51844,26 +51754,26 @@ aac aac djW djW -whJ +gJP gCa tqG cuP cuP cuP -aQU -aQU +vHa +vHa cuP cuP -aQU -aQU +vHa +vHa cuP cuP cuP -vIu -kMd -vIO -kMd -vIu +jsq +jRh +scc +jRh +jsq cuP cuP cuP @@ -51892,8 +51802,8 @@ cuP cuP cuP cuP -uOn -jCt +rIL +qMb bhs bgi biE @@ -51913,13 +51823,13 @@ blJ blJ blJ bsM -vaU +mzM lbh -eSI -jeS -omF -wvN -wvN +mZL +rbd +sda +xwh +xwh vxd aac jrw @@ -51929,9 +51839,9 @@ lmV lmV lmV sgG -scT -scT -scT +uPh +uPh +uPh ghi lmV lmV @@ -52039,25 +51949,25 @@ djW djW djW aAR -pyx +dHK tqG tqG tqG cuP cuP -kgg -kgg +sns +sns cuP cuP -kgg -kgg +sns +sns fAb cuP aIQ oKo -sTj -sTj -sTj +cLL +cLL +cLL oKo oKo ras @@ -52076,24 +51986,24 @@ cuP cna cuP cuP -rAc +pPd fBC -rAc +pPd fBC -rAc +pPd fBC cuP fAb cuP cuP cuP -uOn -jCt -vIu -vIu -vIu -vrj -vrj +rIL +qMb +jsq +jsq +jsq +oOQ +oOQ aac koj koj @@ -52108,13 +52018,13 @@ blJ blJ blJ bsN -jQS +nPP lbh -eSI -jeS -tFX -gXr -xbS +mZL +rbd +aeo +ljM +eyI vxd aac uiE @@ -52234,18 +52144,18 @@ djW djW aAR aAR -whJ -pyx -tdR -tPy -mOh -uOn -kgg -oyT +gJP +dHK +byt +cmQ +mGq +rIL +sns +iQf tsX tsX -ugR -kgg +jhp +sns cuP lqD aIQ @@ -52253,7 +52163,7 @@ oKo aLF dgB dgB -oyP +rVb oKo aRV ras @@ -52271,7 +52181,7 @@ cuP bxJ cuP cuP -rAc +pPd bOj bSD ccH @@ -52282,13 +52192,13 @@ fAb iUw mjJ cuP -uOn -mLz -pOx -uOn -uOn -dnO -uOn +rIL +pFm +gDN +rIL +rIL +raZ +rIL aac aac aac @@ -52303,13 +52213,13 @@ bmE blJ bmp bsN -oWg -wFz -tXT +dAX +fPJ +doC vxd vxd -ork -ork +rPw +rPw vxd aac pYM @@ -52454,8 +52364,8 @@ blb blb bfv blb -hCq -rzR +rfu +vCq blb bfv blb @@ -52464,13 +52374,13 @@ blb blb blb vlm -sYX -tQW -jSf +uEU +fbK +xxL itw -mio -tix -aVC +xTH +vht +vjx fBC cuZ cuP @@ -52484,8 +52394,8 @@ cuP syU uKj btH -vIu -xkt +jsq +nJn aac aac bmr @@ -52612,7 +52522,7 @@ aac aac aac bLj -oZp +iqZ ayv ayw aHh @@ -52638,34 +52548,34 @@ aDZ dgB dgB oKo -oDi -gLv -nos -nwh -nwh -wNp -cBJ +tsU +gtQ +pjV +cHE +cHE +ozE +jmD aRW aTp nrQ blb -eDh -fsx +vEm +tJc blb bfw bhV bkO -nSg -gUk +phh +gDq blb -uyP -kZV -lBo -wxS -pvh -uqK -cUt -aVC +ugF +eDS +ujA +uqH +rrO +sFc +kwR +vjx fBC cuP fBh @@ -52679,8 +52589,8 @@ cuP syU uKj qMH -fXL -uOn +iqo +rIL aac aac bmu @@ -52792,7 +52702,7 @@ aac aac rKG rKG -iQA +wQc rKG rKG aac @@ -52807,7 +52717,7 @@ aac aac aac bLj -oZp +iqZ ayw azZ awJ @@ -52825,44 +52735,44 @@ djW djW wmZ dgB -hne -mCJ +cCj +sLo aPH aPH -uKC -hne +jzY +cCj dgB oKo -nwh -qJU -qJU -qJU -bUB +cHE +pDf +pDf +pDf +wDb blb blb blb bfx bfx blb -jph -xFk +jfM +rYe blb bfx bfx blb blb -dmB +qyZ blb -cWl -wwr -tzG -jlw -pvh -gNJ -cUt -dQG +cWt +gsD +pvI +xUq +rrO +mwD +kwR +mDI fBC -rAc +pPd fBC iZI cuP @@ -52874,8 +52784,8 @@ cuP rdm qTD nZR -oPD -uOn +kuf +rIL gEo aac bmy @@ -52889,7 +52799,7 @@ aac aac aac vpi -tLs +jIp aac aac aac @@ -52986,9 +52896,9 @@ aac aac aac rKG -vdN -ejx -kkb +dwy +tCy +utO rKG aac aac @@ -53002,7 +52912,7 @@ aac aac aac bLj -oZp +iqZ awA ayw awJ @@ -53020,44 +52930,44 @@ aHh awJ avL dgB -hne -hne +cCj +cCj dgB dgB -hne -hne +cCj +cCj dgB -cuN -nwh -qJU -qJU -qJU -geg -veZ -mgT -gZX +sPw +cHE +pDf +pDf +pDf +xaV +rbg +qLD +sTx bfy bfy -ejQ -jph -xFk -ejQ +fUe +jfM +rYe +fUe bfy bfy -ejQ -ejh -iEI +fUe +jjV +oYL vlm -vaA -wwr -tzG -vqJ +gyf +gsD +pvI +nys vlm -uOn -cUt -iri +rIL +kwR +kKp cnb -rfv +oje fCE cuP cuP @@ -53069,8 +52979,8 @@ cuP syU nZR nZR -qbN -uOn +nbs +rIL gEo blo bpw @@ -53181,9 +53091,9 @@ aac aac aac rKG -stZ -fsV -kuc +wnp +hUN +gOv rKG aac aac @@ -53215,45 +53125,45 @@ ufG ufG avL dgB -tgM -tgM +jNf +jNf orc dgB -tgM -tgM +jNf +jNf dgB -hHk -tFj -sxP -sbp -rLO geg -wBh -eoO +fay +nJe +dUO +kBA +xaV +tkh +qDl oKo blb bbq blb -hCq -bfK +rfu +kCX blb blb blb blb -gtY -iYJ -vyS -dHi -pek -tzG -vll -egc -uOn -vIu -jQy -jQy -jQy -dmK +opp +tCK +qFq +ure +eGQ +pvI +saJ +fdZ +rIL +jsq +cBX +cBX +cBX +oDb cuP cuP cuP @@ -53262,10 +53172,10 @@ urM cuP cuP cuP -dfV -vIu -vIu -uOn +jFU +jsq +jsq +rIL gEo blo bmA @@ -53376,9 +53286,9 @@ aac aac rKG brG -pQC -pQC -pQC +taT +taT +taT brG rKG rKG @@ -53416,39 +53326,39 @@ irx dgB dgB irx -hhT -hHk -rTt -qiy -nwh -cxi +sdV geg -wBh -gst +dqC +hLC +cHE +pcC +xaV +tkh +ctN oKo -sYI -skW -jrK -wTG -pPI -jBC -usd -rfj -qYz -sQG -wiv -elY -gxS -tzG -tzG -lXD -izM -uOn -uOn -uOn -uOn -vIu -eoS +mpS +kBI +cOi +fjy +cHP +spR +lUF +wBW +sAe +lwe +ouO +kyZ +lIz +pvI +pvI +sPu +tLS +rIL +rIL +rIL +rIL +jsq +gSG cuP cuP cuP @@ -53457,10 +53367,10 @@ ukx cuP cuP lqD -dfV -uOn -uOn -uOn +jFU +rIL +rIL +rIL gEo blo bmA @@ -53604,53 +53514,53 @@ aAR djW djW aNu -fwZ +nfG aHv -fwZ +nfG szb -hne -hne +cCj +cCj oKo aNu aHv aUS -qJU +pDf dgB -cxi +pcC aOd -wBh -hRG +tkh +wUU oKo -ydR -pHz -pHz -pHz -frI -pHz -pHz -qtd +cGV +tYY +tYY +tYY +nRi +tYY +tYY +lfb ghV -lOA -rMj +qpF +cNG vlm -ugJ -vll -vll -olB +hvC +saJ +saJ +emi vlm vlm vlm -jlR -jlR +swT +swT vlm vlm jhl -uOn -bip -wis -mFr -oKW -oky +rIL +cQt +pom +wBj +eck +oXo pRj pRj vtM @@ -53674,7 +53584,7 @@ uiE lcq bua uiE -oET +tUU bmp lmV lmV @@ -53798,59 +53708,59 @@ ayw aHh aHh aAR -hHk -wqp -gjB -xDS +geg +slU +pVD +xVu aHv -sWb -sWb +xYK +xYK aHv aHv -sax -yfg -nwh +pMs +nBW +cHE dgB -cxi +pcC aOd -jzH -nxV +hoc +nQt oKo -xWZ -pHz -kJJ -ilY -tcm -qeX -pHz -qmJ +eOj +tYY +hfi +lGS +dQv +cxQ +tYY +lko vlm vlm -vWt +xNA vlm -tEQ -pTP -pTP +iXT +fWo +fWo vlm vlm -hSn -ppE -woc -gMX -tIf -nnI -aEA -vIu -uOn -rAc -gSh -rAc -rAc -mMk -kYj -hod -sRg -mMk +lOL +fSX +fNV +kDC +rir +pja +rIg +jsq +rIL +pPd +dbL +pPd +pPd +gpP +sTr +fuq +eCL +gpP aGf aGL bmD @@ -53994,58 +53904,58 @@ awJ aAR aHh avN -sNI +mJB qcO dgB roI dgB dgB roI -rbd -owP -qJU +gLs +wMa +pDf dgB -nwh -eBh -mfb -qvn -qvn -bRM -pHz -pHz -cic -jph -xFk -pKc -pHz -uOS -teH -gqo -gqo -nVP -mQG -qJG -gaL +cHE +nci +hXS +yfz +yfz +liJ +tYY +tYY +lgV +jfM +rYe +obz +tYY +bQF +iny +twV +twV +iNF +qFn +hxg +rzN vlm che vlm cdD -usH -gmz -bNC -rAR +jcs +fHK +swJ +wBL jjJ -nzX -uOn -rAc -gSh -rAc -rAc -mMk -oce -oDs -hjF -mMk +cSx +rIL +pPd +dbL +pPd +pPd +gpP +rEx +iVb +mZP +gpP blp aGP bmE @@ -54062,7 +53972,7 @@ uiE pYM tCM cvn -lgI +heW uiE bmp bmp @@ -54156,9 +54066,9 @@ aac aac rKG heO -pQC -pQC -pQC +taT +taT +taT heO cpV tNr @@ -54170,7 +54080,7 @@ gOL gOL gOL bim -oZp +iqZ awA awJ awJ @@ -54188,59 +54098,59 @@ awJ aHh awJ aAR -hHk -dId +geg +oKN ayF ouB aBM cAw ouB ouB -cEa -sEM -sbp +dPu +oaf +dUO ouB -ccv -pZi -xzm -dbV -dbV -fkL -kea -kea -ilY -ogp -owd -ilY -kea -nXw -jSs -tuP -tuP -tuP -frt -rbt -lDN -miI -tkF -miI +kwT +dUd +kCI +ubl +ubl +cyr +kpt +kpt +lGS +vNw +hTe +lGS +kpt +oxW +egK +wWL +wWL +wWL +vpp +svM +ewC +sWr +msb +sWr cdD -dwx +uIo vlm vlm vlm jjJ jjJ -bip -wis -ksD -vJC -kgu +cQt +pom +rCU +mxA +onl pRj pRj -iFf -wCU -mMk +jjQ +gLO +gpP bkU blq bmF @@ -54351,9 +54261,9 @@ rKG bUX rKG cpV -shq -pNm -wCt +vEH +ruo +pOm cpV cpV cpV @@ -54365,7 +54275,7 @@ txs txs txs ccj -oZp +iqZ awJ awJ awJ @@ -54384,58 +54294,58 @@ brT ayw brT aHv -xLW -mvo -cMW +wLd +fkm +ewf dgB dgB dgB aEY aGp -dfy -nmB -nwh +oxe +ioS +cHE dgB -cxi +pcC aOd -ivN -cwy +szC +ara oKo -qtd -pHz -cic -cic -azw -pQA -pHz -hYQ +lfb +tYY +lgV +lgV +fLR +anv +tYY +kga blb blb -lrK -olg -cSM -xQf -uNS -uNS -sFx -eED -uNS -jXH -lQj -mNa -eaI -mNa -xHm -uOn -uOn -wYT -qkA -lIU -kmz -enk -cgC -gLu -mMk +rmP +rbC +bBh +mhz +lem +lem +lmZ +dFt +lem +oph +nKv +gOd +oge +gOd +rlw +rIL +rIL +dbM +nPz +oSg +jCD +mRg +rJF +iyi +gpP bkU aGP iqH @@ -54449,7 +54359,7 @@ brm aac aac aac -bth +iId xPT tUZ blJ @@ -54538,21 +54448,21 @@ cdo aOD acQ aam -ejx +tCy baH -byW -qJF -tBR -vhZ -ejx -ejx -tBR -gJK -ejx -qJF -ejx -ejx -uIW +hbd +qHn +gFa +uyj +tCy +tCy +gFa +dih +tCy +qHn +tCy +tCy +hFN txs txs gOL @@ -54560,7 +54470,7 @@ gOL gOL txs ccj -oZp +iqZ awA awJ ayw @@ -54583,50 +54493,50 @@ aHv oWQ aAj orc -rVU +iMR dgB aOa aJd aHv oKo -qJU +pDf dgB aMZ aOd -wBh -eoO +tkh +qDl wmZ -qtd -pHz -pHz -pHz -mCc -pHz -pHz -eFP +lfb +tYY +tYY +tYY +sKD +tYY +tYY +tPC blc -dWe -ntQ -gtk -vnc -eJq -eJq -eJq -eJq -eJq -eJq -meY -rbt -pTP +wUW +vOl +jeE +eJK +hmQ +hmQ +hmQ +hmQ +hmQ +hmQ +joc +svM +fWo cdG -pTP -xHm -uOn +fWo +rlw +rIL qMF uJn xGi -uOn -jtV +rIL +pfI pRj pRj adS @@ -54733,20 +54643,20 @@ ced cdo aam seb -gDp +uBW cdo rKG rKG rKG bUX rKG -ejx +tCy cpV cpV cpV cpV cpV -laC +cTr dWm dWm dWm @@ -54774,54 +54684,54 @@ awJ aAR aAR aHv -eJX +dTy ayF -gBt +seR aBO -rVU +iMR ajW -qJU +pDf aGr -ncb +jqU oKo aKx dgB aMZ aOd -wBh -pBw +tkh +cpP wmZ -rfj -bZr -hCq -pHz -frI -hCq -xGp -tQd +wBW +cwp +rfu +tYY +nRi +rfu +pFW +ibM blb -rZE +new bsz -rZy +uFR cdD vlm cdT -pTP -pTP -pTP +fWo +fWo +fWo cdG -nFm -pPO -kWC +fFS +vhf +cbY fWs -kWC -xHm -uOn +cbY +rlw +rIL cuY ukx ras cuP -tEp +xfl xuE qTk aac @@ -54928,20 +54838,20 @@ ced ced cdo nfK -gDp +uBW cdo ced ced ced ced bUX -gvp +oWS fln ced ced ced cpV -laC +cTr cdA cdA cdA @@ -54971,55 +54881,55 @@ brT aHv axg ayH -rLO -rVU -rVU +kBA +iMR +iMR dgB -qJU +pDf uWG -ncb +jqU oKo oKo aLP -eBh +nci aOd -wBh -qJd +tkh +sQV wmZ wmZ aUS -jAD -pHz -frI -hCq +huT +tYY +nRi +rfu blb blb blb -rZE +new blb -pTP -sfi -sli -mqA -mqA -lJW -mqA -pTP -nFm -rbt -pTP +fWo +gYE +hNv +nLn +nLn +hXC +nLn +fWo +fFS +svM +fWo cdG -pTP +fWo vlm -uqK +sFc qOt uRy xJD cuP -lDg +tVv wsh iQS -bWz +cDc oxE aac blv @@ -55123,28 +55033,28 @@ ced cdo cdo aHz -eTc +isJ cdo cdo cdo ced ced rKG -ejx +tCy cpV cpV fln cpV cpV -jeb +ybo cdA cdA -vkM -xIL -xIL -xIL -ctN -ptZ +moO +rZx +rZx +rZx +qSP +sPL akR djW djW @@ -55165,58 +55075,58 @@ ayw ayw aHv axg -wqk -sEg -vFc -rET -rVU -qJU +rmr +wWn +wfn +irf +iMR +pDf vBs -ncb +jqU oKo oKo aLQ -eBh +nci aOd -wBh -mgT -nwO -wMI -qBS +tkh +qLD +rYA +oVV +tRk anc aWL bbc aWL aWL -ntQ -tnu -ouz -lqe -pTP -eza -bCJ -mqA -mqA -mqA -mqA -pTP -cSM -fBe -dEc -dFW -eKc +vOl +dfu +jJL +hNh +fWo +wam +fjd +nLn +nLn +nLn +nLn +fWo +bBh +wwe +xPz +krD +bFD ghV -uqK +sFc qQq uRy xKD cuP -ygH +oXg wsh iQS -uOn +rIL tmi -iFn +sTj blx bmI bnC @@ -55325,21 +55235,21 @@ cdo rKG rKG rKG -tBR -ejx -mVV -phQ -wfC +gFa +tCy +bXM +kpc +cUS cpV -laC +cTr cdA -fyI -mLt -mLt -mLt -mLt -oxw -oxw +pEf +bMr +bMr +bMr +bMr +olU +olU akR djW djW @@ -55356,62 +55266,62 @@ ayw awJ arr oKo -fwZ -fwZ +nfG +nfG avP oKo -vlA -dSQ -qSQ -jew -nwh -uxe +dsC +gAe +bGv +sam +cHE +nrS oKo oKo oKo oKo oKo -ret +qRm aOg -jzH -laS -kqn -wwd +hoc +oEV +lyo +sjY oKo aoP -vLf -lcb +tHr +rRA bfy bfI mZd -mDW -shf +aTS +sJQ mZd -ilV -xjG +xxH +jwz vlm -sjw -eJp -ibI +yex +gXA +okJ vlm cdT -nFm -fus +fFS +lXI bTD vlm vlm vlm -ivH +hDK wTn uTQ xOs cuP -ygH +oXg wsh iQS -tam +obU cuP -iFn +sTj blz bmK bnB @@ -55513,28 +55423,28 @@ aam abr aam pIa -vcz +jeb aJn -ejx -ejx +tCy +tCy cdo -byW -ejx -ejx +hbd +tCy +tCy rKG rKG bUX rKG cpV -laC +cTr cdA -fyI -oxw -oxw -oxw -oxw -oxw -oxw +pEf +olU +olU +olU +olU +olU +olU akR djW djW @@ -55550,63 +55460,63 @@ ayw ayw aFv oKo -idt +wNK bVM bVM -wiJ +cWK oKo -wHQ +bDh aAo aBS dgB -nwh -qJU +cHE +pDf aGr -ncb +jqU oKo aKy aLR -eBh +nci aOh aPH aPH aPH aPH -jod +ooQ bfy -vLf -lcb +tHr +rRA bfy bfJ mZd mZd mZd mZd -iBK -vxQ -wCk -wCk -eSj -wCk -oUy -gtk -xJX -kfz -teH -pTP -pTP -egc +mFO +fye +lMQ +lMQ +eYY +lMQ +mWL +jeE +kPQ +vMF +iny +fWo +fWo +fdZ oqJ xJD ukx xTZ cuP -ygH +oXg wsh iQS -uWj +wyG ras -lSS +cJC blB bmL bnF @@ -55721,15 +55631,15 @@ ced ced akR dWm -laC +cTr cdA -fyI -oxw -oxw -xYb -dTY -rBW -mEd +pEf +olU +olU +hXg +fZU +qKP +hfE akR djW djW @@ -55745,63 +55655,63 @@ ayw ayw ayw kyT -rVU +iMR dgB dgB -rVU -oBf -xQm -foe +iMR +jUU +dvW +uoI ajW dgB -nwh -qJU +cHE +pDf uWG -ncb +jqU oKo dgB dgB -ygi -sbp -sbp -sbp -sbp +nBT +dUO +dUO +dUO +dUO aTC -jod +ooQ biH -iHb -xKJ +kkB +oHO bdi cik cik -nGn -iHb -tjw -lin -tJt -qxC -hiZ -vZh -pvC +fOI +kkB +onf +gjh +nTk +sFj +hEw +lHB +trg vlm -pTP -cSM -fBe -jSs -gtk -gtk -jSs +fWo +bBh +wwe +egK +jeE +jeE +egK hQq qYm urM cuP cuP -iWp +dnJ oiV vCl -mqi -mDU -vIu +upd +hLq +jsq blL bmM bmM @@ -55916,11 +55826,11 @@ ced ced akR cdA -igG +kux cdA cdA -iTc -iTc +uYb +uYb cdA cdA cdA @@ -55940,62 +55850,62 @@ ayw ayw awJ kyT -rVU +iMR dgB dgB -rVU -owy -nwh +iMR +ngS +cHE aMZ dgB dgB -nwh -qJU +cHE +pDf vBs -ncb +jqU oKo aKA dgB aNc aNc aPI -aRc -vpV +iRr +qTC aMZ -jod +ooQ biH -iHb -xKJ +kkB +oHO bdi -wBs -wME -wWX -wWX +rLM +tVj +yey +yey cik cik cik vlm -jlR -jlR +swT +swT vlm bTD cdT -nFm -fus +fFS +lXI vlm -jSf -jSf +xxL +xxL vlm -hGx +eVG cuP ukx xWN -uOn -meI -ilu -meI -uOn -uOn +rIL +mOU +cQl +mOU +rIL +rIL eRk blE blJ @@ -56111,15 +56021,15 @@ ced ced akR cdA -fRn -mzG -fRn -fRn -fRn -fRn -mzG -fRn -fRn +mLS +gDe +mLS +mLS +mLS +mLS +gDe +mLS +mLS akR bDQ djW @@ -56135,62 +56045,62 @@ ayw awJ aFZ oKo -ewF +hYd atE atE -nIT +nGo oKo -jxT +dzc aMZ dgB dgB -nwh -uxe +cHE +nrS aJd oKo aJd -sTj -sTj +cLL +cLL oKo oKo -sTj -sTj +cLL +cLL oKo -rQc +uVQ oKo aWO -iHb -xKJ +kkB +oHO bdi -ovl +rYT biH -iHb +kkB biH biH bve cik -fWC -xdy -rtU +uhP +alh +uky msG -kRy -pTP -nFm -rbt +rDy +fWo +fFS +svM vlm -jzC -jzC +hIu +hIu ghV -xHI +viM ras uhF xXi -qRc -oky -rAc -oky -rAc -rAc +qkZ +oXo +pPd +oXo +pPd +pPd jyO blF blJ @@ -56293,7 +56203,7 @@ cdo aJn cdo bgn -eTc +isJ adW aam aam @@ -56306,17 +56216,17 @@ ced ced akR cdA -fRn -sKB -nXk -nXk -sKB -nXk -nXk -sKB -fRn -rvE -vVL +mLS +dKY +wkW +wkW +dKY +wkW +wkW +dKY +mLS +nTN +ykT axk axk axk @@ -56330,62 +56240,62 @@ ayw awJ aAR arr -qEy -oLM -gII -ufY -nru -nwh -lQZ -srg -srg -srg -tlh -lmI -sbp -roQ -sbp -sbp -sbp -iOF -sbp -sbp -dlP -ptz -qJU +mCy +hJo +hKu +vQx +hkx +cHE +xwN +kDJ +kDJ +kDJ +cbn +dWn +dUO +qah +dUO +dUO +dUO +waj +dUO +dUO +fzM +qiG +pDf aWP -deX -pkZ +rUZ +xuN biH bfN biI -jEo -lWo -wWX -rqQ +sUO +wCm +yey +iaw cik -smD -iUA -cbg +fPr +rld +lst vlm -kRy -pTP -cSM -fBe -oUy -bKB -nnI +rDy +fWo +bBh +wwe +mWL +bHU +pja mrT -uOn +rIL rbi vgW xYw -lwL -oky -rAc -kgu -rAc -xXs +vzQ +oXo +pPd +onl +pPd +xxq jyO blJ bnD @@ -56475,20 +56385,20 @@ aab aac aac rKG -wfC -tBR -ejx +cUS +gFa +tCy cdo -ejx -ejx -pVv +tCy +tCy +dkl aLu -cYV -ejx -ejx -nmR +qld +tCy +tCy +opu cdo -ejx +tCy adW aam adC @@ -56501,17 +56411,17 @@ ced ced akR cdA -gwr -nQW -vcq -nqK -eNG -nqK -rnN -kfa -fRn -vmV -vVL +vXR +eRD +fYa +ocl +ilJ +ocl +gLQ +qTl +mLS +mvJ +ykT axk axk axk @@ -56527,15 +56437,15 @@ oKo oKo oKo oKo -kSE -dcB -nwh -rVU -esy -kRB -htU -htU -iBv +nzQ +wlL +cHE +iMR +juI +qMi +hZv +hZv +qMs aGu dgB dgB @@ -56549,38 +56459,38 @@ dgB aTE ouB bbs -kgM -pfc +jrY +mBr biH -wBs -luJ +rLM +ffH blQ biH -oxU -oke +bOg +uaJ cik -szo -cbg -cbg -uXT -pTP -pTP -nFm -fus +sfA +lst +lst +aFW +fWo +fWo +fFS +lXI vlm vlm vlm msG -bip -mhK -dBk +cQt +mbC +iXw ydV -uOn -kxV -nkl -kxV -cCG -uOn +rIL +qSB +qFQ +qSB +jZI +rIL uDU blK bmS @@ -56671,7 +56581,7 @@ aac aac rKG rKG -kJY +qbf cpV cdo pIa @@ -56683,7 +56593,7 @@ aHz pIa acU cdo -ejx +tCy gOo abv aJn @@ -56696,16 +56606,16 @@ ced ahS dWm cdA -kIN -nQW -kit -nkH -pvE -pvE -smE -kfa -fRn -xSw +kdR +eRD +vjp +egO +dxI +dxI +eBM +qTl +mLS +eOk dWm dWm azT @@ -56717,20 +56627,20 @@ awJ ayw ayw oKo -keH -vOd -eAC -gvi +sdJ +uto +fBA +hsM oKo -rVU -rVU -dyQ -rVU -esy -kAD +iMR +iMR +sbE +iMR +juI +ivQ dgB dgB -eBh +nci dgB biH biH @@ -56744,39 +56654,39 @@ biH biH biH biH -xKJ -iHb -taR +oHO +kkB +hLW cik -oZv -oZv -oZv -oZv -oZv +snG +snG +snG +snG +snG aPm vlm vlm vlm cdD -xor -pTP -nFm -rbt -sPR -qcF -rLy -pvh -uOn -mLz +ofs +fWo +fFS +svM +eCx +jlU +lXS +rrO +rIL +pFm vlm -jSf -jSf +xxL +xxL vlm aGd aGe -uOn -vIu -vIu +rIL +jsq +jsq blL tQg bmp @@ -56866,8 +56776,8 @@ aac aac aac rKG -mVV -pQC +bXM +taT cdo aam aax @@ -56875,10 +56785,10 @@ aam cdo pIa aax -gzg +cig cdo cdo -ejx +tCy abr aam aam @@ -56890,18 +56800,18 @@ ced ced hmw aiD -oFL -eHf -sKB -wKe -nrF -jIX -pib -mAw -kfa -fRn -fRn -vVL +wyg +oFn +dKY +flQ +szq +blw +tWl +jAf +qTl +mLS +mLS +ykT axk axk axk @@ -56911,67 +56821,67 @@ awJ ayw ayw ayw -hHk +geg bVM bVM bVM ast oKo -wFW -rVU -nwh -rVU -nGo -ooV +tjd +iMR +cHE +iMR +ouj +fDh dgB dgB -gvk +ofm aGw biH -fyZ -bcc -wAA -fyZ -nsf -wAA -fyZ -bcc -iHb -iHb -iHb -xKJ -iHb -iHb -pGw -wWX -wWX -lqa -sSK -wWX -rtr -oSI -kWz -oSI -izM -xMF -gtk -xJX -rbt -pTP -izM -vll -nJr -lIU -kAu -pvh -fhD -dNd -pvh +iXU +deK +jAw +iXU +qCk +jAw +iXU +deK +kkB +kkB +kkB +oHO +kkB +kkB +mIU +yey +yey +rcN +oyb +yey +nVP +rrq +rzK +rrq +tLS +bFu +jeE +kPQ +svM +fWo +tLS +saJ +vVA +oSg +uiZ +rrO +esj +iup +rrO uzv aNA -uOn +rIL cuP -vqN +whA blM bmU sxS @@ -57061,8 +56971,8 @@ aac aac aac rKG -ufK -pQC +knT +taT aar aar aam @@ -57082,21 +56992,21 @@ cdo cdo aar aar -ejx -mfA -jZB -grt -fRn -sKB -wKe -pvE -pvE -pvE -jkX -kfa -fRn -fRn -vVL +tCy +aIy +ngh +hbK +mLS +dKY +flQ +dxI +dxI +dxI +iOM +qTl +mLS +mLS +ykT axk axk axk @@ -57106,22 +57016,22 @@ awJ ayw ayw ayw -hHk +geg qhp -sMR -gmA +rNB +khG asu -fhF -xbi -twT -ccv -twT -mVA -lKu +wTW +wyn +eWV +kwT +eWV +kvv +hNC ouB ouB -ptz -qjd +qiG +fIe aHD aJl aJl @@ -57134,39 +57044,39 @@ aPJ aPJ aPJ aWQ -lsR -wWX -iHb -tGk -lKB -tiM -lKB -lKB -lKB -lKB -tzG -fpe -tzG -izM -tEQ -pTP -nFm -rbt -pTP -izM -pCO +lTC +yey +kkB +tBV +kdY +pBj +kdY +kdY +kdY +kdY +pvI +nRG +pvI +tLS +iXT +fWo +fFS +svM +fWo +tLS +oOD mwt -sYX -tQW +uEU +fbK vlm -wGK -nfn -pvh +hOd +phN +rrO ldp riM -uOn +rIL ras -vIu +jsq blL bmV bmE @@ -57268,7 +57178,7 @@ aam aam aam cdo -ejx +tCy aam aam cdo @@ -57281,16 +57191,16 @@ eVI baM bmq act -fRn -sKB -wKe -pvE -pvE -pvE -jkX -kfa -fRn -xSw +mLS +dKY +flQ +dxI +dxI +dxI +iOM +qTl +mLS +eOk dWm dWm azT @@ -57301,61 +57211,61 @@ ayw ayw ayw ayw -hHk +geg bVN bWl bWl asv oKo -wFW -glD -fNu -rVU -rVU -rwL +tjd +oaz +gbG +iMR +iMR +eQi orc dgB -eBh -cYC +nci +pgU cik -rRv -hXq -qzz -rRv -hXq -yhH -rRv -hXq -qAA -cEj +tgK +gbJ +xCa +tgK +gbJ +wer +tgK +gbJ +pkD +jXU aWR -rat -lDL -rip -kIv -lDL -qIn -qIn -qIn -qIn -sKN -kbF -gIF -kbF -jSs -cfe -pTP -nFm -rbt -pTP -izM -mqA -xOE -mqA -mqA -pvh -eon -iGs +igp +jOd +rbM +hvE +jOd +wBF +wBF +wBF +wBF +fPt +nmP +swB +nmP +egK +bEb +fWo +fFS +svM +fWo +tLS +nLn +sZJ +nLn +nLn +rrO +wRM +uJM vlm vlm itw @@ -57463,7 +57373,7 @@ aan aam acU baH -ejx +tCy aam aam cfH @@ -57473,20 +57383,20 @@ aam cdo onq aar -vhZ +uyj dWm cdA -gwr -hTo -nkH -pvE -pvE -pvE -jfv -hTo -fRn -wLi -vVL +vXR +pkP +egO +dxI +dxI +dxI +xUB +pkP +mLS +slQ +ykT axk axk axk @@ -57497,62 +57407,62 @@ ayw aHh aAR oKo -geU -rNo -kbc -mpy +bAZ +qiQ +jyl +hQQ oKo -rVU -sLC -uYD -rVU -wLs -kAD +iMR +eYc +eNu +iMR +hnS +ivQ dgB dgB -qng -pYb +vxE +usF cik -iHb -iHb -iHb -iHb -hGr -iHb -iHb -cKG -iHb -ksT +kkB +kkB +kkB +kkB +vdh +kkB +kkB +ubh +kkB +mPK aWR -wWX +yey oSV -tJv +nwA cik -uja +fFD cik cik vlm -jSf -jSf +xxL +xxL vlm eSx eSx eSx bUJ vlm -vpv -rbt -nze -izM -mqA -cZb -djL -wZy +hJW +svM +crK +tLS +nLn +efq +qMe +xiN vlm -eiO -bEU -vBR -jAi +frb +mwg +jbC +ecN vlm gAD efT @@ -57658,7 +57568,7 @@ aas cdo cfH cdo -ejx +tCy aan aam ahn @@ -57671,17 +57581,17 @@ cdo ced akR cdA -aLD -hTo -poR -sci -eHC -sci -nnr -hTo -fRn -wLi -vVL +wix +pkP +lnY +hJD +hEv +hJD +iPB +pkP +mLS +slQ +ykT axk axk axk @@ -57697,57 +57607,57 @@ oKo oKo asx oKo -rVU -rxK -vbP -wvo -iJe -fmP -bNT -bNT -eBh -mix +iMR +hVr +hkC +qYN +nCH +kHP +cqA +cqA +nci +cVh cik -wWX -wWX -ieD -wWX -wWX -wWX -wWX -wWX -iHb -rxg +yey +yey +jRF +yey +yey +yey +yey +yey +kkB +ohL aWR -wWX +yey oSV -tEr +kWd cik -qHR -caz -meg -xHm -wHm -tAy +qEE +iXb +wgn +rlw +lzP +sqY eSx -gdc -kPQ -nOY -ilR -niM -nFm -pPO -pTP -vCH -mqA -mqA -nBi -mqA -cuR -hBi -iGs -fxt -fxt +gqt +gjb +fVK +fgt +vZX +fFS +vhf +fWo +tGu +nLn +nLn +nYv +nLn +crX +pQP +uJM +rdC +rdC vlm ltZ wgI @@ -57853,7 +57763,7 @@ xSB aam aam baH -ejx +tCy bgn aar aJn @@ -57866,15 +57776,15 @@ aar ced akR cdA -gwr -hTo -nkH -pvE -pvE -pvE -jfv -hTo -fRn +vXR +pkP +egO +dxI +dxI +dxI +xUB +pkP +mLS dWm dWm djW @@ -57889,20 +57799,20 @@ djW djW djW ijo -jFx -slG +vSG +rhx ijo -xeT +cIj ijo aHv -nIQ -nIQ -uAx -dmJ +gXb +gXb +udq +moz oKo -eBh +nci dgB -ovl +rYT biH jxc jxc @@ -57910,46 +57820,46 @@ jxc aOn jxc biH -wWX -jOC -wOH +yey +kEE +oEq aWR -wWX -cUF -gec +yey +ltw +dPc cik -eTu -qCJ -cQa -xHm -pTP -pTP -yed -uDt -kTg -aYM -kWC -niM -nFm -rbt -fQY +hiE +nQx +jak +rlw +fWo +fWo +pVL +iZo +jXa +oIg +cbY +vZX +fFS +svM +vBy ghV -dlQ -sYX -uBO -sYX -cuR -hBi -eon -eon -rfw +eRG +uEU +jWT +uEU +crX +pQP +wRM +wRM +xPY vlm vlm vlm vlm -tpm -uRm -mnn +qth +gdg +djz che che che @@ -58042,8 +57952,8 @@ aac aac rKG cpV -ejx -ejx +tCy +tCy cpV abN aam @@ -58061,15 +57971,15 @@ aar ced akR cdA -owI -nQW -wKe -pvE -pvE -pvE -jkX -kfa -hct +xRN +eRD +flQ +dxI +dxI +dxI +iOM +qTl +imM akR cdA cdA @@ -58084,72 +57994,72 @@ djW djW djW ijo -cRC -mYC -qcD -kyc -eRh -jYE -rVU -rVU -rVU -rVU -kRV -eBh -qJU +upK +wfw +www +fmx +dwx +qvx +iMR +iMR +iMR +iMR +oIZ +nci +pDf cik -kar -jSQ -qVf -bBu -nyf -vGS +sLQ +dTu +lSc +bQI +hxK +mmo aRf -jyp -lwE -ksT +dqG +gGG +mPK aWR -jyp -lsR -ouC +dqG +lTC +rJo bfS -eTu -qCJ -meg -xHm -gzm -cop +hiE +nQx +wgn +rlw +bLw +dpu eSx -upd -cZb -tCA -tCA -nrR -lzR -fBe -nHx -rqy -pTP -pTP -tEQ -pTP +qca +efq +xno +xno +lPR +uEp +wwe +jXu +xRA +fWo +fWo +iXT +fWo vlm -osq -fxt -fxt +jyQ +rdC +rdC vlm vlm -kml -jhi -pPR -jhi -mcI -mcI -pPR -jhi -wSA -jhi -gRy +gSW +ykW +ljJ +ykW +xYG +xYG +ljJ +ykW +tkX +ykW +mWS che aac aac @@ -58236,14 +58146,14 @@ aac aac aac rKG -bSg -tBR -ejx +elb +gFa +tCy cpV -bPj -wPw +vup +kPk aar -ejx +tCy aan cdo cfH @@ -58256,15 +58166,15 @@ ced ced akR cdA -uXy -nQW -wKe -pvE -pvE -pvE -jkX -kfa -fRn +eme +eRD +flQ +dxI +dxI +dxI +iOM +qTl +mLS cdA cdA cdA @@ -58279,72 +58189,72 @@ aHh djW djW ijo -qWY -bMH -iie -kyc -xna +cKY +vsI +vSe +fmx +rHL aHv -qjd +fIe oKo oKo oKo oKo -czI -kyc +stZ +fmx cik -edU -cKG -iHb -bMg -iHb -hiM +obO +ubh +kkB +hUi +kkB +pUc aRf -wWX -xKJ -gjM +yey +oHO +ubu aWR -wWX +yey oSV -qzH +ivL cik -bSl -oZv +gsE +snG cik cik cik bzh eSx -see -aYM -aYM -kWC -niM -xfJ -cXP -sRs -uNS -uNS -uNS -oYO -uNS -tNb -fIk -khP -khP -xzo -oUy -jEr -tFu -jEr -jEr -jEr -jEr -jEr -vZr -gRT -rMj -rMj +sZH +oIg +oIg +cbY +vZX +oQO +kpf +oFI +lem +lem +lem +jim +lem +gDD +eCE +fpT +fpT +rwI +mWL +fDE +kQF +fDE +fDE +fDE +fDE +fDE +haK +dwW +cNG +cNG che aac aac @@ -58432,12 +58342,12 @@ aac aac rKG cpV -ejx -lAG -ejx -ejx -ejx -ejx +tCy +fBN +tCy +tCy +tCy +tCy aar aam bgn @@ -58451,15 +58361,15 @@ ced ced akR cdA -vZl -nQW -wKe -quJ -jIX -fLi -mAw -kfa -fRn +dYN +eRD +flQ +gTy +blw +bOT +jAf +qTl +mLS cdA awU ajN @@ -58473,73 +58383,73 @@ awJ aAR aHh aHh -rVb -qIP -vNP -fyk -kyc -pXN +tGe +kdA +saI +rrY +fmx +jOW aHv -qjd +fIe oKo -gpl -pIZ +stw +xoI oKo -czI +stZ aGC cik -syb -syb -syb +mHZ +mHZ +mHZ aNh -iHb -gLA +kkB +iBL aRg -wWX -uOA -wOH +yey +uCC +oEq aWR -wWX -esr -rip -oki -mym -rip -wyK -nGn +yey +jvu +rbM +oDx +bLM +rbM +vns +fOI cik bzh eSx -kJP -mmq -wsa -uew -niM -toi -taY -pif -pif -eye -eJq -fQI -eye -fxt -eon -eon -eon -hBi +cwb +mQx +gQG +vIF +vZX +oCC +opc +mbK +mbK +gKJ +hmQ +lYZ +gKJ +rdC +wRM +wRM +wRM +pQP vlm -ejy -vsf -jfq -jfq -iXE -jfq -jfq -vsf -iaA -rMj -rMj +faB +iOz +bOO +bOO +uHq +bOO +bOO +iOz +iwo +cNG +cNG che aac aac @@ -58626,12 +58536,12 @@ aac aac aac rKG -bSg -eTc -pVv +elb +isJ +dkl aam -eTc -ejx +isJ +tCy aas aam aam @@ -58646,15 +58556,15 @@ ced ced akR cdA -fRn -nQW -vGZ -nkH -pvE -pvE -ebl -kfa -xSw +mLS +eRD +fCJ +egO +dxI +dxI +dCa +qTl +eOk cdA awX axm @@ -58668,40 +58578,40 @@ aAR aCQ aHh aHh -rVb -upa -czI -kyc -kyc -mXK +tGe +stB +stZ +fmx +fmx +rII aHv -rVU +iMR oKo -rTK -rVU +aGg +iMR aUS -fij +qqb cfA -oki -qIn -lDL -xmq -wBs -iHb -wCC +oDx +wBF +jOd +dso +rLM +kkB +flX aRf -wWX -xKJ -ksT +yey +oHO +mPK aWR -wWX +yey oSV -wAA -wBs -iHb -lKB -kvK -uFJ +jAw +rLM +kkB +kdY +vJT +wEP cik bzh vlm @@ -58712,17 +58622,17 @@ eSx vlm bCz bCz -wlj +dtQ bCz bCz -iDc -qUa +pHT +aSx vlm vlm eSx eSx eSx -pVP +mCw vlm vlm vlm @@ -58733,8 +58643,8 @@ vlm vlm vlm vlm -sYX -tQW +uEU +fbK vlm vlm vlm @@ -58822,13 +58732,13 @@ aac aac rKG cpV -eTc -gMW +isJ +gDx abv -ejx -ejx +tCy +tCy adK -ejx +tCy aam cdo seb @@ -58838,22 +58748,22 @@ cdo aam aam ced -mfA +aIy dWm cdA -dtN -nQW -cCU -wIN -piJ -wIN -hQS -kfa -fRn -wOv -fRn -fRn -wOv +dxt +eRD +rgC +kOa +dnO +kOa +sRl +qTl +mLS +cOX +mLS +mLS +cOX ayw ayw ayw @@ -58866,72 +58776,72 @@ gLF ijo ijo jEB -suP +wbR ijo ijo aHv -vFX +hSu oKo oKo -vFX +hSu oKo -czI +stZ cfx aPm -ezw +jqO oSV -wWX -wBs -iHb -oPO +yey +rLM +kkB +wXH aRf -wWX -xKJ -qmZ +yey +oHO +kDj aWR -wWX +yey oSV -jBE -wBs -wOY -lKB -kvK -rup +jhT +rLM +aSi +kdY +vJT +rHp cik bzh bzh bzh bzh bvK -hIv -mVM -fry -tdh -twg +eNx +kBP +eTQ +pGm +pBH bCz -gJN -knT -yaP +gFD +paL +hzr vlm -luS -okc -okc -uhI -srf +cPI +oHS +oHS +fsw +dIa vlm vlm vlm vlm vlm -jVt -whw +nQU +eRw vlm -csS -fzf -rMj -rMj -wVm -bkM +ikf +mCi +cNG +cNG +uLb +svi vlm aad aad @@ -59016,15 +58926,15 @@ aac aac aac rKG -bSg -pVv -ejx +elb +dkl +tCy cpV pIa pIa cpV cpV -nME +bPR aam cdo ahn @@ -59032,23 +58942,23 @@ cdo ced aam aar -ejx +tCy hmw -ecj -laC -fRn -sKB -joH -joH -sKB -joH -joH -sKB -fRn -fRn -fRn -fRn -fRn +ccb +cTr +mLS +dKY +nIX +nIX +dKY +nIX +nIX +dKY +mLS +mLS +mLS +mLS +mLS ayw ayw ayw @@ -59057,76 +58967,76 @@ aCR ijo ijo ijo -mER -fyk -dDk -osK -iie -enV +kTa +rrY +kUC +iHd +vSe +glx ijo -kyc -kyc -sQx -qcD -kyc +fmx +fmx +dkP +www +fmx ijo -fij +qqb cfy cik aJs aKK -wWX -wBs -ouM -fjx +yey +rLM +hvn +sQJ aRg -wWX -ntp -wOH +yey +tYS +oEq aWR -slc -lAs -cUl +oGs +ohx +hjT cik -nPf -lKB -oXJ -iHb -fXZ +dTk +kdY +iOe +kkB +wkE aPm cik cgT cik aPm -hIv -twg -iUz -twg -twg +eNx +pBH +inG +pBH +pBH bCz -lIs -iDc -sOu +dMy +pHT +huX vlm -fEv -mqA -mqA -tBd -xXb -fxt -lBo -luM -coE +kge +nLn +nLn +iap +wUq +rdC +ujA +rnR +gdq vlm -vll -whw +saJ +eRw vlm -csS -odC -rMj -rMj -xOD -bkM +ikf +eSZ +cNG +cNG +sFs +svi vlm aad aad @@ -59134,8 +59044,8 @@ aad aad iwH iwH -uSS -uSS +wPV +wPV iwH iwH iwH @@ -59212,14 +59122,14 @@ aac aac rKG rKG -lAG -wfC +fBN +cUS cpV aag pIa aao pIa -nME +bPR aam cdo ahn @@ -59227,19 +59137,19 @@ cdo aHz seb wgB -wPw -wMi -ecj -laC -kIN -cTn -fRn -fRn -fRn -fRn -cTn -fRn -xSw +kPk +hLK +ccb +cTr +kdR +cdP +mLS +mLS +mLS +mLS +cdP +mLS +eOk cdA awY axv @@ -59250,77 +59160,77 @@ aAR awJ aAR bVV -cGV -kCR -iie -fyk -fyk -osK -iie -jKu +oPj +iiG +vSe +rrY +rrY +iHd +vSe +uzr ijo -vDy -iie -iie -iie -fyb -mTg -czI -pRh -ref -nGn +egy +vSe +vSe +vSe +hGz +idw +stZ +woR +qiA +fOI oSV -wWX -wBs -iHb -mtI +yey +rLM +kkB +bMa aRf -wWX -xKJ -jES +yey +oHO +qvI aWR oSV -ktB -cUl +dFR +hjT bfW -hHT -qUi -kvK -lKB -iHb -nqc -kIs -mTE -nGn +ueJ +gfo +vJT +kdY +kkB +xiP +cMB +pGE +fOI aPm -hIv -qpq -dvl -xAy -xAy +eNx +ike +vqp +ejL +ejL odJ -ejK -knT -yaP +wpD +paL +hzr vlm -rMj -rYo -rYo -rYo -srf -fxt -vll -eon -vAg +cNG +ksu +ksu +ksu +dIa +rdC +saJ +wRM +hvk vlm -vll -jfe +saJ +pkn vlm -yey -odC -rMj -rMj -xHG +uxM +eSZ +cNG +cNG +knN vlm vlm aad @@ -59328,11 +59238,11 @@ aad aad aad iwH -nva +iuU fZe wDF iwH -tbU +qKR iwH iwH aad @@ -59423,14 +59333,14 @@ aHz seb odi baH -vhZ +uyj dWm cdA cdA cdA cdA -iTc -iTc +uYb +uYb cdA cdA cdA @@ -59444,91 +59354,91 @@ ayw aAR awJ aCQ -rVb -kyc -nNM -iie -fyk -fyk -osK -iie -jKu +tGe +fmx +sJK +vSe +rrY +rrY +iHd +vSe +uzr ijo -czI -iie -iie -iie -gsg -iXo -czI -pRh -lbJ -gRa +stZ +vSe +vSe +vSe +lfJ +dWw +stZ +woR +riO +dKV oSV -rIG -wBs -iHb -mtI +lfX +rLM +kkB +bMa aRf -wWX -xKJ -jRp +yey +oHO +gFw aWS oSV -wWX +yey bfW bfW cik -gRa -xHd -qpQ -wOY +dKV +uig +rLU +aSi aPm -vmZ -pXw -cMF +quX +pdx +lPH aPm bCz cft -lhY +bNb bCz odJ odJ -lvV -sow -qaq +kGE +mEj +gTq vlm -rMj -okc -okc -okc -srf -fxt -mth -eon -jcM -fxt -vll -whw +cNG +oHS +oHS +oHS +dIa +rdC +hIh +wRM +vmC +rdC +saJ +eRw vlm -csS -odC -rMj -rMj -hgV +ikf +eSZ +cNG +cNG +nwi vlm mWF -oaw +kiY aad aad aad iwH -uSS +wPV wXb hwI atI -csf -iLh +mmY +nRD iwH aad aad @@ -59623,13 +59533,13 @@ akR akR akR cdA -eUr -oxw -oxw -qBH -fCQ -nsr -bPc +vhV +olU +olU +iVI +lDA +raB +fIJ cdA cdA cdA @@ -59639,81 +59549,81 @@ ayw awJ awJ fwV -rVb -kyc -gBn -iie -iie -bor -wYc -iie -dZF +tGe +fmx +hTR +vSe +vSe +cJO +pfW +vSe +uJD ijo -czI -ogT -kyc -kyc -fyb -mTg -czI -pRh -lbJ -xGl +stZ +tHP +fmx +fmx +hGz +idw +stZ +woR +riO +rFI oSV -wWX +yey cik -xFM -mtI +mgG +bMa biH -wWX -xKJ -rWB +yey +oHO +tuH bWH oSV -wWX +yey bdE bfX cik -rup -heh -xKJ -gec +rHp +lpT +oHO +dPc aPm -mAq -jHZ +hwd +beC bLb aPm -wjn -nFU +uHt +xZr bsW -mbE -hjN -nAx -rSK -knT -yaP -uXT -rMj -mqA -mqA -pLr -srf +dAV +skI +eNS +kyt +paL +hzr +aFW +cNG +nLn +nLn +qDZ +dIa vlm -bJl -wBX -wxS +xkz +elc +uqH vlm -jVt -whw +nQU +eRw vlm -csS -odC -rMj -rMj -jOf +ikf +eSZ +cNG +cNG +kBz vlm bjr -pwa +hTi aad aad aad @@ -59722,7 +59632,7 @@ iwH iwH iwH nxh -gzz +ekj iwH iwH aad @@ -59805,7 +59715,7 @@ aac aac pIa pIa -lii +icT cdo aam adC @@ -59818,13 +59728,13 @@ aac aac akR cdA -eUr -oxw -oxw -oxw -mLt -oxw -oxw +vhV +olU +olU +olU +bMr +olU +olU cdA dWm djW @@ -59835,64 +59745,64 @@ awJ aAR aCQ ijo -ogT -bNE -mER -pik -pKS -osK -iie -hfz +tHP +rxl +kTa +oZS +wRA +iHd +vSe +vXs ijo -uiT +kXa ijo -iVg -iVg -iVg +eUS +eUS +eUS ijo -gNP -pRh -lbJ -iCU +pRt +woR +riO +xpk aKL -lDL -qnt -rip -gRk +jOd +wSk +rbM +sBH bbs -qIn -wEE -wiI +wBF +iTS +tvH aWU -lpo -wWX -wBs -wfN +hqV +yey +rLM +jMq cik cik cik -lhY +bNb cft bzh bzh bzh bzh bvK -gdz +vKp cgc ckF bvB cUi -nAx -nAx -iDc -sOu +eNS +eNS +pHT +huX ueU -nyg -rYo -rYo -gSt -srf +vMg +ksu +ksu +lCP +dIa eSx eSx eSx @@ -59901,24 +59811,24 @@ eSx eSx eSx eSx -cKr -hpp -rMj -rMj -fsU +qQc +tjw +cNG +cNG +jBF vlm bjr -pwa +hTi rEr wZZ htD aad aad iwH -tvp +lQK wXb -csf -iLh +mmY +nRD iwH aad aad @@ -60012,14 +59922,14 @@ aac aac iJh age -pef -oxw -mLt -mLt -oxw -oxw -mAm -mLt +fyf +olU +bMr +bMr +olU +olU +oxI +bMr cdA dWm ayb @@ -60028,45 +59938,45 @@ ayw ayw awJ aAR -csN +qtj ijo ijo -jtz +ncA ijo ijo ijo jEB -suP +wbR ijo ijo -eFy +chT ijo aAB aCb cfx cfx -czI -pRh -ref -nGn +stZ +woR +qiA +fOI biH -wTv -tGk -iHb -wWX +nJZ +tBV +kkB +yey biH -wWX -iwo -lZy +yey +kBd +jWu aWR -wWX -wWX -wBs -wWX +yey +yey +rLM +yey bjc bjc cik -rVi +wNG bCz bzh bzh @@ -60074,14 +59984,14 @@ bzh bzh bCz bCz -bSb -yaP -knT -laE -rIF -nAx -knT -yaP +qcR +hzr +paL +uhJ +pke +eNS +paL +hzr ueU ueU eSx @@ -60089,21 +59999,21 @@ flK eSx mwt hVm -qVn -oJQ +mWl +pFZ iEU -tMB -oHu +quB +cqt iEU iEU iEU vlm -sYX -tQW +uEU +fbK vlm vlm bjr -pwa +hTi rEr wZZ wZZ @@ -60207,14 +60117,14 @@ aac afZ iJh agR -pef -seo -myP -odK -odK -odK -owi -hgB +fyf +inb +pcc +vRV +vRV +vRV +wLg +icv cdA dWm tuu @@ -60223,88 +60133,88 @@ ufG ayw aAR aAR -tfc +bAV wto -kyc -kyc -vDy -kyc -kyc -czI -kyc -kyc -tHW -eAm +fmx +fmx +egy +fmx +fmx +stZ +fmx +fmx +glm +cKH ayW -wPZ -ghJ -wPZ -wPZ -eay +ibv +pAl +ibv +ibv +jTD cfx cik cgT cik -iLv +iVq cik -xFM -ezT +mgG +qRt biH -wWX -iHb -jRp +yey +kkB +gFw aWS -wWX -wWX +yey +yey cik -wWX -wPt +yey +ycJ bmc cik -lhY +bNb cft bzh bCz bCz bCz -mlX -ntn +wNt +rwx bvz -sOu +huX bvz -duv -iDc -iDc -iDc -sOu -iqd +kiW +pHT +pHT +pHT +huX +svn bvw bvw bvz gjk nPJ hVm -nhL -fUy -rps +lBz +dDi +szt dXQ dXQ dXQ dXQ -ooI +efp ace bjr bjr ace bjr bjr -pwa +hTi rEr wZZ bmv wZZ kKI -dcT +vhC nDj hwI hwI @@ -60418,68 +60328,68 @@ ufG ayw awJ aAR -tfc +bAV wto -kyc -kyc -qkv -wPZ -wPZ -ghJ -frd -jqH -pxo -czI +fmx +fmx +qOU +ibv +ibv +pAl +eUm +fjV +hht +stZ wto -kyc -kyc -kyc -kyc -czI +fmx +fmx +fmx +fmx +stZ cfx cik -tjs -mfa -xKJ +dUC +jMy +oHO cik -cKG -ezT +ubh +qRt biH -wWX -iHb -rWB +yey +kkB +tuH bWH -wWX -wWX +yey +yey bdI -vdB -kqN +sLg +mwN bjc cik bsW bvw bvw -pWr -uoK -cjK +xHo +dlD +gVO bvz -iDc +pHT bvz -gOq +wOO bvz -nAx -iDc -iDc -iDc -nKb -fpC +eNS +pHT +pHT +pHT +cYE +eco bvB eLC bvB bvB gaq hVm -mzV +kWB iEU iEU dXQ @@ -60493,7 +60403,7 @@ bjr bjr bjr bjr -pwa +hTi rEr bmv xFc @@ -60613,7 +60523,7 @@ ufG ufG awJ awJ -csN +qtj ijo cfx cfx @@ -60626,59 +60536,59 @@ auL cfx axz ijo -iVg -iVg -iVg +eUS +eUS +eUS ijo -nzO +dIt cfy cik cgT cik -fdr +lwx cik -rVM -wWX -qlv -qZO -kGc -rRv -xbI -cwZ -gjd +ekO +yey +kYw +ffL +suQ +tgK +jfc +nWj +eUM cik cik cik -tOF +rtb cik bsW bvz -iDc -iDc -iDc -iDc -iDc -qRu -iDc -gOq -iDc -lLq -iDc -ggZ -iDc -iDc -reh -wet -sOu -iDc -rHZ -jXl +pHT +pHT +pHT +pHT +pHT +wLV +pHT +wOO +pHT +inO +pHT +oMb +pHT +pHT +uAM +lFx +huX +pHT +lnw +gUa hVm iEU sAv -eoV -tcg -sXI +oPm +dOj +rqn iEU iEU iEU @@ -60688,11 +60598,11 @@ bjr bjr bjr bjr -pwa +hTi rEr bmv wZZ -fBD +vsP aYQ aYQ vPY @@ -60810,70 +60720,70 @@ awJ aHh aAR bVV -iie -hNs +vSe +hha ijo ijo ijo ijo -suP +wbR ijo ijo -eFy +chT ijo -wCf -xjy -nBq -rVb -czI +kUg +qDN +vuU +tGe +stZ cfx cik -ulC -mfa -xKJ +gFJ +jMy +oHO cik -eXt -iHb -tEr -eYQ -rVJ +fjo +kkB +kWd +noc +ipN cik -wWX -wWX -wWX +yey +yey +yey bdJ -mcm -jmw -fpC -csP -rUG +xBu +txK +eco +quG +spo bvB -sow -fpC -fpC -kMQ -xsP -kMQ -xsP -vNl -xsP -fhx -wCF -wJP -tbG -icL -dkA -nAx -fAd -oRK +mEj +eco +eco +xWT +uBj +xWT +uBj +fwB +uBj +kkC +oJq +vQA +itn +ewK +opL +eNS +iQB +lkZ bCz bCz snV srk iEU -uPX -tcg -oOz +mus +dOj +eXE iEU vQo wij @@ -60883,16 +60793,16 @@ bjr bjr utV bjr -pwa +hTi rEr bmv wZZ iwH -xPR -qPS +kQk +eLI iwH iwH -gLi +ebf iwH iwH aad @@ -61005,64 +60915,64 @@ ayw awJ awJ jdC -iie -fyk +vSe +rrY ijo -hjg -hxs -hjg -cRC +fMa +fgP +fMa +upK ijo -wkB -czI +iTz +stZ aGs -vIM -jUQ -iJy -rVb -czI +inQ +wyY +jDt +tGe +stZ cfz cik cgT cik -fdr +lwx cik cik -syb -syb -syb -syb +mHZ +mHZ +mHZ +mHZ cik -cQh -iHb -wWX +veC +kkB +yey bdK -mcm -tZg -hiA -hzs -nAx +xBu +lli +yhF +trU +eNS bvz -iDc -hiA -ioQ -iDc -iDc -iDc -iDc -iDc -iDc -wet -iDc -iDc -iDc -iDc -ioQ -iDc -sOu -uNH -iDc -lzs +pHT +yhF +cCf +pHT +pHT +pHT +pHT +pHT +pHT +lFx +pHT +pHT +pHT +pHT +cCf +pHT +huX +qWs +pHT +nIE snV srk iEU @@ -61078,7 +60988,7 @@ bjr bjr bjr bjr -jea +ngY rEr bmv wZZ @@ -61086,8 +60996,8 @@ iwH iwH iwH iwH -mzB -vEb +qSQ +wfO iwH aad aad @@ -61200,64 +61110,64 @@ ayw aAR awJ jdC -iie -fyk +vSe +rrY ijo -cRC -cRC -cRC -cRC +upK +upK +upK +upK ijo -uqN -qkv -dUR -wPZ -rQh -fcj +ddH +qOU +xci +ibv +axs +weL ijo -nzO +dIt cfA -wPZ -qIn -rip -iZs -uDg -pYT -uDg -uDg -uDg -feR -uDg -uDg -uDg +ibv +wBF +rbM +jfA +wsw +qPr +wsw +wsw +wsw +eqT +wsw +wsw +wsw bbs bdY -fUQ -ujt -mvM -hzs -nAx +npo +fbQ +fIQ +trU +eNS bvz -iDc -hiA -iDc +pHT +yhF +pHT orL orL -knT +paL orL orL orL -knT +paL orL orL orL orL -knT +paL bvz bsW bvz bvz -wnz +nqS snV srk srk @@ -61272,8 +61182,8 @@ bjr bjr bjr bjr -fkZ -okW +nQW +mjG gTa bmv wZZ @@ -61281,8 +61191,8 @@ aad aad aad iwH -kcJ -ogk +bXh +vtG iwH aad aad @@ -61395,64 +61305,64 @@ ayw ayw awJ ijo -kbd -rGa +ovD +ycx ijo -tgG -pwI -dqY -dqY +kfZ +wPO +hTW +hTW ijo -off -fXy -iie -iie -iie -vIM -rVb -bax +igM +itp +vSe +vSe +vSe +inQ +tGe +jrH cfx -kyc -oxU -iHb -fCm -fnA -fnA -fnA -fnA -fnA -kPV -fnA -fnA -fnA +fmx +bOg +kkB +iDg +rMI +rMI +rMI +rMI +rMI +eLd +rMI +rMI +rMI biH -bXk -cQC -tZg -nAx -hzs -nAx +egq +plN +lli +eNS +trU +eNS cgc -iDc -hiA -iDc +pHT +yhF +pHT orL -hFO -iDc -iDc -iDc -svC -iDc -iDc -iDc -vMn -oCY -iDc -iDc -sOu -iDc +mUa +pHT +pHT +pHT +nVX +pHT +pHT +pHT +kQM +hNd +pHT +pHT +huX +pHT bvz -qhz +fii snV srk wij @@ -61467,8 +61377,8 @@ vQo vQo bjr bjr -fkZ -pRz +nQW +pTU bmv bmv wZZ @@ -61598,58 +61508,58 @@ ijo ijo ijo ijo -qzn -kyc -iie -mER -hrR -nBq -rVb -czI +rsg +fmx +vSe +kTa +hFf +vuU +tGe +stZ cfx -kyc +fmx cik cik cik -bMg -iHb -jvF -tMa -jim -bMg -iHb -iHb -iHb +hUi +kkB +jlN +ifO +erN +hUi +kkB +kkB +kkB biH -bTC -rgT -tZg -nAx -wJz -nAx +mvr +ohI +lli +eNS +qhs +eNS bvz -iDc -fAd -iDc -vGl -vNv +pHT +iQB +pHT +wdz +duv baX bbT bcp -knT -knT -cAk +paL +paL +qIH bee bez bez bbT bgO bht -iDc -twg -oMF +pHT +pBH +dvZ snV -fkZ +nQW srk wZZ wZZ @@ -61662,13 +61572,13 @@ vQo srk wQx bjr -fkZ -pRz +nQW +pTU bmv bmv wZZ -kHp -jxd +rJP +mJh pAc aad aad @@ -61788,51 +61698,51 @@ aES awJ aAR ijo -vLz -sMy +mvu +nZA wto cfx auM -cRC -ogT -qIO -hgo -kbB -vIM +upK +tHP +dzk +qNs +eVo +inQ ijo -rbh +kUD aGD -sMh +bvT ckK -bzU -jOs -qbf -qbf +wBQ +pRs +vXz +vXz ckK ckK ckK ckK -qbf -qbf +vXz +vXz ckK bbu bem -kEy -nAx +eNF +eNS bCz bCz bCz bvQ -aDB -hiA -iDc +bGz +yhF +pHT orL -esW +bze baY -hzF +lKf cgO cnS -fnd +mkN grs cnS mPj @@ -61840,11 +61750,11 @@ pDz rFn vDr bhu -iDc -vGl +pHT +wdz bCz -wYB -qJX +ivK +vDH wZZ bmv bmv @@ -61857,13 +61767,13 @@ vQo vQo bjr bjr -fkZ -oFI +nQW +eJG jOV wZZ wZZ -uhD -fkZ +cpk +nQW aad aad aad @@ -61871,10 +61781,10 @@ aad aad aad sHP -iay +dDI ltp ltp -nIO +qCZ sHP aad aad @@ -61983,63 +61893,63 @@ ayw aAR awJ bVV -jbA -uMO -rVb +tWR +elz +tGe cfx cfx -cRC +upK ijo -vIb -vIb -vIb -qZZ +gYH +gYH +gYH +xxW ijo -eaD +upT aGD -tsQ +fwn ckK -jhH -xLS -eyW -xQr -iYx -iYx -iYx -fkI -uzf -uum +pgm +qTU +gtC +qkX +utp +utp +utp +pmY +mFX +xvK mtD mtD mtD -uLy -nAx -rwR -tFs +gUl +eNS +wnf +ycw bCz bwc -tqO -hiA -wet +tgA +yhF +lFx orL -esW +bze baZ cgO clg -rTE -loK -weR -tSP +ull +uhw +gkJ +qRN mQe cnS cnS vEw bhv -iDc +pHT qJC -twg -rsJ -nFS +pBH +fuP +lTR bmv jCE jCE @@ -62048,17 +61958,17 @@ bmv bmv wZZ bZT -kyl +rBG bjr bjr bjr bjr -lkb +rDM vQo wij wZZ -bPk -pwa +anX +hTi hwD vPQ aad @@ -62066,10 +61976,10 @@ aad aad aad sHP -wCb +okN lKv lJG -tIc +vWu sHP sHP sHP @@ -62183,58 +62093,58 @@ ijo ijo bYS bYS -cRC -fgT -cRC -fxu -cRC -fxu -cRC -mDt +upK +wmG +upK +jCG +upK +jCG +upK +uKx cfA -cHj -prH -msc -cOU -jiL -clU +agY +wrZ +haD +vFN +xYD +fqW ckK ckK ckK cnm -pBN -mJj -phd -pwR +oZa +eES +odq +hip mtD -cQC -nAx -vGl -nCX +plN +eNS +wdz +opW bvK -xSx -iDc -hiA -iDc +nJd +pHT +yhF +pHT orL -esW +bze fch cgP -gws -uuV +bri +cJq dqH gIo kgQ -fwk -ksf -vZC +fLr +itR +uxZ vGx bhw -iDc -wCd -mMl -wrM -lWt +pHT +kRw +dEL +mjB +cRc qDg bmv bmv @@ -62243,17 +62153,17 @@ bmv bmv fli bZT -xut -kMb -kMb -kHi -wxt -olF +ryI +jOr +jOr +whK +fcp +juQ vQo wZZ pri -uhD -pwa +cpk +hTi hwD vPQ aad @@ -62261,13 +62171,13 @@ aad aad aad sHP -pug +rCn tjo rqL -mBH +qyV sHP -clQ -jVb +loO +iRu sHP aad aad @@ -62378,58 +62288,58 @@ bWN ijo atO auO -fCq -jYT -fxu -upa -fxu -cRC -dtd -czI +gzi +jOB +jCG +stB +jCG +upK +oIK +stZ cfB -kyc +fmx ckK -eaW -qmF -llz -llz -jhU -eMo -pZb +wWY +qCj +gTV +gTV +gHf +apQ +pIr aRv -nBy -roz -oIF -eEj +pyw +dzH +oih +ggM mtD -cQC -nAx -vGl -vGl -dsN +plN +eNS +wdz +wdz +rYy bvz -iDc -hiA -wqe +pHT +yhF +uFV orL -esW +bze gaA cgP -mcQ +wOr coA coA gMF coA -miO -vFh -iaN +vSp +xGq +dvr vGx bhB -iDc +pHT iRY -twg -wrV -fkZ +pBH +mcn +nQW fvt bmv bmv @@ -62447,8 +62357,8 @@ vQo vQo wZZ wZZ -uhD -pwa +cpk +hTi hwD vPQ lPF @@ -62456,13 +62366,13 @@ aad aad aad sHP -nkz +bNo oZD lKv -wMN +iHh idW -kIE -xZK +pkT +cye sHP aad aad @@ -62566,65 +62476,65 @@ ayw ayw ayw ayw -mJC -tTQ -pEl +txf +wxD +uOy bWN ijo ijo ijo ijo ijo -coN +pfM ijo -lyR -lyR +udG +udG ijo -nlf -vxz -nap +cYf +peh +fjM aJB -hdW -cVy -gzY -hdC +mDm +xvY +cQE +nSM ckK -ugq -qXA +myq +uSS ckK -pcy -dsp -hou -vou +qcX +amb +kMy +srB ckK -cQC -nAx -rwR -pxa +plN +eNS +wnf +sQx bCz bvz -qRu -hiA -wrR +wLV +yhF +cAy orL -esW +bze bba cgQ cls -ngV -npk -sEW -sEW +pFT +hRi +iMc +iMc mUD coD coD vJx bhv -iDc -twg -lOa -cQl -qJX +pHT +pBH +wXV +otZ +vDH bmv cBv wZZ @@ -62642,8 +62552,8 @@ wZZ wZZ wij wZZ -uhD -pwa +cpk +hTi hwD vPQ vPQ @@ -62653,11 +62563,11 @@ aad sHP sHP iqe -jih +iPK sHP sHP -qHl -qHl +wGa +wGa sHP sHP aad @@ -62761,53 +62671,53 @@ ayw ayw ayw ayw -mJC -wsr -fdq +txf +vux +kHM bWN -opK -cOP -iTx -usN -lIT -fdq -efu -fdq -fdq -aTo +jlW +oiY +oXi +mqc +erW +kHM +vsQ +kHM +kHM +mtP aFs aGF cdh ckK -ibj -reD -vho -vho +kzu +hRe +utW +utW ckL mtD mtD mtD ckK cpd -dNR +tBO bby ckK -cQC -nAx +plN +eNS bCz bCz bCz bwd -qRu -hiA -wrR +wLV +yhF +cAy orL -esW +bze gkt -xtl +eMy cgQ coD -fnd +mkN coD coD mUU @@ -62815,11 +62725,11 @@ pGt rMv vOf mHA -iDc -vuc -wsF +pHT +dNL +vaz srk -fkZ +nQW wZZ wZZ wZZ @@ -62834,11 +62744,11 @@ wZZ wZZ wZZ wZZ -kHp -xMl -xMl +rJP +iJw +iJw bjr -fkZ +nQW uXg uXg vPQ @@ -62848,12 +62758,12 @@ vPQ uXg sHP fwc -aSy -rLs -xlW +ire +dDh +cZL lJG -aSy -aem +ire +mqW sHP aad aad @@ -62956,11 +62866,11 @@ awJ ayw ayw ayw -mgg -dKH -dKH -mgg -kjX +eWS +edE +edE +eWS +sRN cdh auQ cdh @@ -62981,38 +62891,38 @@ ckf aQd clI mtD -mVX -mVX -scd -bTR -dBw +jZj +jZj +wWE +soq +hSL ckK -tRG -nAx -dsN -eAT +wnN +eNS +rYy +gUZ bCz bwf -qRu -hiA -iDc -vGl -esW +wLV +yhF +pHT +wdz +bze bbe bef bcq -knT -knT -rVd +paL +paL +sbS bef beM beM bgj bef bhE -iDc -twg -fuV +pHT +pBH +iFQ snV srk wZZ @@ -63028,12 +62938,12 @@ bmv wZZ wij wZZ -kHp +rJP bjr bjr -kMb -kMb -lVW +jOr +jOr +rhW srk uXg vPQ @@ -63044,11 +62954,11 @@ vPQ sHP fMv ltp -aSy +ire gHQ fLl -aSy -eja +ire +jMI sHP aad aad @@ -63151,81 +63061,81 @@ awJ ayw aET ayw -rpG -dKH -dKH -rpG -fdq +hES +edE +edE +hES +kHM atQ -wwb -dKH -dKH -cNv -dKH -dKH -qqr -cNv -mZc -wCl -dKH -dKH -pWY -dKH -dYu -dKH -wwb +ser +edE +edE +lGT +edE +edE +nMM +lGT +nxi +pbR +edE +edE +xSd +edE +dtj +edE +ser cdh -sIs -kZX -eQJ -iXW -gsH -fPR +nNb +pXr +vir +lEx +hgR +rSg ckK -cQC -nAx +plN +eNS bCz -pEP +rKo bCz bwh -qRu -hiA -xch +wLV +yhF +pti orL -iDc -iDc -uqJ -uqJ -uqJ -iDc -iDc -iDc -ola -iDc -iDc -iDc -sOu -uNH +pHT +pHT +lCd +lCd +lCd +pHT +pHT +pHT +mbh +pHT +pHT +pHT +huX +qWs bvz -ola +mbh snV srk wij wZZ -uEr -slp -slp -slp -lkb +tRs +bMe +bMe +bMe +rDM wZZ wZZ bmv wZZ wZZ wZZ -uhD +cpk bjr -cXy +jVL kZL eVc uXg @@ -63239,10 +63149,10 @@ hMs sHP sHP sHP -jlT +nZJ nnq -hZc -cIL +mcG +sCn sHP sHP aad @@ -63341,85 +63251,85 @@ aac aac anG anG -kZn -kZn -kZn +epA +epA +epA anG anJ aDE -wsr -fdq +vux +kHM aDE -kNS +nQp cdh -gco -voC -oDJ -oah -dKH -hHR -mmf -stE -gco -pIp -wdJ -oac -dKH -iGQ -xTE -vUD -gco +uMG +azK +tgR +iRo +edE +wFy +sHz +pAt +uMG +rQj +wEE +eQg +edE +lyE +khW +pzy +uMG clK -tUt -kZX -wBJ -okQ -gyc -knx -heq -mLA -nAx +rys +pXr +wvU +qOX +uuZ +vWf +kEJ +naA +eNS bCz -qlM +hfQ bCz bwi -qRu -hiA -iDc +wLV +yhF +pHT orL orL -knT +paL orL orL orL -knT +paL orL orL orL orL -knT +paL bvz bsW bvz -twg -lzs +pBH +nIE snV srk wZZ wZZ -kyl +rBG bjr bjr bjr -jea +ngY wij wZZ bmv bmv wZZ wZZ -uhD -fkZ +cpk +nQW reb fHW vPQ @@ -63433,11 +63343,11 @@ vPQ wXm vPQ vPQ -pqz +umY xLB lKv -xPz -xPz +hYT +hYT sHP aad aad @@ -63535,77 +63445,77 @@ aac aac aac anG -hmv -bqm -wQJ -oUM +vma +dZD +mpa +geh anG djW aDE bWN bWN bWN -mfK +mvq ckf -gco -cVi -cVi -cVi -dKH -tgv -tgv -dfR -gco -gQE -wKl -fxi -dKH -cVi -tgv -gmL -gco +uMG +bJY +bJY +bJY +edE +jMt +jMt +bRV +uMG +vEu +itS +bIG +edE +bJY +jMt +eFY +uMG cdh -mRR -kZX -mWI -nYG -kZX -hSh -ojF -kHz -pCe +kih +pXr +rFw +rFQ +pXr +nUm +qzG +thf +tyT bCz bCz bCz bwj -qRu -hiA -fcX -iDc -iDc -iDc -iDc -iDc -iDc -iDc -iDc -iDc -iDc -iDc -fcX -iDc -sOu -iDc -ola -jXl +wLV +yhF +bOU +pHT +pHT +pHT +pHT +pHT +pHT +pHT +pHT +pHT +pHT +pHT +bOU +pHT +huX +pHT +mbh +gUa snV srk vQo wZZ -kyl +rBG bjr bjr -fkZ +nQW wZZ wZZ wZZ @@ -63613,8 +63523,8 @@ bmv bmv xFc bmv -uhD -fkZ +cpk +nQW pzb wXm vPQ @@ -63730,67 +63640,67 @@ aac aac anG anG -qmD -vyw -vyw -vyw +gcd +jZl +jZl +jZl anG anG anG bPf bPf bPf -pzZ +jIn cdh -ped -eDS -eDS -xJF -qbb -eZH -xJF -xJF -lxX -qsU -eZH -eDS -qbb -xJF -xJF -xJF -pqI +uSd +gfq +gfq +vZG +kLE +mct +vZG +vZG +jdF +bUP +mct +gfq +kLE +vZG +vZG +vZG +rRE cdh ckK -dTV -fPR -rQI -sKE -dGf -ojF -cQC -nAx -nAx -iOV -nAx +sKH +rSg +uKH +fvR +yjm +qzG +plN +eNS +eNS +uUn +eNS bwk -qRu -tmj -rUG -hnO -xsP -xsP -xsP -lrr -xsP -xsP -lrr -xsP -xsP -xsP -qwt -xsP -mvM -qKW +wLV +uxv +spo +gBF +uBj +uBj +uBj +uEM +uBj +uBj +uEM +uBj +uBj +uBj +ndK +uBj +fIQ +hqP bCz bCz snV @@ -63800,7 +63710,7 @@ vQo srk bjr fow -fkZ +nQW wZZ wZZ wZZ @@ -63808,8 +63718,8 @@ wZZ bmv bmv uwJ -uhD -fkZ +cpk +nQW hGm bIu vPQ @@ -63925,75 +63835,75 @@ aac aac anG bPf -ePe -vyw -phg -wCH +hpC +jZl +duF +gQI bPf -puL -lLm -wWx +kTG +fff +vhT bPf bPf -qrm +eIM cdh -oZU -tgv -tgv -uRb -dKH -tgv -xHR -tgv -gco -xHR -rxb -tgv -dKH -tgv -xHR -tgv -gco +sMU +jMt +jMt +ubQ +edE +jMt +oQC +jMt +uMG +oQC +nzK +jMt +edE +jMt +oQC +jMt +uMG cdh ckK ckK -qbf -qbf -qbf -qbf +vXz +vXz +vXz +vXz bes -kHz -xsP -xsP -ePw -xsP -xsP -mqr -oWf -oGy -oGy -oGy -fvl -kZi +thf +uBj +uBj +fQE +uBj +uBj +uNP +wYJ +eqs +eqs +eqs +hsC +gYK bCz -trK -trK +gWV +gWV bCz -mqI -ovG -sow -bIc -iDc -iDc -iDc -hKX -vhv +yjf +vHL +mEj +tHz +pHT +pHT +pHT +psS +bQr vOs bCz bCz bCz bCz -wlj +dtQ bCz vQo vQo @@ -64003,9 +63913,9 @@ wZZ wZZ wZZ wZZ -uhD +cpk bjr -qrF +eZP ajf uXY uXY @@ -64097,7 +64007,7 @@ aYp aYo aYp aYp -fsX +mno ahg aeL agR @@ -64120,75 +64030,75 @@ aac aac anG bPf -txi -txi -txi -hNh -txi -txi -txi -txi -nsV +wxO +wxO +wxO +erH +wxO +wxO +wxO +wxO +kYB bPf -fdq +kHM cdh -sJx -qmH -tgv -tgv -qfB -tgv -ljp -rxb -gco -tgv -tgv -tgv -xsl -tgv -tgv -cVi -gco +fiu +jdR +jMt +jMt +kGA +jMt +aZa +nzK +uMG +jMt +jMt +jMt +rfY +jMt +jMt +bJY +uMG cdh cdh -sRu +dzR col col col col -sRu -cQC -tZg -nAx -pkV -nAx -mgy -mbV -mgy -mgy -xwg -eNm -eNm -riB +dzR +plN +lli +eNS +udU +eNS +ykd +qnP +ykd +ykd +uUI +nra +nra +wDp bCz -mxV -oCL -woa +qbP +tTJ +xku kzk bsW -mbN -mbN -mbN -mbN +uBp +uBp +uBp +uBp bvz bvz bvz -svX -twg -twg -twg -twg -twg +xjC +pBH +pBH +pBH +pBH +pBH bCz vQo vQo @@ -64198,12 +64108,12 @@ mMR wZZ wZZ wZZ -lQf +xOl bjr bjr -slp -slp -lkb +bMe +bMe +rDM hwD vPQ vPQ @@ -64314,62 +64224,62 @@ aac aac aac anG -cYv -wie -wie -wie -wgV -olL -wJG -ouY -wJG -nLI -fMc -rKr +efw +hBy +hBy +hBy +dRm +ict +wvn +neE +wvn +eCd +kMK +bxj atR -fvG -exd -lOz -cEk -pWY -tSS -eIF -iSo -gco -fGV -iol -tYN -dKH -nUo -kCj -mKb -gco +kko +nfW +wak +gwM +xSd +mDf +nPT +ecZ +uMG +eKT +rHD +wSm +edE +uFi +qXv +taX +uMG aRo cdh -fzw +xcl pNL pNL pNL pNL -fzw +xcl bsW bvz -nAx +eNS vOs -hnK -hnK -dlL +plD +plD +opN vOs vOs -rrk -rrk -vPV -vPV +gFs +gFs +xLY +xLY bCz -sgU -euI -woa -kiZ +gyo +kRU +xku +lpw bsW bvz ski @@ -64379,11 +64289,11 @@ iDq bvz bvz bCz -roB -rRW -qAa -hIv -pgK +dyU +gRv +rFF +eNx +mOc bCz vQo vQo @@ -64394,11 +64304,11 @@ wZZ wZZ bmv bmv -lQf -kHi -kHi +xOl +whK +whK bjr -fkZ +nQW uXg uXg uXg @@ -64509,60 +64419,60 @@ aac aac aac anG -uQP -txi -txi -txi -hFZ -txi -txi -hNh -txi -qcv -fnf -fdq +whF +wxO +wxO +wxO +omi +wxO +wxO +erH +wxO +dNo +vhH +kHM cdh -gXV -pWY -dKH -sKH -dKH -wCl -rVv -dKH -gco -pWY -pWY -pWY -dKH -pWY -wCl -pWY -sAX +fJG +xSd +edE +wjV +edE +pbR +lIc +edE +uMG +xSd +xSd +xSd +edE +xSd +pbR +xSd +uQs aRq cdh -fzw +xcl pNL pNL pNL pNL -fzw +xcl bsW bvz -nAx +eNS vOs -cjK -xBx -vSW -vKz +gVO +fCB +rkz +ojv vOs -trK -trK -trK +gWV +gWV +gWV bCz bCz bCz -lWQ +xts bCz bCz bsW @@ -64571,8 +64481,8 @@ vOs vOs vOs vOs -mfu -mfu +rkA +rkA vOs bCz bCz @@ -64592,8 +64502,8 @@ wZZ bmv wZZ wij -uhD -fkZ +cpk +nQW uXg uXg uXg @@ -64705,17 +64615,17 @@ aac aac anG bPf -icq -gOd -fcC +xuS +dKq +pce anG -pdG -txi -hNh -rXm +jFo +wxO +erH +tev bPf bPf -hiz +oar cdh cdh cdh @@ -64735,32 +64645,32 @@ aNz azj aQi aAL -ioh -qkB +lNk +hCD aVD aVD aVD aVD -qkB +hCD nPJ bvz -nAx +eNS vOs -tYl -tZw -qzZ -dWh +baI +lXX +eBQ +oMs vOs -dcO -kgl -qyv -ivg +lST +nyf +isN +obD clw cqf dBe -tpY -woa -hiA +pxD +xku +yhF bvz vOs vQo @@ -64787,8 +64697,8 @@ wZZ wZZ wZZ wij -uhD -fkZ +cpk +nQW uXg uXg ygq @@ -64899,63 +64809,63 @@ aac aac aac anG -wov -txi -txi -txi -psh -txi -txi -hNh -txi -eGz +hKB +wxO +wxO +wxO +wph +wxO +wxO +erH +wxO +nvI bPf -uWN -dKH -dKH -dKH -gco +oVI +edE +edE +edE +uMG cjn -hLJ -hLJ -hLJ -hLJ +xeb +xeb +xeb +xeb cjn -wmf -kUk -uAR -cXr -eEG +gkv +sDX +gju +dLa +hQn cjn -dHy -lDy -pDo -pDo +wLp +lHZ +wKJ +wKJ aUc cpU cpU cpU cpU cpU -dSD -oQM -ebe +kMU +kSe +rhO vOs -pKV -pEI -vSW -eJG +xrA +jRP +rkz +uPD vOs -xYZ -ehf -sWX +vGI +kvQ +tgP bCz clx -hiA -nAx -ofA -woa -hiA +yhF +eNS +cKj +xku +yhF bvz vOs vQo @@ -64979,16 +64889,16 @@ wZZ vQo jWz jWz -isf +fTh jWz jWz -uhD -fkZ +cpk +nQW uXg uXg ygq -ikk -hJb +kiC +kcK ygq lAx vPQ @@ -65094,63 +65004,63 @@ aac aac aac anG -lPb -wie -wie -wie -wie -wie -txi -hNh -txi -oAI +gCt +hBy +hBy +hBy +hBy +hBy +wxO +erH +wxO +gaf bPf -fXA -tgv -tgv -tgv -dzp -qde -rvb -eiq -eiq -rvb -qde -gaK -gaK -gaK -gaK -nuF -qde -rvb -gcK -rvb -rvb +rmK +jMt +jMt +jMt +kez +iHw +pyt +gwh +gwh +pyt +iHw +cbc +cbc +cbc +cbc +ciP +iHw +pyt +sve +pyt +pyt cpU -pmz -qtm -euR -pUa +gWT +wyj +gdB +wsr cpU crI aHP -ebe +rhO vOs -nLi -uoK -vSW -gdz +hmk +dlD +rkz +vKp vOs -eAT -mjS -eAT +gUZ +vfx +gUZ bCz cly -ehC -trK -trK +ntB +gWV +gWV vOs -fRy +tzL cUi vOs vQo @@ -65173,17 +65083,17 @@ wZZ vQo jWz okK -rMH +oci onr wBI jWz -uhD -iCW +cpk +uUB srk uXg oWU -xxo -bBn +tWw +daP ygq ygq ygq @@ -65289,63 +65199,63 @@ aac aac aac anG -wov -txi -txi -hFZ -txi -txi -txi -hNh -vuo -lBg +hKB +wxO +wxO +omi +wxO +wxO +wxO +erH +lBQ +vMP bPf -dNh -tgv -tgv -lCc -wDh -oiN -vDQ -sYk -sYk -kqA -oiN -eLJ -eLJ -eLJ -eLJ -gPI -oiN -ihm -sBu -dVY -rvb -sJW +gtr +jMt +jMt +qrQ +sRH +egj +qEz +jZA +jZA +xsK +egj +hho +hho +hho +hho +pvT +egj +iFY +lLR +rFW +pyt +azQ aVF aXk aVF -muV +mSO aKM crI aHP -ebe +rhO vOs -abm -dCG -vSW -lgA +gBA +xPM +rkz +rcX vOs -eAT -mjS -eAT +gUZ +vfx +gUZ bCz bvz -wMG -oSM -jYn -xsP -mvM +nOf +kEM +wnI +uBj +fIQ bvz vOs wZZ @@ -65372,18 +65282,18 @@ qcV onr qTF jWz -uhD -fkZ +cpk +nQW uXg ygq ygq -tBZ -hki +iaz +kIr ygq pUB pGy ygq -qZL +slb ygq pge pge @@ -65485,15 +65395,15 @@ ali ali bPf bPf -kvP -kvP +uuk +uuk bPf -weS -weS -weS -hNh -txi -oAI +oyQ +oyQ +oyQ +erH +wxO +gaf cjn cjn chB @@ -65501,39 +65411,39 @@ chi bZH cjn cjn -dZt -dVY -dVY -dTc +jST +rFW +rFW +yla cjn -kac -gaK -gaK -dGG -mLF +hah +cbc +cbc +tDW +cEU cjn -rvb -qDP -dVY -hyA +pyt +tIq +rFW +npV cpU aVF -huV -gAy -nxO +pxi +nRZ +kkM cpU crI aHP -ebe +rhO vOs vOs vOs -dlL +opN vOs vOs -eAT -mjS -eAT +gUZ +vfx +gUZ bCz bvz bvz @@ -65563,17 +65473,17 @@ jWz jWz jWz kaw -nTY +cIK rel -tJa +lYx jWz -uhD -fkZ +cpk +nQW uXg ygq -uiI -hqj -wWc +tjX +jLj +idI usI vJB kbU @@ -65655,9 +65565,9 @@ agR agR agR agR -dCl +ddr aba -dCl +ddr agR agR agR @@ -65678,57 +65588,57 @@ ahZ awb agR agR -qjj -sTq -vGK -vGK -aLI -vGK -vGK -weS -hNh -txi -eGz +lnC +tTF +lIY +lIY +kgz +lIY +lIY +oyQ +erH +wxO +nvI cjn cau bYl -tCn +bSt bZI cao cjn -rvb -dVY -dVY -mcs +pyt +rFW +rFW +mwu cjn -qRk -iVo -grQ -bGL -eTm +dLr +wmS +lUZ +vEg +hOP cjn -rvb -qDP -nqu -ogf +pyt +tIq +fZd +uaN cpU -jcZ +swl cpU cpU cpU cpU -lcN -iBB -ybi -jsI -jsI -opI -lcN -iBB +kxS +xrQ +nkn +tUA +tUA +pAW +kxS +xrQ bCz -eAT -mjS -eAT +gUZ +vfx +gUZ bCz bvz bvz @@ -65737,7 +65647,7 @@ bvz bvz bvz bvz -oXk +kSY bmv bmv bmv @@ -65755,20 +65665,20 @@ bmv bmv bmv jWz -rRX -fbU -vgH -oLB -cmU -sbm +mXw +sZr +tUX +qHw +dWH +pGi jWz -uhD -fkZ +cpk +nQW uXg ygq -xRh -wWc -epp +rlS +idI +kGl xPv xPv iHX @@ -65850,9 +65760,9 @@ age agR agR agR -oEv -oEv -oEv +pFy +pFy +pFy agR agR ahZ @@ -65873,66 +65783,66 @@ agR ahZ amw ahZ -uKI -vGK -vGK -vGK -qHC -ouI -ouI -ulu -xYl -vuo -oAI +wUf +lIY +lIY +lIY +eLT +vUP +vUP +tav +cSz +lBQ +gaf cjn bXC bYm -dHp +slu bZJ cao cjn -rvb -rvb -dVY -drJ +pyt +pyt +rFW +rPV cjn -eZn -eZn -eZn -eZn -eZn +gVR +gVR +gVR +gVR +gVR cjn -vWQ -qDP -dVY -rvb -vGj -oQM -oQM -jcf -jcf -vGj -mDy -eVW -ogd -eVW -eVW -eVW -vNJ -tGo +obv +tIq +rFW +pyt +jhV +kSe +kSe +gYv +gYv +jhV +vHS +xZT +cUV +xZT +xZT +xZT +nGd +kmM bCz -iaW -oXi -mkF +kdw +ppB +nBI bCz -hvr -uVd -okr -oYQ -vPV +lQa +hUT +oGx +mJK +xLY bvz bvz -vGl +wdz bmv xFc bmv @@ -65950,25 +65860,25 @@ uwJ bmv bmv jWz -pTR -vgY +dDF +qpf jWz -nJu -dRt -pFt +vzv +wzA +mdH jWz -uhD -fkZ +cpk +nQW uXg ygq ygq -hrQ -xRh +qig +rlS ygq lyX wEo ygq -qZL +slb ygq vPQ vPQ @@ -66068,65 +65978,65 @@ ahZ ahZ agR agR -fnf -vGK -fLE -vGK -vGK -vGK -klp +vhH +lIY +daW +lIY +lIY +lIY +fEi bPf -uAl -vuo -vYd +mTF +lBQ +liI cjn asV atS -dVY +rFW cjn cjn cjn cjn -rvb -nqu -gcK -kbY -rvb -rvb -rvb -rvb -rvb -kbY -rvb -ecS -dVY -rvb -vGj -oQM -oQM -iFp -iFp -vGj -iBB -iBB -kyz -iBB -plR -iBB -mDy -eVW -ivg -qyv -fnE -eAT +pyt +fZd +sve +hjG +pyt +pyt +pyt +pyt +pyt +hjG +pyt +vvd +rFW +pyt +jhV +kSe +kSe +tNP +tNP +jhV +xrQ +xrQ +nsG +xrQ +imr +xrQ +vHS +xZT +obD +isN +wgb +gUZ vOs vOs vOs vOs vOs vOs -knT -etB +paL +iTc vOs bmv bmv @@ -66152,8 +66062,8 @@ jWz jWz jWz jWz -uhD -iCW +cpk +uUB srk uXg ygq @@ -66195,7 +66105,7 @@ jLb jLb sKX jLb -jji +dDy aad aad aad @@ -66263,57 +66173,57 @@ aiW akH agR agR -qjj -nLF -jCA +lnC +dNW +scK akE -ioV -vGK -ioV -kvP -hNh -vuo -oAI +hlf +lIY +hlf +uuk +erH +lBQ +gaf arI asW atT -tCn -jRC -llL -uoD +bSt +wMp +jFx +frg cjn -rvb -dVY -wpl -sYk -sYk -sYk -sYk -sYk -sYk -sYk -eON -wqN -dVY -cpx +pyt +rFW +nfM +jZA +jZA +jZA +jZA +jZA +jZA +jZA +ecD +hlQ +rFW +bTP cpU -vEZ -vEZ +gbQ +gbQ cpU cdm cdm -iBB -oWT +xrQ +ixc cdm cdm cdm -iBB -oWT +xrQ +ixc cdm vOs -trK -trK -trK +gWV +gWV +gWV vOs htD cth @@ -66347,8 +66257,8 @@ bmv lgy bmv bmv -uhD -fkZ +cpk +nQW jPV oDL vPQ @@ -66462,46 +66372,46 @@ anG anG anG anG -sNr -ioV -wXZ -rkN -hNh -txi -oAI +cFM +hlf +nwK +evw +erH +wxO +gaf cjn -dVY -eeK -dVY +rFW +tpF +rFW cjn cjn cjn bZH -rvb -dVY -eTm -bOM -env -rvb -rvb -rvb -mtt -rvb -eTm -bVT -rvb -nnE +pyt +rFW +hOP +pWs +vIS +pyt +pyt +pyt +iDN +pyt +hOP +mOb +pyt +diI cpU -oTT -rwY +fGu +mWm cpU -hxT -qdC -uhD -fkZ +kSV +qHh +cpk +nQW bmv bIt -hrC +cyS btL wZZ wZZ @@ -66542,8 +66452,8 @@ bmv bmv bmv bmv -uhD -fkZ +cpk +nQW jPV oDL vPQ @@ -66636,13 +66546,13 @@ ahZ ahZ ahZ amm -oEv -oEv +pFy +pFy abO acg acv -cOq -eAV +aaN +wCo amm ahZ ahZ @@ -66658,42 +66568,42 @@ aac aac aXG nJO -ioV +hlf amP bPf bVw apI apI cjn -wGo -peD -dVY -dVY -mew -dVY +sKQ +heV +rFW +rFW +rdF +rFW bYV -rvb -dVY -lXJ +pyt +rFW +uQh cjn cjn -map -map +ndu +ndu cjn cjn cpU cpU cpU -jcZ +swl cpU cpU -oTT -iAw +fGu +uyJ aZz -qdC -qdC -uhD -fkZ +qHh +qHh +cpk +nQW wZZ wZZ wZZ @@ -66815,7 +66725,7 @@ aac aac aUp ahg -jxW +qtg aUp aaQ ahZ @@ -66831,13 +66741,13 @@ ahZ ahZ ahZ ahZ -oEv -tYn -gmC -gmC -gmC -tYn -cOq +pFy +hcH +jsf +jsf +jsf +hcH +aaN agS ahZ ahZ @@ -66853,42 +66763,42 @@ aac aac aXG nJO -ioV +hlf amP anR -hNh -txi -vyw -tCn -dVY -fnB -tCn -dVY -lWz -dVY +erH +wxO +jZl +bSt +rFW +lGt +bSt +rFW +nQN +rFW chB -rvb -bVT -rvb -itV +pyt +mOb +pyt +jRv aGO aHP aHP aKZ cjn -dfZ -bWA +rvz +pAy cpU -vKT -htM +cxb +rkK cpU -oTT -guK +fGu +eBc cpU -hxT -qdC -uhD -fkZ +kSV +qHh +cpk +nQW wZZ bqf csY @@ -66897,22 +66807,22 @@ wZZ bqf bLD wZZ -kHp -xMl -xMl -xMl -xMl -xMl -xMl -xMl -xMl -xMl -xMl -xMl -xMl -xMl -xMl -ufR +rJP +iJw +iJw +iJw +iJw +iJw +iJw +iJw +iJw +iJw +iJw +iJw +iJw +iJw +iJw +eaR wZZ vQo vQo @@ -67026,13 +66936,13 @@ agR ahZ agR ahZ -oEv -tYn -rcj -rcj -rcj -tYn -oEv +pFy +hcH +xMw +xMw +xMw +hcH +pFy ahZ ahZ ahZ @@ -67048,16 +66958,16 @@ aac aac aXG nJO -jEp +oFm amP anU -hNh -txi -vyw -lHh -vLA -dVY -tCn +erH +wxO +jZl +ibn +rka +rFW +bSt cjn cjn cjn @@ -67067,47 +66977,47 @@ cjn cpU cjn aHP -dVY -dVY +rFW +rFW aHP -suI -vKT -vKT -dGI -dGI -dGI -dGI -vKT -vKT -kFa -qdC -qdC -uhD -fkZ +mpi +cxb +cxb +stM +stM +stM +stM +cxb +cxb +mXa +qHh +qHh +cpk +nQW bmw bqs csZ bqf bqf wZZ -nPD +nws wZZ -uhD +cpk bjr bjr bjr -kMb -kMb -kHi -kHi -ewS -kHi -kHi -kMb -kMb -kMb +jOr +jOr +whK +whK +vBQ +whK +whK +jOr +jOr +jOr bjr -fkZ +nQW wZZ wZZ vQo @@ -67221,13 +67131,13 @@ ahZ agR ahZ amm -oEv -oEv +pFy +pFy abR ach byP -cOq -eAV +aaN +wCo amn ahZ agR @@ -67243,13 +67153,13 @@ aac aac aXG nJO -ioV +hlf amP anR -hNh -txi -bPN -tCn +erH +wxO +dCy +bSt ata vCD avb @@ -67266,31 +67176,31 @@ aHP aHP aLa cjn -uAu +cKL cpU -rwY -vKT -vKT -vKT -vKT -vKT -vKT -pIH -qdC -uhD -fkZ +mWm +cxb +cxb +cxb +cxb +cxb +cxb +rBM +qHh +cpk +nQW wZZ bwE -uSd +pnc sPF -uSd +pnc btL btE wZZ -uhD +cpk bjr bjr -pwa +hTi cti btN cpg @@ -67301,8 +67211,8 @@ wvt bBr wLv wLv -mwH -fkZ +jbD +nQW wZZ wZZ srk @@ -67438,17 +67348,17 @@ aac aac aXG nJO -ioV +hlf amP bPf -uAl -vuo -vyw -dVY +mTF +lBQ +jZl +rFW bZI bZI bZI -jRC +wMp axM bYm aAU @@ -67457,14 +67367,14 @@ aDs cpU cjn cjn -map -kbV +ndu +nvV cjn cjn -rwY +mWm cpU cpU -jcZ +swl cpU cpU cpU @@ -67472,20 +67382,20 @@ cpU cpU bbK xkj -uhD -fkZ +cpk +nQW wZZ wZZ sPF -vQX +paq sPF bDB wZZ wZZ -uhD +cpk bjr bjr -cXy +jVL cuc cwq xkj @@ -67496,22 +67406,22 @@ cwq xkj xkj wLv -mwH +jbD bjr -xMl -xMl -xMl -xMl -xMl -xMl -xMl -xMl -tpw -xMl -xMl -xMl -xMl -xMl +iJw +iJw +iJw +iJw +iJw +iJw +iJw +iJw +vVs +iJw +iJw +iJw +iJw +iJw cpg uXg uXg @@ -67632,19 +67542,19 @@ aac aac aac aXG -sNr -ioV -wXZ -qxs -hNh -txi -vyw -tCn +cFM +hlf +nwK +cRL +erH +wxO +jZl +bSt ata vCD avb aEe -usi +gLv bYm aAW aCn @@ -67652,14 +67562,14 @@ aDt cpU aFD cpU -eeH -vKT +aeP +cxb cpU cpU cpU cpU cpU -vKT +cxb cpU cpg aMw @@ -67667,19 +67577,19 @@ xkj xkj xkj xkj -uhD -fkZ +cpk +nQW wZZ bqf -uSd +pnc sPF -uSd +pnc wZZ bqf wZZ -uhD +cpk bjr -fkZ +nQW reb ctH xkj @@ -67691,22 +67601,22 @@ xkj xkj xjr lmv -wEu -kMb -kHi -kHi -ewS -kHi -kHi -ewS -kHi -kHi -kHi -kHi -kMb -kMb -kMb -gUS +fNR +jOr +whK +whK +vBQ +whK +whK +vBQ +whK +whK +whK +whK +jOr +jOr +jOr +fVI wLv cpg uXg @@ -67827,17 +67737,17 @@ aac aac aac aXG -ioV -qHC -nlS -rjm -sFm -cNY -esf -tCn -dVY -dVY -dVY +hlf +eLT +xbh +fgd +qjr +xiF +wFL +bSt +rFW +rFW +rFW cjn cau bYm @@ -67847,14 +67757,14 @@ cdm aDu aDu aDu -vKT -vKT -pwl -dGI -dGI -dGI -diX -vbo +cxb +cxb +khV +stM +stM +stM +joL +xhZ cpU cpg xkj @@ -67862,8 +67772,8 @@ xkj aNF xkj xkj -uhD -fkZ +cpk +nQW bmw brs bqf @@ -67872,9 +67782,9 @@ wZZ btK wZZ wZZ -uhD +cpk bjr -fkZ +nQW pzb lmv xjr @@ -67927,7 +67837,7 @@ vPQ vPQ vPQ uXg -pJg +lUX jLb jLb jLb @@ -68022,33 +67932,33 @@ bNW aac bNW bME -sdX -jWZ -sdX -qxs -txi -bSe -esf -dVY -dVY -dVY -vKG +mWn +szr +mWn +cRL +wxO +hAK +wFL +rFW +rFW +rFW +nWs cjn cjn cjn cjn -nPU +qBq cdm -uhj -pOG +jcH +uIK aDu -eeH -eeH +aeP +aeP cpU -xwp -xwp -xwp -xwp +dyu +dyu +dyu +dyu aFD aFD xkj @@ -68057,8 +67967,8 @@ xkj xkj xkj xkj -uhD -fkZ +cpk +nQW wZZ btE btL @@ -68067,9 +67977,9 @@ wZZ bDC wZZ wZZ -uhD +cpk bjr -fkZ +nQW hGm ctZ xjr @@ -68221,29 +68131,29 @@ bME bME bME bPf -vGK -xzT +lIY +uvv bPf cjn -pih -dVY -sGz -dEG -vsT -qqz -oqm -oqm +odX +rFW +oDT +maF +dJW +oLg +iev +iev aDu -slz -eeH -rBA -vKT -vKT +qXE +aeP +mVL +cxb +cxb iau -uoN -vKT -flk -mYb +rkF +cxb +lvz +pGK cpg cpg wLv @@ -68252,20 +68162,20 @@ wLv xId cpg aMw -rSr +rUE bjr -xMl -xMl -xMl -xMl -xMl -xMl -xMl -xMl +iJw +iJw +iJw +iJw +iJw +iJw +iJw +iJw bjr bjr bjr -qrF +eZP cuc xkj xkj @@ -68279,8 +68189,8 @@ xkj cpg cpg cxW -hYe -uDK +pCz +hdo cxW iMn xkj @@ -68398,7 +68308,7 @@ acc age tSb agR -tYn +hcH agR aac aac @@ -68415,30 +68325,30 @@ bNW bNW bNW bNW -cFH -jkh -qBW -kMW +wDv +fEz +kSt +qbD cjn -jUr -dVY -dVY -dEG -sqg -tmT -lNj -voL +ked +rFW +rFW +maF +lAf +hVP +ncs +dga aKM -eEH -pOG +uVU +uIK aDu -wEX -vKT +vpw +cxb iau -qZk -oGt -qRL -xfz +qAf +dne +tPy +cyk cpg cpg xkj @@ -68447,20 +68357,20 @@ xkj aXp aXp aXp -lQf -ewS -kHi -kHi -qdq -cKf -lnu -lnu -niD -kHi -ewS -kHi -kHi -cXy +xOl +vBQ +whK +whK +wkf +eCv +mnP +mnP +bqB +whK +vBQ +whK +whK +jVL cuc cwq xkj @@ -68474,8 +68384,8 @@ xkj cpg cpg qbR -kEJ -pFV +koR +tie cxW cxW cxW @@ -68594,7 +68504,7 @@ acw age adN bkT -gNs +pfS bDm bHj bHj @@ -68610,25 +68520,25 @@ bNW bNW bNW vVK -cFH -cFH -cFH -cFH +wDv +wDv +wDv +wDv cjn cjn -kbV +nvV cjn cpU -xFd -xFd -xFd +cWN +cWN +cWN cpU aDu aDu aDu aDu -rEL -pBM +xIb +xwL cpU aMw aMw @@ -68669,13 +68579,13 @@ xkj cpg cxW cxW -hlN -hUa +hQR +mxR cxW lpk aLc hjC -muh +qlE cxW cpg xkj @@ -68788,8 +68698,8 @@ aUD aXb aac adq -lPl -viY +ohT +hoP lkB bHj bHj @@ -68810,9 +68720,9 @@ pPk pPk rok rPA -wds +uSA atY -pGY +qgs tvk pPk pPk @@ -68822,8 +68732,8 @@ bHj bHj cpg cpg -rxs -rxs +mox +mox wLv wLv wLv @@ -68835,9 +68745,9 @@ xkj xkj aXp bdj -jqk -ocJ -xMa +sZg +oox +nbX aXp aXp xkj @@ -68863,9 +68773,9 @@ kLM xkj xkj cxW -hiQ -oau -owf +bRH +iUS +fWm wab viA hsX @@ -68909,7 +68819,7 @@ dKj dKj dKj dKj -pJg +lUX jLb jLb jLb @@ -68983,14 +68893,14 @@ aUD aUD aac bDm -gNs -xAC +pfS +lYL bDm bHj bDm -pIh -xAC -gNs +vPz +lYL +pfS bon aic agT @@ -69005,9 +68915,9 @@ bon bon bon arK -rCI -vkX -ygO +cYJ +mJY +eCK awr bon bon @@ -69029,11 +68939,11 @@ xkj xkj xkj aXp -rWj -qMW -jFM -jFM -xMa +joi +rHZ +wch +wch +nbX aXp cwq xkj @@ -69058,9 +68968,9 @@ cFp cxK xkj cxW -hiQ -oau -oau +bRH +iUS +iUS uzb viA viA @@ -69084,8 +68994,8 @@ wXm wXm wXm rxp -jqM -wPk +jYP +kzy rxp uXg uXg @@ -69178,15 +69088,15 @@ aUD aUD aac bDm -gNs -gNs +pfS +pfS bDm bHj bHj -xAC -gNs -gNs -gNs +lYL +pfS +pfS +pfS bon bon bon @@ -69224,11 +69134,11 @@ cwq xkj xkj aXp -djO -qMW -qMW -dXX -qIy +gMU +rHZ +rHZ +dui +sJM aXp cpg cwq @@ -69254,13 +69164,13 @@ kLM xkj cxW cxW -qfJ -hiQ +fwe +bRH cxW dSA sgq cxW -muh +qlE cxW xjr xkj @@ -69279,14 +69189,14 @@ cyQ cyQ cyQ ivF -qYo -gNd +vyO +uYF rxp dKj dKj dKj dKj -pJg +lUX aiT dUl dUl @@ -69373,13 +69283,13 @@ aUD aUD aac bDm -xAC -xAC +lYL +lYL bDm bHj bDm -xAC -xAC +lYL +lYL bDm bHj bHj @@ -69419,7 +69329,7 @@ xkj aNF xkj aXq -lWT +uGP bbO aXp aXp @@ -69467,15 +69377,15 @@ xkj xkj cpg rxp -iTA -rXY -knQ +xGa +dhK +kQw gUp eaO eaO rxp -epa -bYs +qNv +gzY rxp dKj dKj @@ -69568,13 +69478,13 @@ aac aac aac bDm -xAC -gMj +lYL +toq bDm bHj bDm -xAC -xAC +lYL +lYL bDm bHj bHj @@ -69615,7 +69525,7 @@ xkj xkj aXp aXp -cmw +cFT aXp wkv cpg @@ -69662,9 +69572,9 @@ xkj xkj cpg rxp -cOm -oSd -mLc +upy +qUm +kJl eaO eaO eaO @@ -69763,13 +69673,13 @@ bNW bNW bNW bDm -fgJ -xAC +rkv +lYL bDm bHj bDm -wzm -xAC +utY +lYL bDm bHj vVK @@ -69791,7 +69701,7 @@ vVK vVK vVK vVK -wGg +dlP cbF cdp cdp @@ -69857,9 +69767,9 @@ xkj xkj cpg rxp -iTA -rBl -vlf +xGa +fgD +wIE sXt xtw gTB @@ -69877,7 +69787,7 @@ jLb jLb jLb jLb -pJg +lUX dKj dKj eMz @@ -69958,13 +69868,13 @@ bNW bNW bNW bDm -gMj -xAC +toq +lYL bDm bHj bDm -xAC -gMj +lYL +toq bDm bHj vVK @@ -69984,10 +69894,10 @@ bXG bZN vVK cbF -ida -qAD -wGg -ida +cDM +gUS +dlP +cDM cbF cbF cbF @@ -70000,7 +69910,7 @@ cjr aQt cpg cpg -hvG +oWI xkj xkj xkj @@ -70056,11 +69966,11 @@ rxp rxp rxp rxp -qIK -qIK +opq +opq rxp rxp -pzX +eOi rxp dKj dKj @@ -70153,13 +70063,13 @@ bnd bnd bnd bDm -xAC -xAC +lYL +lYL bDm bHj bDm -xAC -xAC +lYL +lYL bDm vVK vVK @@ -70179,13 +70089,13 @@ vVK vVK avg awt -rPk -wGg -kqH -rPk +ihh +dlP +xiG +ihh cbF -oKE -aHX +ggq +oDk cbF cdp aIU @@ -70198,7 +70108,7 @@ cjr aSB xkj cpg -hvG +oWI xkj xkj beE @@ -70343,18 +70253,18 @@ aad aad bnd bnd -jBg +wqs abC -onA +rdI bnd bDm -hxk -xAC +lxA +lYL bDm bDm bDm -xAC -gNs +lYL +pfS agT bon bon @@ -70374,13 +70284,13 @@ vVK aoT vVK cbF -sTE +gqx azs aBa -wGg +dlP aME -vYA -nvl +wJU +ubM cbF cdp cdp @@ -70537,19 +70447,19 @@ aad aad aad bnd -jBg -xAC -pJw -gMj -fTv +wqs +lYL +vDX +toq +iku abC -xAC -xAC -gMj -hUz -pmP -xAC -gNs +lYL +lYL +toq +vws +jTa +lYL +pfS bon bon bon @@ -70574,11 +70484,11 @@ azt cbE cbF cbF -ilF -ilF +sze +sze cbF cbF -mJb +yep aHZ cjr cjr @@ -70667,7 +70577,7 @@ dKj dKj dKj dKj -pJg +lUX jLb dKj jLb @@ -70733,17 +70643,17 @@ aad aad bnd abC -xAC +lYL abC -hxk +lxA abC bDm -nrs -xAC -xAC -xAC -xJB -gNs +qsT +lYL +lYL +lYL +ubV +pfS agi bon bon @@ -70767,12 +70677,12 @@ vVK axV caV aBb -vRs -gvP +kSi +lIb aCt -giT -nrd -fgp +czT +sKt +fDv aJJ aHZ cjr @@ -70826,13 +70736,13 @@ tPN tPN tPN tPN -lXP +woL vit vit vit vit vit -lXP +woL tPN tPN tPN @@ -70927,14 +70837,14 @@ aad aad aad bnd -fTv -gMj -xAC -xAC -beN -xAC -xAC -xAC +iku +toq +lYL +lYL +pZM +lYL +lYL +lYL bDm bDm bDm @@ -70962,13 +70872,13 @@ bZN axU caW caW -gPA +wvi aDx aEw -wGg -viZ +dlP +flz aIb -mJb +yep aHZ cjr cjr @@ -71123,13 +71033,13 @@ aad aad bnd bnd -eKT +iLL abC -plM +faC bnd bDm -gMj -xAC +toq +lYL bDm bHj bHj @@ -71157,10 +71067,10 @@ vVK cbF azu cbF -oTy +wgj aDy aEx -kHb +imY cbF cbF cdp @@ -71206,7 +71116,7 @@ cwD piY piY piY -lXP +woL tPN tPN tPN @@ -71323,8 +71233,8 @@ bnd bnd bnd bDm -xAC -hxk +lYL +lxA bDm bHj bHj @@ -71351,11 +71261,11 @@ vVK aoT vVK vVK -dKA +jJj aCt caW -usk -usk +hme +hme cbF cdp cdp @@ -71384,7 +71294,7 @@ bDH cwD cuM cuM -gae +pBG cuM cuM cwD @@ -71518,8 +71428,8 @@ bDm bDm bDm bDm -xAC -xAC +lYL +lYL bDm bHj bHj @@ -71617,10 +71527,10 @@ vit vit tPN tPN -lXP +woL vit vit -lXP +woL vit vit vit @@ -71709,12 +71619,12 @@ aad aad aad bDm -nwS -jty -xAC +kBo +ucL +lYL bDm -fgJ -xAC +rkv +lYL bDm bHj bHj @@ -71800,7 +71710,7 @@ tPN tPN tPN tPN -lXP +woL vit vit vit @@ -71904,12 +71814,12 @@ aad aad aad bDm -jty -xAC -xAC -uDP -xAC -gMj +ucL +lYL +lYL +iAL +lYL +toq bDm bHj bHj @@ -72099,12 +72009,12 @@ aad aad aad bDm -xAC -cqo -xAC -suZ -cqo -xAC +lYL +lVS +lYL +rni +lVS +lYL bDm bHj bHj @@ -72294,12 +72204,12 @@ aad aad aad bDm -lGX -gMj -nwS +kRg +toq +kBo bDm -xAC -xAC +lYL +lYL bDm bHj bHj @@ -72359,7 +72269,7 @@ cwD cwD cwD mmF -fBG +svF cwD cwD cuM @@ -72381,18 +72291,18 @@ sRR vit vit uvw -gYY -gYY -gYY -gYY -gYY -gYY -gYY -gYY -gYY -gYY -gYY -gYY +dYC +dYC +dYC +dYC +dYC +dYC +dYC +dYC +dYC +dYC +dYC +dYC iRk uvw uvw @@ -72421,14 +72331,14 @@ dKj dKj dKj dKj -pJg +lUX jLb jLb eMz euZ eMz jLb -pJg +lUX aad aad aad @@ -72490,11 +72400,11 @@ aad aad bDm bDm -xAC +lYL bDm bDm -gMj -xAC +toq +lYL bDm bHj bHj @@ -72527,7 +72437,7 @@ cdp cdp cdp ceQ -osN +nCM aJK aCv jUA @@ -72576,7 +72486,7 @@ tPN tPN vit uvw -gYY +dYC gih gih gih @@ -72587,7 +72497,7 @@ gih gih pqG gih -gYY +dYC vit vit uvw @@ -72601,7 +72511,7 @@ vit vit vit sRR -lXP +woL ekJ ekJ dKj @@ -72684,12 +72594,12 @@ aad aad aad bDm -giI -xAC -mtJ +vCI +lYL +jXd bDm -fgJ -xAC +rkv +lYL bDm bDm bDm @@ -72771,7 +72681,7 @@ tPN tPN vit vit -gYY +dYC gih khT khT @@ -72782,7 +72692,7 @@ khT khT khT gih -gYY +dYC vit vit uvw @@ -72879,15 +72789,15 @@ aad aad aad ake -tuR -xAC -xAC +xul +lYL +lYL bDm -xAC -gMj -xAC -gNs -fBo +lYL +toq +lYL +pfS +qXo bon bon bon @@ -72958,7 +72868,7 @@ bDH cwD cwD piY -top +oqk cuM cuM tPN @@ -72966,18 +72876,18 @@ tPN tPN vit vit -gYY +dYC xJH khT -wsK -uap -qqF -mOQ -xCT -pHr +ksp +kxh +pMP +rLG +pBS +qYE khT gih -gYY +dYC vit vit uvw @@ -73074,14 +72984,14 @@ aad aad aad bDm -wzm -xAC -xAC +utY +lYL +lYL bDm -xAC -xAC -gNs -vQy +lYL +lYL +pfS +tmd afo bon bon @@ -73161,18 +73071,18 @@ vit vit vit sRR -ksq +iOH oAQ khT -nzv -cLP -gYY -gYY -fbE -htr +mXD +rlv +dYC +dYC +wHC +cEo khT gih -gYY +dYC vit iRk vit @@ -73269,12 +73179,12 @@ aad aad aad bDm -nwS -xAC -gMj -xAC -xAC -xAC +kBo +lYL +toq +lYL +lYL +lYL bDm bDm bDm @@ -73356,18 +73266,18 @@ aKY vit vit vit -gYY +dYC gih -ecV -gYY -sjX +lxb +dYC +sSs khR -sjX +sSs gih -rVp +uWQ khT gih -gYY +dYC vit sRR vit @@ -73464,18 +73374,18 @@ aad aad aad bDm -jty -xAC -xAC -xAC -xAC -nwS +ucL +lYL +lYL +lYL +lYL +kBo bDm bHj bHj bHj bHj -nhe +qbI bon vVK bHj @@ -73499,7 +73409,7 @@ pNT pNT pNT pNT -osN +nCM jUA jUA aSF @@ -73551,18 +73461,18 @@ vit vit vit vit -gYY +dYC gih -hTT -gYY +yeL +dYC gih -sjX +sSs gih -sjX -gYY +sSs +dYC khT gih -gYY +dYC vit vit vit @@ -73741,29 +73651,29 @@ cwD piY piY cwD -gYY -gYY -gYY -gYY -gYY -gYY +dYC +dYC +dYC +dYC +dYC +dYC gih khT -ylY -sJp -nRT -jLn -gYY -gYY +fSQ +xws +bPT +vQG +dYC +dYC khT gih -gYY -vHe -gYY -gYY -gYY -gYY -gYY +dYC +jnC +dYC +dYC +dYC +dYC +dYC uvw vit vit @@ -73779,7 +73689,7 @@ wFG wFG wFG wFG -nza +xbD dKj dKj dKj @@ -73789,7 +73699,7 @@ eMz eMz eMz jLb -pJg +lUX aad aad aad @@ -73870,7 +73780,7 @@ bon aig vVK aob -nhe +qbI bHj vVK bon @@ -73895,7 +73805,7 @@ jUA jUA jUA jUA -osN +nCM ceQ ceQ ceQ @@ -73936,7 +73846,7 @@ cwD piY piY sEV -gYY +dYC gih gih gih @@ -73948,8 +73858,8 @@ eIT khT khT khT -vJI -hpR +dAk +cBD khT qXN qXN @@ -73958,7 +73868,7 @@ qXN qXN qXN fre -vHe +jnC dqo wFG wFG @@ -74131,7 +74041,7 @@ cwD cwD piY piY -gYY +dYC gih khT khT @@ -74140,20 +74050,20 @@ khT khT khT lhI -nRf +jFd sGJ -sjX +sSs gih -sjX -gYY -oso -oso -oso -oso -oso -tkg +sSs +dYC +ucE +ucE +ucE +ucE +ucE +dbY hfq -gYY +dYC wFG oDw wFG @@ -74252,7 +74162,7 @@ aad bHj bDm vVK -nhe +qbI vVK vVK bon @@ -74289,7 +74199,7 @@ ceQ ceQ ceQ ceQ -osN +nCM ceQ ceQ ceQ @@ -74326,29 +74236,29 @@ cwD cwD piY piY -gYY +dYC gih khT -mIv -mIv -pjb -rEG -rEG +yhB +yhB +uFx +cUh +cUh khT -tBB -sjX +kna +sSs gih -sjX +sSs gih -gYY -hOz -xOb -xOb -xOb -sbt -uST +dYC +kjd +lgK +lgK +lgK +xbv +hIk hfq -gYY +dYC wFG wFG ekJ @@ -74470,14 +74380,14 @@ aua jUA awu ceQ -osN +nCM jUA jUA jUA jUA jUA cei -osN +nCM ceQ ceQ ceQ @@ -74516,23 +74426,23 @@ sKg sKg sKg sKg -top +oqk piY cwD piY piY -gYY +dYC gih khT iCt -xBY +qff khR -sjX +sSs gih khT khT -vJI -hpR +dAk +cBD khT khT khT @@ -74541,9 +74451,9 @@ khT khT khT khT -uST +hIk hfq -gYY +dYC wFG ekJ ekJ @@ -74716,29 +74626,29 @@ daq daq aZO daq -gYY +dYC gih khT -sjX +sSs gih -pkC +qRU gih -sjX -kUg -xOb -gYY -gYY -rRU -gYY +sSs +yhO +lgK +dYC +dYC +uPM +dYC khT -gLB -veA -pka -tdj -pTr -uST +dsW +ahb +bAj +iYe +ykZ +hIk hfq -gYY +dYC wFG ekJ ekJ @@ -74748,7 +74658,7 @@ ekJ ekJ ekJ ekJ -nza +xbD wFG dqo dqo @@ -74847,7 +74757,7 @@ agT bon bon bon -nhe +qbI bDm bHj bHj @@ -74869,7 +74779,7 @@ cei cei ceQ ceQ -osN +nCM jUA jUA jUA @@ -74911,29 +74821,29 @@ daq daq aZO daq -gYY +dYC gih khT -vJI -hpR +dAk +cBD khT khT khT khT -wJD -gYY +kGD +dYC gih -vZu -gYY -qwX -gYY +lAS +dYC +gvH +dYC gih -sjX -qMM -pTr -uST +sSs +bFa +ykZ +hIk hfq -gYY +dYC ekJ ekJ ekJ @@ -75106,29 +75016,29 @@ sKg daq aZO aZO -gYY +dYC gih -rOM -xOb -xOb -rOM +qdq +lgK +lgK +qdq khT khT khT khT -qTE -sjX +fGg +sSs gih -gYY -gjt -gYY -sjX +dYC +eAW +dYC +sSs gih -qMM -pTr -iNz +bFa +ykZ +dKm hfq -gYY +dYC khT khT khT @@ -75230,7 +75140,7 @@ bon afq bon bon -nhe +qbI vVK bon vVK @@ -75249,7 +75159,7 @@ ceQ ceQ ceQ ceQ -osN +nCM jUA jUA jUA @@ -75301,32 +75211,32 @@ sKg sKg aZO aZO -gYY +dYC gih -sbt -xOb -xOb -xOb +xbv +lgK +lgK +lgK khT -xMz -xMz -hXS -tCq +wxS +wxS +qdW +dak gih -xBY -tCq +qff +dak khT -gYY +dYC pqG -sjX -jyN -pTr -iNz +sSs +ivf +ykZ +dKm hfq -gYY -eCe -xOb -blj +dYC +vhW +lgK +tMh khT ekJ ekJ @@ -75427,8 +75337,8 @@ bon bon vVK aYz -nqO -nqO +pxg +pxg aYz aYz aYz @@ -75496,29 +75406,29 @@ sKg sKg aZO aZO -gYY +dYC gih -xOb -xOb -xOb -xOb +lgK +lgK +lgK +lgK ifU -tIA -sPe -vxW -gYY -gYY -jQm -vio -ezd -gYY -jQm -gYY -gYY +pCI +glP +sQT +dYC +dYC +hKP +eyV +nWf +dYC +hKP +dYC +dYC khT khT fzA -gYY +dYC khT khT khT @@ -75621,15 +75531,15 @@ bon bon bon bon -wnC -eFZ -iDr -hnt -oNO -mnt +wHP +cfh +vzp +dCL +hVz +fSn uux -kiN -wZA +oUk +tbI uux bHj bHj @@ -75656,7 +75566,7 @@ jUA jUA cei jUA -osN +nCM jUA ceQ ceQ @@ -75691,32 +75601,32 @@ sKg sKg aZO aZO -gYY +dYC gih -xOb -vqw -sbt -xOb +lgK +lWR +xbv +lgK khT khT khT khT -vJI -hpR +dAk +cBD khT khT khT khT khT -gfu -rlR -wMo -xuf +fzc +iXA +vJt +khB gih -gYY -eCe -xOb -blj +dYC +vhW +lgK +tMh khT ekJ ekJ @@ -75816,15 +75726,15 @@ bon bon bon bon -wnC -tSz -uXl -gxt -uXl -oNO -qoU -icT -vPS +wHP +lka +edY +cvh +edY +hVz +xHd +pMg +vkn uux bHj bHj @@ -75886,29 +75796,29 @@ sKg sKg aZO aZO -gYY +dYC gih -xOb +lgK gih -xOb -xOb -xOb +lgK +lgK +lgK mBl rNO -rOM -sjX -sjX -rOM -xOb -ltW -xOb -xuf -oYN -dyq -laf -xuf +qdq +sSs +sSs +qdq +lgK +nRO +lgK +khB +peE +mKY +ksv +khB pqG -gYY +dYC khT khT khT @@ -75926,7 +75836,7 @@ dqo dqo dqo dqo -nza +xbD aad aad aad @@ -76011,22 +75921,22 @@ bon agT bon bon -wnC -kbj -jYf -iGT -dnM -mnt +wHP +tAa +pNU +lhj +nYN +fSn uux -vfK -nie +pme +jwZ uux bHj bHj uux -mmg -eiY -ktF +gIE +fCT +fXd uux cgE cgE @@ -76081,32 +75991,32 @@ aZO sKg aZO aZO -gYY +dYC gih -xOb +lgK gih gih -xOb -xOb -xOb -xOb -xOb -sjX -sjX -sbt -otI -miY -seq -xuf -hDn -kAi -rkV -xuf +lgK +lgK +lgK +lgK +lgK +sSs +sSs +xbv +nkM +ffV +eYv +khB +whx +vvx +nsM +khB gih -gYY -eCe -sbt -blj +dYC +vhW +xbv +tMh khT ekJ ekJ @@ -76207,11 +76117,11 @@ bon bon cay aYz -nqO +pxg aYz -lvh -uXl -utY +uKi +edY +hiF aYz ame uux @@ -76219,9 +76129,9 @@ aYz uux uux uux -jRb -wHX -ktF +ngB +naD +fXd uux cgE cgE @@ -76232,7 +76142,7 @@ chN cdx cdx chN -cLJ +lwd cgE cgE ceQ @@ -76276,29 +76186,29 @@ aZO aZO aZO daq -gYY +dYC gih -xOb -xOb -xOb -xOb -xOb -xOb -xOb -sbt -sjX -vZu -xOb -xOb -mmM -xOb +lgK +lgK +lgK +lgK +lgK +lgK +lgK +xbv +sSs +lAS +lgK +lgK +reu +lgK khT -xuf -xuf -xuf +khB +khB +khB khT jDr -gYY +dYC khT khT khT @@ -76396,7 +76306,7 @@ aad aad bHj bHj -tLm +jSn bon bon bon @@ -76404,19 +76314,19 @@ ahc ahG ahG uux -dkF -uXl -dkF -tsS -wHX -eCo -wHX -eCo -wHX -tsS -wHX -wHX -eXP +fnq +edY +fnq +hgx +naD +eUq +naD +eUq +naD +hgx +naD +naD +kct uux cgE cgE @@ -76471,7 +76381,7 @@ aZO lhH aZO daq -gYY +dYC duq gih pqG @@ -76479,13 +76389,13 @@ gih gih gih gih -xOb -xOb -sjX -sjX -xOb -xOb -xOb +lgK +lgK +sSs +sSs +lgK +lgK +lgK pqG sGJ gih @@ -76493,13 +76403,13 @@ gih gih sGJ gih -gYY +dYC ekJ ekJ ekJ ekJ ekJ -nza +xbD wFG dqo wFG @@ -76593,15 +76503,15 @@ uux uux uux aYz -bVH -waa +pVw +sSH aYz aYz -nqO +pxg aYz -lvh -uXl -pNQ +uKi +edY +iqx aYz uux uux @@ -76610,8 +76520,8 @@ uux uux uux uux -wHX -tjc +naD +xOB uux aly aly @@ -76666,29 +76576,29 @@ daq daq aZO daq -gYY -gYY -gYY -gYY -gYY -gYY -gYY +dYC +dYC +dYC +dYC +dYC +dYC +dYC gih -xOb -sjX -fXk -sjX -sjX -sjX -xOb +lgK +sSs +jrR +sSs +sSs +sSs +lgK gih -gYY -gYY -gYY -gYY -gYY -gYY -gYY +dYC +dYC +dYC +dYC +dYC +dYC +dYC ekJ ekJ ekJ @@ -76783,36 +76693,36 @@ aad aad aad uux -muQ -uIy -xLw -wnC -xvo -ush -ush -dbN -wnC -mLC -rgk -oNO -uXl -mnt +vtu +lEX +qBM +wHP +oCM +sPx +sPx +ccl +wHP +nJr +yaC +hVz +edY +fSn uux -lxb -xJG +gDw +jnr uux -pOL -wmO -pOL +ivD +cHI +ivD uux -fbk +kne uux uux aly aly aly aly -lFn +mcb chN cdx cdx @@ -76825,7 +76735,7 @@ cei cei cei jUA -osN +nCM jUA jUA ceQ @@ -76857,7 +76767,7 @@ sKg sKg sKg sKg -qPc +viv daq daq daq @@ -76867,17 +76777,17 @@ mLn mLn mLn fFy -gYY +dYC gih -xOb -pOp -xOb -wga -dZQ -sjX -xOb +lgK +bEP +lgK +oVg +lWe +sSs +lgK gih -gYY +dYC wFG wFG wFG @@ -76978,30 +76888,30 @@ aad aad aad uux -nmQ -jnk -jYf -wnC -oNO -ush -ush -oNO -wnC -lOU -lGF -uXl -uXl -oNO -qoU -dkF -dkF +pVt +nlg +pNU +wHP +hVz +sPx +sPx +hVz +wHP +rSu +rpJ +edY +edY +hVz +xHd +fnq +fnq uux -rgj -nKP -dkF -woA -nKP -nKP +vAo +wvE +fnq +wRB +wvE +wvE uux uux uux @@ -77062,17 +76972,17 @@ tgC mLn mLn mLn -gYY +dYC gih -xOb -sjX -xOb -xOb -fDY -sjX -xOb +lgK +sSs +lgK +lgK +vst +sSs +lgK gih -gYY +dYC dqo dqo dqo @@ -77173,33 +77083,33 @@ aad aad aad uux -xNo -oNO -hnt -wnC -iwt -ush -ush -srv -wnC -kbj -uOr -hnt -oNO -mnt +qJu +hVz +dCL +wHP +vMJ +sPx +sPx +tdu +wHP +tAa +vAV +dCL +hVz +fSn uux -tHh -ylA +vKf +mIO uux -alh -nKP -dkF +kch +wvE +fnq uux -iWd -nKP +gOb +wvE uux -ktF -szD +fXd +fEH uux aly ccz @@ -77257,17 +77167,17 @@ tgC tgC mLn mLn -gYY +dYC gih -sbt -sjX -xOb -xOb -fZt -nmG -xOb +xbv +sSs +lgK +lgK +oKD +slt +lgK gih -vHe +jnC dqo dqo dqo @@ -77369,33 +77279,33 @@ aYz aYz uux uux -nev +muU uux uux aYz -hPh -uix +mZs +pWQ aYz aYz uux uux aYz -sqt -mrc +kDG +gbm aYz apd uux aYz -tzE -nKP -nKP +fcY +wvE +wvE uux -nKP -nKP -woA -dkF -dkF -wnC +wvE +wvE +wRB +fnq +fnq +wHP vEp vEp chN @@ -77452,17 +77362,17 @@ lzb tgC tgC mLn -gYY +dYC gih -xOb -fXk -sjX -fXk -sjX -sjX -xOb +lgK +jrR +sSs +jrR +sSs +sSs +lgK gih -gYY +dYC dqo dqo dqo @@ -77557,40 +77467,40 @@ aad aad aad uux -etx -tlZ -etx +cXd +dmv +cXd aYz -hmE -nba -ozR -nKP -nKP -nKP -iVe -dkF -dkF -iVe -nKP -hZe -nKP -nKP -nKP -qZv -nKP -vid -utY -wKv -dkF -qZv -nKP +dwG +vFB +isy +wvE +wvE +wvE +oYC +fnq +fnq +oYC +wvE +mVv +wvE +wvE +wvE +sNK +wvE +ujh +hiF +vJW +fnq +sNK +wvE uux uux uux uux -dkF -jhB -wnC +fnq +qXb +wHP axX vEp chN @@ -77647,17 +77557,17 @@ vuJ vuJ tgC tgC -gYY +dYC gih -xOb -xOb -xOb -xOb -xOb -xOb -sbt +lgK +lgK +lgK +lgK +lgK +lgK +xbv gih -gYY +dYC wFG wFG wFG @@ -77752,39 +77662,39 @@ aad aad aad uux -dkF -jhB -dkF -woA -nKP -nKP -dkF -dkF -jhB -wPH -iVe -dkF -dkF -iVe -wPH -wPH -wPH -wPH -wPH -wPH -dkF -dkF -dkF -nKP -nKP -nKP -hZe +fnq +qXb +fnq +wRB +wvE +wvE +fnq +fnq +qXb +gro +oYC +fnq +fnq +oYC +gro +gro +gro +gro +gro +gro +fnq +fnq +fnq +wvE +wvE +wvE +mVv uux -oNO -mvZ -oNO -oNO -nmQ +hVz +inz +hVz +hVz +pVt uux aBf ccK @@ -77842,7 +77752,7 @@ vuJ pPi tgC tgC -gYY +dYC gih gih gih @@ -77852,9 +77762,9 @@ gih gih gih gih -gYY +dYC ekJ -nza +xbD ekJ ekJ wFG @@ -77947,40 +77857,40 @@ aad aad aad uux -iSG -dEk -iSG +fPU +ebk +fPU aYz -nKP -dkF -oNO -jSp -jSp -kCS -kzg -kCS -kCS -iVe -dkF -dkF -kCS -kCS -kCS -kCS -jSp -jSp -oNO -dkF -meL -nKP -nKP -woA -oNO -dcM -uXl -eYZ -xLw -wnC +wvE +fnq +hVz +laU +laU +dgR +vYE +dgR +dgR +oYC +fnq +fnq +dgR +dgR +dgR +dgR +laU +laU +hVz +fnq +qhY +wvE +wvE +wRB +hVz +sUH +edY +qcz +qBM +wHP ccz vEp chN @@ -77991,7 +77901,7 @@ chN cgE cgE ceQ -osN +nCM jUA jUA cei @@ -78024,30 +77934,30 @@ sKg sKg sKg daq -bpb +oAr daq daq sKg sKg sKg sKg -cwW +rsB tgC tgC vuJ vuJ tgC -gYY -gYY -gYY -gYY -gYY -gYY -gYY -gYY -gYY -gYY -gYY +dYC +dYC +dYC +dYC +dYC +dYC +dYC +dYC +dYC +dYC +dYC ekJ ekJ ekJ @@ -78146,36 +78056,36 @@ aYz aYz aYz aYz -hZe -jhB -iHU +mVv +qXb +mIy aCP aBy azU auz asp aEC -iVe -iVe -kxL +oYC +oYC +cUl azU aBy aBy asp aCP aDa -oNO -jhB -nKP -nKP -hDY +hVz +qXb +wvE +wvE +fTd uux -oNO -hnt -jZf -sex -jYf -wnC +hVz +dCL +nTd +jFj +pNU +wHP vEp vEp chN @@ -78337,39 +78247,39 @@ aad aad aad aYz -gFt -fnV -tPa -iXK -nKP -dkF -iHU +wVJ +sGS +upM +nSv +wvE +fnq +mIy auz bRl bRl bRl bRl agn -iVe -iVe -kxL +oYC +oYC +cUl bRl bRl bRl bRl bRl aDh -oNO -dkF -nKP -nKP -gnt +hVz +fnq +wvE +wvE +niN uux -nqO -nqO +pxg +pxg uux -nqO -nqO +pxg +pxg uux aBf vEp @@ -78532,21 +78442,21 @@ aad aad aad aYz -sFb -oNO -dkF -nKP -nKP -ush -iHU +pyR +hVz +fnq +wvE +wvE +sPx +mIy auz bRl bRl bRl bBO ago -cUJ -cUJ +xTP +xTP aim ajb ajF @@ -78554,15 +78464,15 @@ akh bRl bRl aEN -rmi -ush -nKP -nKP -fVa -wnC -wlF -jwf -wnC +xmj +sPx +wvE +wvE +spI +wHP +omq +rik +wHP awx axX vEp @@ -78571,7 +78481,7 @@ vEp cdx cdx chN -cLJ +lwd cgE cgE cgE @@ -78588,7 +78498,7 @@ daq daq daq daq -tFx +jig sKg sKg sKg @@ -78643,7 +78553,7 @@ wFG wFG ekJ ekJ -nza +xbD oDw lTW fKT @@ -78727,21 +78637,21 @@ aad aad aad aYz -vkt -oNO -dkF -qZv -nKP -ush -iHU +lqJ +hVz +fnq +sNK +wvE +sPx +mIy auz bRl aeW bRl aeY -hbx -pya -pya +yhe +vHj +vHj ain aim ajb @@ -78749,14 +78659,14 @@ ajF akh aeW aEC -rmi -ush -nKP -nKP -xem +xmj +sPx +wvE +wvE +kgw uux -wlS -lyW +iSc +hEZ uux awy vEp @@ -78922,37 +78832,37 @@ aad aad aad aYz -qrb -fnV -vgK -kPB -nKP -ush -iHU +gPU +sGS +fHR +pIU +wvE +sPx +mIy azU bRl bRl bRl aeY -rge -kds +qtC +sEE ahH -kds +sEE ain ago aki akO bRl aDR -rmi -ush -nKP -nKP -nKP -woA -wPH -wPH -waQ +xmj +sPx +wvE +wvE +wvE +wRB +gro +gro +sST awz cdx cdx @@ -79120,34 +79030,34 @@ aYz aYz aYz aYz -nqO -nqO +pxg +pxg aYz -svr +dnP auz bRl bRl bBO afw -szY -dBJ +rVj +lrE ahI aio -qbw -kIj +eiW +ufx bRj akO bRl aEN -oNO -ush -mcJ -qZv -oWl +hVz +sPx +iFG +sNK +odN uux -wPH -wPH -kdO +gro +gro +rqI awz cdx cdx @@ -79313,36 +79223,36 @@ aad aad aad aYz -jFg -xez -fFa -dFG -wnC -iHU +lfp +hhL +tzl +nbP +wHP +mIy aCP bRl bRl aeY -ngi -slV -qbw -pya -kds -kds -mwv +uMb +dPE +eiW +vHj +sEE +sEE +mHK bRj akP bRl aEN -oNO -ush -nKP -nKP -nKP -woA -wPH -wPH -dbT +hVz +sPx +wvE +wvE +wvE +wRB +gro +gro +gbh eOz axZ chN @@ -79508,35 +79418,35 @@ aad aad aad aYz -ceA -nKP -iEm -etK -wnC -vTC +ezx +wvE +fxR +rXQ +wHP +vXE aBy bRl bBO afw -hUs -slV +erO +dPE ahj -erw -kds -kds -pya +ePB +sEE +sEE +vHj akj -dvw -lns -lns -dkF -ush -nKP -nKP -sWn +pjp +neZ +neZ +fnq +sPx +wvE +wvE +pyn uux -wlS -lyW +iSc +hEZ uux awB aya @@ -79703,36 +79613,36 @@ aad aad aad aYz -jyG -qZv +kHk +sNK aYz -nqO +pxg aYz -svr +dnP asp bRl aeY -ngi -slV +uMb +dPE bKK ahk -kds -qBa -qbw -pya +sEE +tlY +eiW +vHj akj -iVe -iVe -iVe -dkF -ush -nKP -nKP -mwG -wnC -mtY -xlr -wnC +oYC +oYC +oYC +fnq +sPx +wvE +wvE +qCe +wHP +srN +dro +wHP awC ayc vEp @@ -79796,7 +79706,7 @@ vuJ tgC tgC tgC -cwW +rsB tgC tgC tgC @@ -79898,38 +79808,38 @@ aad aad aad aYz -mqH -nKP +sKh +wvE aYz -eSc -eaR -iHU +aUa +eec +mIy aBy bRl aeY -ngi -slV -dBJ +uMb +dPE +lrE ahj ahL aip -kds -pya +sEE +vHj akj -iVe -iVe -iVe +oYC +oYC +oYC ane -ush -nKP -qZv -mwG +sPx +wvE +sNK +qCe uux -nqO -nqO +pxg +pxg uux -nqO -nqO +pxg +pxg uux cbN vEp @@ -79978,7 +79888,7 @@ mLn mLn mLn mLn -cwW +rsB rRl kyr tgC @@ -80093,39 +80003,39 @@ aad aad aad aYz -uhN -jyG -woA -nKP -eaR -vTC +vie +kHk +wRB +wvE +eec +vXE asp bRl aeZ afy -hUs -slV -kds -erw -kds -kds -pya +erO +dPE +sEE +ePB +sEE +sEE +vHj akj -kzg -kzg -kzg -dkF -ush -oOt -nKP -mwG +vYE +vYE +vYE +fnq +sPx +sGw +wvE +qCe uux -dCj -hnt -qVa -vNe -mkg -wnC +wGl +dCL +wVS +cPv +qVv +wHP axX vEp chN @@ -80143,7 +80053,7 @@ cgE cgE cpW cnu -gFL +tHR cnu aVQ aVQ @@ -80291,36 +80201,36 @@ aYz aYz aYz aYz -phr -eaR -iHU +uvr +eec +mIy azU bRl bRl aeY -ngi -slV -kds -bxK -kds -kds -mwv +uMb +dPE +sEE +xSw +sEE +sEE +mHK bRj akS bRl aEC -oNO -ush -nKP -nKP -nKP -woA -oNO -uXl -jnk -uXl -rti -wnC +hVz +sPx +wvE +wvE +wvE +wRB +hVz +edY +nlg +edY +wLO +wHP vEp vEp chN @@ -80385,7 +80295,7 @@ vuJ tgC tgC tgC -cwW +rsB tgC tgC tgC @@ -80484,37 +80394,37 @@ aad aad aja aYz -xeG -kll -nKP -eaR -vTC +vHh +eGo +wvE +eec +vXE auz bRl bRl aeZ afy -tGg +abu ahl ahN aiq -dBJ -qbw +lrE +eiW bRj bRl akO aEC -oNO -ush -nKP -dEd -kIi +hVz +sPx +wvE +nFm +lMR uux -oNO -oNO -emu -oNO -oNO +hVz +hVz +ibT +hVz +hVz uux aBf vEp @@ -80591,7 +80501,7 @@ mLn mLn mLn mLn -cwW +rsB tgC tgC tgC @@ -80679,45 +80589,45 @@ aad aad aad aYz -xeG -oUK -qZv -eaR -iHU +vHh +uFC +sNK +eec +mIy asp bRl bRl bRl aeY -rge -qBa -qBa -lOn +qtC +tlY +tlY +kip ais agv akk akT bRl aEN -oNO -ush -oWl +hVz +sPx +odN uux uux arQ uux uux uux -lvh -jhB -wnC +uKi +qXb +wHP awx ccK chN cdx cdx cdx -cLJ +lwd cgE cgE cgE @@ -80767,7 +80677,7 @@ mLn mLn mLn mLn -cwW +rsB tgC tgC vuJ @@ -80874,19 +80784,19 @@ aad aad aad aYz -xeG -oUK -nKP -eaR -iHU +vHh +uFC +wvE +eec +mIy aBy bRl bRl bRl aeY -vAo -pya -pya +vxm +vHj +vHj ais bPo bQi @@ -80894,18 +80804,18 @@ bQj akm bRl aEC -oNO -ush -nKP -woA -nKP -nKP -nKP -nKP -woA -dkF -dkF -wnC +hVz +sPx +wvE +wRB +wvE +wvE +wvE +wvE +wRB +fnq +fnq +wHP vEp vEp chN @@ -80937,7 +80847,7 @@ aVQ cnu cnu cnu -gFL +tHR cpW cpW cpW @@ -80989,7 +80899,7 @@ vuJ vuJ tgC wFG -nza +xbD aad aad aad @@ -81069,19 +80979,19 @@ aad aad aad aYz -xeG -kll -nKP -eaR -iHU +vHh +eGo +wvE +eec +mIy aCP bRl aeW bRl aeZ agv -cUJ -cUJ +xTP +xTP bPo bQi bQj @@ -81089,17 +80999,17 @@ akm bRl bRl aEN -oNO -ush -oWl +hVz +sPx +odN uux -nKP -qZv -nKP -nKP +wvE +sNK +wvE +wvE uux -ktF -wHX +fXd +naD uux aly axX @@ -81151,7 +81061,7 @@ tgC kyr tgC tgC -cwW +rsB mLn mLn mLn @@ -81266,35 +81176,35 @@ aad aYz aYz aYz -lRS -dkF -iHU +knY +fnq +mIy auz bRl bRl bRl bRl bRl -bLw -iVe -kxL +oyg +oYC +cUl bRl bRl bRl aeW bRl aEC -oNO -jhB -nKP +hVz +qXb +wvE uux -roc -roc -roc -roc +ecM +ecM +ecM +ecM uux uux -vrr +foQ uux aly aly @@ -81461,27 +81371,27 @@ uux uux uux uux -piw -mDS -iHU +mmC +qOP +mIy asp asp asp asp asD auz -bLw -iVe -kxL +oyg +oYC +cUl aBy aBy asp asp aBy aEN -oNO -dkF -nKP +hVz +fnq +wvE uux uux uux @@ -81489,7 +81399,7 @@ uux uux uux uux -wHX +naD uux aly aly @@ -81514,7 +81424,7 @@ aVQ aVQ aVT aXu -gFL +tHR aVQ aVS aXt @@ -81531,7 +81441,7 @@ aVQ aVQ aVQ aVR -gFL +tHR cnu cnu cnu @@ -81653,38 +81563,38 @@ aad aad aad uux -ezF -icT -eUh -nKP -dkF -emu -dIl -dIl -cFl -cFl -cFl -cFl -dkF -dkF -dkF -cFl -cFl -cFl -cFl -dIl -dIl -oNO -dkF -nKP -hZH +eBP +pMg +soY +wvE +fnq +ibT +wEN +wEN +xGP +xGP +xGP +xGP +fnq +fnq +fnq +xGP +xGP +xGP +xGP +wEN +wEN +hVz +fnq +wvE +hyj uux aad aad aad aad uux -wHX +naD uux uux uux @@ -81848,42 +81758,42 @@ aad aad aad uux -gcR -rlW +fHY +miI uux -pJo -nKP -dkF -dkF -jhB -oKs -wPH -wPH -wPH -wPH -nKP -iOh -wPH -wPH -sKj -wPH -dkF -jhB -dkF -nKP -nKP -osv +syI +wvE +fnq +fnq +qXb +efm +gro +gro +gro +gro +wvE +jJC +gro +gro +qLh +gro +fnq +qXb +fnq +wvE +wvE +qPw uux uux uux arQ uux uux -wHX -wHX -wHX -wHX -qoU +naD +naD +naD +naD +xHd chN cdx cdx @@ -82046,39 +81956,39 @@ uux uux uux uux -eop -nKP -jWL -ujm -nKP -ujm -nKP -nKP -rLJ -ujm -nKP -ujm -nKP -rLJ -nKP -uvj -nKP -nKP -nKP -nKP -nKP -nKP -qoU -knZ -wHX -wHX -wHX -tRj -wHX -wHX -wHX -wHX -qoU +aHd +wvE +ojm +uHz +wvE +uHz +wvE +wvE +tIU +uHz +wvE +uHz +wvE +tIU +wvE +tyc +wvE +wvE +wvE +wvE +wvE +wvE +xHd +iTy +naD +naD +naD +vNi +naD +naD +naD +naD +xHd chN cdx cdx @@ -82244,31 +82154,31 @@ uux aYz aYz uux -aBD -taa -aBD -nKP -nKP -nKP -tLD -aBD -apU +nID +bIO +nID +wvE +wvE +wvE +dAG +nID +pVE uux -nqO -nqO +pxg +pxg uux uux -ufy -ufy -ufy +fZZ +fZZ +fZZ uux uux uux uux -wHX -tRj -wHX -eFW +naD +vNi +naD +epq uux uux uux @@ -82438,19 +82348,19 @@ aad aad aad uux -qSl -icT -icT -ouQ -icT -kto -rTN -icT -icT -eEk +qAl +pMg +pMg +sxG +pMg +xQt +dSG +pMg +pMg +fsU uux -ero -jov +sep +mDK uux uux uux @@ -82460,10 +82370,10 @@ uux aly aly uux -wHX -knZ -wHX -tOQ +naD +iTy +naD +dYx uux aad aad @@ -82504,7 +82414,7 @@ cnu cnu cnu cnu -gFL +tHR aVQ aVQ aVQ @@ -82633,19 +82543,19 @@ aad aad aad uux -gXi -icT -tdO -kto -icT -icT -icT -icT -kto -icT -dHV -jkO -jkO +fnC +pMg +vAi +xQt +pMg +pMg +pMg +pMg +xQt +pMg +qGR +bHa +bHa uux aly aly @@ -82655,7 +82565,7 @@ aly aly aly uux -rFg +evK uux uux uux @@ -82673,7 +82583,7 @@ cdx chN chN chN -cLJ +lwd cgE cgE cpW @@ -82730,7 +82640,7 @@ rRl tgC tgC tgC -cwW +rsB tgC tgC aad @@ -82828,21 +82738,21 @@ aad aad aad uux -iIE -icT -icT -icT -uVa -cDN -kxp -icT -icT -icT -icT -icT -jyG -qoU -tRj +vOg +pMg +pMg +pMg +ebI +cNw +tAB +pMg +pMg +pMg +pMg +pMg +kHk +xHd +vNi vEp vEp apP @@ -82850,7 +82760,7 @@ vEp vEp vEp vEp -tRj +vNi aad aad aad @@ -82915,7 +82825,7 @@ tgC tgC tNK tgC -cwW +rsB aad aad aad @@ -83023,19 +82933,19 @@ aad aad aad uux -xzO -jyG -jyG -jov +huo +kHk +kHk +mDK uux uux uux -wSi -wSi -jyG -icT -icT -jyG +rGB +rGB +kHk +pMg +pMg +kHk uux aad vEp @@ -83072,7 +82982,7 @@ cpW cpW cpW cpW -gFL +tHR aVQ aVQ aVR @@ -83228,9 +83138,9 @@ uux uux uux uux -ngM -cBS -ngM +rqi +gFk +rqi uux aad aad @@ -83278,7 +83188,7 @@ cnu cnu beH cnu -gFL +tHR aad aad aad @@ -83846,7 +83756,7 @@ aad aad aad aad -gFL +tHR bAa cnu cnu diff --git a/maps/map_files/chapaev/chapaev.dmm b/maps/map_files/chapaev/chapaev.dmm index 7b7dd3a6ca..8b30336d1f 100644 --- a/maps/map_files/chapaev/chapaev.dmm +++ b/maps/map_files/chapaev/chapaev.dmm @@ -1,88 +1,92 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ap" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/large_shrapnel/at_rocket_dud{ - drop_sensitivity = 0; - impact_sensitivity = 1; - pixel_x = -6; - pixel_y = 13 - }, -/obj/item/attachable/bayonet/upp{ - pixel_x = -9; - pixel_y = -1 - }, -/obj/item/prop/magazine/book{ - desc = "A booklet provided to anyone ranging from conscripts to normal citizenry. The first page is stamped with the Party's insignia and reminds you that the Party has your best interest in heart; the following pages immensely simplify the Party's doctrine, grossly propagandizes Socialism, and greatly vilifies the United Americas."; - name = "UPP Party Doctrine Booklet"; - pixel_x = 13 - }, +"ao" = ( +/obj/structure/surface/rack, +/obj/item/device/motiondetector, +/obj/item/ammo_magazine/flamer_tank, +/obj/item/weapon/gun/flamer/underextinguisher, /turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"at" = ( -/obj/structure/bed/chair/comfy{ +/area/golden_arrow/squad_one) +"au" = ( +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"aB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"ax" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad/upp, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"aL" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, /turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"aK" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/light{ +/area/golden_arrow/platoon_commander_rooms) +"aN" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"aR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) -"be" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - dir = 4; - icon_state = "p_stair_sn_full_cap"; - layer = 2.5 +"aO" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Platoon Medic Office"; + req_one_access = null; + req_one_access_txt = "231" }, -/obj/structure/platform/strata/metal{ +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/medical) +"aQ" = ( +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"aR" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad/upp, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"bb" = ( +/obj/structure/bed/chair{ dir = 8 }, -/obj/structure/machinery/light{ - dir = 4 +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"bm" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"bh" = ( -/obj/structure/closet/secure_closet/surgical{ - pixel_x = -30 +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"bB" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera"; + network = list("Chapaev") }, -/obj/structure/closet/fireaxecabinet{ - pixel_y = 29 +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"bD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Platoon Medic Office"; + req_one_access = null; + req_one_access_txt = "231" }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/medical) +"bE" = ( +/obj/structure/closet/crate/ammo/alt, +/obj/item/ammo_magazine/sniper/svd/pve, +/obj/item/ammo_magazine/sniper/svd/pve, +/obj/item/ammo_magazine/sniper/svd/pve, +/obj/item/ammo_magazine/sniper/svd/pve, +/obj/item/ammo_magazine/sniper/svd/pve, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/synthcloset) -"bk" = ( -/obj/effect/decal/cleanable/blood/oil, +/area/golden_arrow/platoon_sergeant) +"bF" = ( +/obj/effect/landmark/start/marine/leader/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) -"bx" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/toy/deck{ - pixel_x = 8; - pixel_y = 11 - }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = 10; - pixel_y = 6 - }, -/obj/item/toy/handcard/aceofspades, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) +/area/golden_arrow/cryo_cells) "bH" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ dir = 4; @@ -90,89 +94,67 @@ }, /turf/open/space/basic, /area/golden_arrow/hangar) +"bM" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/lightreplacer, +/obj/item/device/radio, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) "bN" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/briefing) -"bP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"bO" = ( +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101; + unacidable = 1; + unslashable = 1 }, /turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) "bQ" = ( -/obj/structure/machinery/body_scanconsole{ - dir = 1; - pixel_y = 6 - }, -/turf/open/floor/strata/cyan1/east, -/area/golden_arrow/medical) -"bT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/bottle/vodka{ - pixel_x = -6; - pixel_y = 13 +/obj/structure/bed/chair/comfy/alpha{ + dir = 4 }, -/obj/item/reagent_container/food/drinks/flask/canteen, -/obj/item/reagent_container/food/drinks/flask/canteen{ - pixel_x = -6 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"bS" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Cleaning Supplies"; + req_one_access = null }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) +/turf/open/floor/strata/floor2, +/area/golden_arrow/briefing) "bW" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap{ - faction = "UPP" +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Platoon Corpsman" }, +/obj/item/clothing/shoes/marine/upp, +/obj/item/device/radio/headset/distress/UPP, +/obj/item/clothing/under/marine/veteran/UPP/medic, +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"bX" = ( +/obj/structure/machinery/power/apc/almayer/west, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) +/area/golden_arrow/supply) +"bZ" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/dorms) "cc" = ( /obj/structure/machinery/telecomms/relay/preset/tower, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"ch" = ( -/obj/item/stool, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/cryo_cells) -"co" = ( -/obj/structure/closet/crate/construction, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/obj/item/stack/sandbags_empty/half, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) -"cr" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - name = "ship-grade camera"; - network = list("Chapaev") - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"cx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"cC" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp/on{ - pixel_y = 13 - }, -/obj/item/reagent_container/food/drinks/bottle/beer/craft/tazhushka{ - pixel_x = -9; - pixel_y = 2 - }, -/obj/item/trash/semki, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"cG" = ( -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) "cJ" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/synthcloset) @@ -186,82 +168,81 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/briefing) +"cM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"cO" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/synthcloset) "cR" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/cryo_cells) +"cS" = ( +/obj/structure/ladder{ + height = 1; + id = "eng1" + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) "cT" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/canteen) "cX" = ( -/obj/structure/machinery/floodlight/landing/floor, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera"; - network = list("Chapaev") - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) -"de" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/multi_tiles/west, +/obj/structure/machinery/light/small, +/turf/open/floor/strata/floor2, /area/golden_arrow/briefing) -"dh" = ( -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"dq" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"da" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/supply) -"dr" = ( -/obj/structure/bed/chair/comfy, +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"dh" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/canteen) -"dG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/effect/landmark/start/marine/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join/upp, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"dJ" = ( -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101; - unacidable = 1; - unslashable = 1 +"dl" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + id = "Delta_1"; + name = "\improper Bathroom" }, -/obj/structure/largecrate, -/obj/item/storage/fancy/cigar{ - pixel_y = 8 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/dorms) +"dq" = ( +/obj/structure/machinery/door_control{ + id = "chapaev_engi"; + pixel_y = -23 }, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/supply) -"dP" = ( -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/upp, +/area/golden_arrow/engineering) +"dw" = ( +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"dR" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - name = "ship-grade camera"; - network = list("Chapaev") +/area/golden_arrow/hangar) +"dP" = ( +/obj/structure/closet/secure_closet{ + name = "squad sergeant locker"; + req_access_txt = "244;237" }, -/obj/structure/machinery/cm_vending/clothing/medic/upp, -/obj/item/clothing/head/uppcap{ - pixel_x = 8; - pixel_y = 11 +/obj/item/clothing/accessory/armband, +/obj/item/device/whistle, +/obj/item/device/binoculars/range/designator, +/obj/item/weapon/gun/rifle/type71/flamer, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"dQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper/crumpled/bloody{ + pixel_y = 6 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/medical) +/obj/item/attachable/bayonet/upp, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) "dT" = ( /obj/structure/machinery/power/terminal{ dir = 4 @@ -279,74 +260,68 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/engineering) -"ec" = ( -/obj/structure/largecrate{ - pixel_x = 6 - }, -/obj/structure/largecrate{ - layer = 3.1; +"ef" = ( +/obj/structure/machinery/computer/station_alert{ + dir = 8; pixel_x = 15; - pixel_y = 18 + pixel_y = 2 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/synthcloset) "ei" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/squad_one) -"eq" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +"ep" = ( +/obj/structure/machinery/cm_vending/clothing/synth/snowflake{ + desc = "A vendor with a large snowflake on it. Provided by Ministry of Fashion."; + name = "\improper UPP Synthetic Conformity Unit" }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/synthcloset) +"ev" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 }, /turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"ex" = ( +/obj/structure/machinery/cryopod{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"et" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"ey" = ( +/obj/structure/toilet{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) -"eF" = ( -/obj/item/tool/mop{ - pixel_x = 17; - pixel_y = -2 - }, -/obj/item/paper{ - icon_state = "paper_words"; - info = "you fucktards should clean your boots because lieutenant kotov made me scrub the deck clean with a toothbrush when i fucked up (wasnt my fault too) and BOY was it dirty. fuck you all though. know my struggles."; - name = "scribbled note"; - pixel_y = 22 +/obj/structure/machinery/light/small, +/obj/item/prop/magazine/book{ + desc = "A booklet provided to anyone ranging from conscripts to normal citizenry. The first page is stamped with the Party's insignia and reminds you that the Party has your best interest in heart; the following pages immensely simplify the Party's doctrine, grossly propagandizes Socialism, and greatly vilifies the United Americas."; + name = "UPP Party Doctrine Booklet"; + pixel_x = 11; + pixel_y = 6 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/briefing) -"eQ" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/dorms) +"eJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ammo_magazine/handful/shotgun/heavy/flechette{ + current_rounds = 1; + pixel_x = 7; + pixel_y = 6 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"eU" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food{ - desc = "USCM Food Vendor, containing standard military Prepared Meals. It was gifted to Chapaev by Marines of 1st Platoon, Sun Riders as a sign of good will. They did not complain receiving a crate of vodka in return." +/obj/item/ammo_magazine/handful/shotgun/heavy{ + current_rounds = 1; + pixel_y = 5 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"eV" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Dorms"; - req_one_access = null +/obj/item/ammo_magazine/handful/shotgun/heavy/beanbag{ + current_rounds = 1; + pixel_x = -8; + pixel_y = 5 }, /turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"fb" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/megaphone, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) +/area/golden_arrow/squad_two) "fc" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -354,31 +329,15 @@ }, /turf/open/floor/plating, /area/golden_arrow/platoon_sergeant) -"fd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/light/small, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) "fh" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/briefing) "fk" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera"; - network = list("Chapaev") +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"fo" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/roller, -/obj/item/roller, -/obj/item/roller, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) "fq" = ( /obj/effect/landmark/observer_start, /obj/effect/decal/strata_decals/catwalk/prison, @@ -387,19 +346,24 @@ }, /turf/open/floor/plating, /area/golden_arrow/briefing) -"fw" = ( -/obj/structure/barricade/handrail/strata, +"fv" = ( +/obj/structure/machinery/conveyor{ + dir = 6 + }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/canteen) +/area/golden_arrow/supply) "fx" = ( -/obj/structure/machinery/floodlight/landing/floor, /obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; name = "ship-grade camera"; network = list("Chapaev") }, +/obj/structure/machinery/cm_vending/clothing/medic/upp, +/obj/item/clothing/head/uppcap{ + pixel_x = 8; + pixel_y = 11 + }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) +/area/golden_arrow/medical) "fA" = ( /obj/structure/machinery/power/terminal{ dir = 4 @@ -408,61 +372,31 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/engineering) -"fL" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera"; - network = list("Chapaev") - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"fN" = ( -/obj/structure/machinery/medical_pod/sleeper{ - dir = 8; - pixel_y = 6 - }, -/turf/open/floor/strata/cyan1/east, -/area/golden_arrow/medical) -"fT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin, -/obj/item/tool/pen{ - pixel_x = 12 - }, -/obj/item/tool/hand_labeler{ - pixel_x = -8; - pixel_y = 12 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"fU" = ( -/obj/structure/closet/secure_closet/engineering_electrical, +"fF" = ( +/obj/structure/machinery/cryopod, /obj/structure/machinery/light{ - dir = 4 + dir = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) -"fW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"fK" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Platoon Sergeant's Bunk"; + req_one_access = null; + req_one_access_txt = "240" }, -/obj/effect/landmark/start/marine/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 4 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"fY" = ( +/area/golden_arrow/platoon_sergeant) +"fV" = ( /obj/structure/machinery/light{ - dir = 8 + dir = 1 }, +/obj/structure/gun_rack/type71/unloaded, /turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) +/area/golden_arrow/squad_one) "ga" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -476,196 +410,181 @@ }, /turf/open/floor/plating, /area/golden_arrow/cryo_cells) -"gr" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/upp, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = -4; - pixel_y = 7 - }, -/obj/item/clothing/head/uppcap/civi{ - pixel_x = 8; - pixel_y = 8 - }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"gv" = ( -/obj/structure/platform/strata/metal{ - dir = 1; - pixel_y = 10 +"gb" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) -"gy" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"gd" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/prop/almayer/CICmap{ + faction = "UPP" }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/platoon_sergeant) -"gB" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"gG" = ( -/obj/structure/machinery/disposal, +"gf" = ( +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"go" = ( +/obj/structure/closet/emcloset, /turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/prep_hallway) -"gI" = ( -/obj/effect/decal/cleanable/blood/oil, +"gp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 10 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) -"gM" = ( +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"gs" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/strata/floor2, +/area/golden_arrow/briefing) +"gB" = ( /obj/structure/pipes/vents/pump{ - dir = 8 + dir = 4 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"gO" = ( -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101; - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) -"hb" = ( -/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 = "W"; - pixel_x = -1 +/area/golden_arrow/squad_one) +"gG" = ( +/obj/structure/machinery/disposal{ + density = 0; + layer = 3.2; + pixel_y = 16 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"gH" = ( +/obj/structure/machinery/power/apc/almayer/north, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"gQ" = ( +/obj/structure/largecrate/random/barrel/blue{ + pixel_x = -9 }, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Squad Sergeant" +/obj/item/reagent_container/food/drinks/bottle/beer/craft/tazhushka{ + pixel_x = -11; + pixel_y = 20 }, -/obj/item/clothing/shoes/marine/upp, -/obj/item/clothing/under/marine/veteran/UPP, -/obj/item/device/radio/headset/distress/UPP, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"hc" = ( +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"gW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"gY" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; name = "ship-grade camera"; network = list("Chapaev") }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 10 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_commander_rooms) -"hl" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"hc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light/small, /obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"hm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"hf" = ( +/obj/structure/machinery/medical_pod/autodoc{ + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"hi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/platoon_commander_rooms) -"ho" = ( -/obj/structure/pipes/vents/pump, /turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) -"hv" = ( -/obj/structure/machinery/vending/sovietsoda, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"hy" = ( -/obj/vehicle/powerloader/jd{ - name = "\improper CosmosStal 12 Bogatyr Power Loader" +"hp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"hz" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 4; - icon_state = "lattice-simple"; - pixel_x = 13; - pixel_y = 10 +/obj/structure/machinery/cryopod, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"hw" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/clothing/accessory/armband/med, +/obj/item/weapon/gun/rifle/type71/carbine, +/obj/item/clothing/glasses/hud/health{ + pixel_x = -1; + pixel_y = 4 }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice4"; - pixel_x = -19; - pixel_y = 10 +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"hC" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) -"hA" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/bearmeat, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) "hE" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/platoon_sergeant) -"hO" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +"hL" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/upp, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"hM" = ( +/obj/item/ammo_box/rounds/pkp{ + pixel_y = 9 }, +/obj/item/ammo_box/magazine/type71/empty, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) +/area/golden_arrow/supply) "hS" = ( -/obj/structure/machinery/power/apc/almayer/south, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) -"hT" = ( -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"id" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"if" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/prop/magazine/book{ + name = "UPP Party Doctrine Booklet" }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"hY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/item/prop/tableflag/upp{ + pixel_x = 6; + pixel_y = 1 }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) -"if" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 13; - pixel_y = 10 +"ih" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"ik" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Locker Room"; + req_one_access = null }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) "im" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"in" = ( -/obj/effect/landmark/start/marine/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join, +/obj/structure/machinery/light, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"io" = ( +/obj/structure/machinery/cryopod, /turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) "ip" = ( @@ -675,138 +594,45 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/canteen) -"iG" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +"iy" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"iJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) "iO" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/cryo_cells) -"iQ" = ( -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Platoon Corpsman" - }, -/obj/item/clothing/shoes/marine/upp, -/obj/item/device/radio/headset/distress/UPP, -/obj/item/clothing/under/marine/veteran/UPP/medic, -/turf/open/floor/strata/cyan1/east, -/area/golden_arrow/medical) -"iU" = ( +"iP" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/pen{ - pixel_y = -4 +/obj/structure/machinery/computer/cameras/wooden_tv/prop{ + pixel_y = 12 }, -/obj/item/paper_bin, -/obj/item/device/flashlight/lamp/green{ - pixel_x = -7; - pixel_y = 13 +/obj/item/toy/deck{ + pixel_x = 9; + pixel_y = -6 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"jb" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Infirmary"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"je" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/bodybags, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"jm" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"jt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/item/tool/wrench{ + pixel_y = 25 }, /turf/open/floor/strata/floor2, /area/golden_arrow/dorms) -"jw" = ( +"iR" = ( /obj/structure/machinery/conveyor, -/obj/structure/pipes/standard/cap/hidden/supply{ - dir = 8 - }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/supply) -"jy" = ( -/obj/structure/closet/firecloset/full, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) -"jz" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/canteen) -"jA" = ( -/obj/item/tool/soap, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera"; - network = list("Chapaev") - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"jE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"jG" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/golden_arrow/engineering) -"jH" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/prep_hallway) -"jK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"jP" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ammo_magazine/pistol/np92, -/obj/item/ammo_magazine/pistol/np92{ - pixel_x = 4 - }, -/obj/item/weapon/gun/pistol/np92, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"jY" = ( -/obj/structure/surface/rack, -/obj/item/device/motiondetector/hacked, -/obj/item/ammo_magazine/sentry/upp, -/obj/item/defenses/handheld/sentry/upp, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"jZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Engineering"; - req_one_access = null +"iT" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/crew/alt{ + dir = 1 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) -"ka" = ( -/obj/structure/foamed_metal, -/turf/open/floor/strata/floor3/east, -/area/space) -"ko" = ( +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"iV" = ( /obj/structure/surface/rack, /obj/structure/machinery/light, /obj/item/storage/pouch/shotgun/large, @@ -820,88 +646,155 @@ /obj/item/weapon/gun/shotgun/type23, /turf/open/floor/strata/floor2, /area/golden_arrow/squad_two) -"kp" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"kv" = ( -/obj/item/ammo_box/rounds/pkp{ - pixel_y = 9 +"ja" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/item/ammo_box/magazine/type71/empty, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) -"kz" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Locker Room"; - req_one_access = null +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/dorms) +"jd" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + name = "ship-grade camera"; + network = list("Chapaev") + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"je" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -2; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"jB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"kE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/area/golden_arrow/hangar) +"jG" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/golden_arrow/engineering) +"jL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"jQ" = ( +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101; + unacidable = 1; + unslashable = 1 }, -/obj/effect/landmark/start/marine/tl/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join, +/obj/structure/bed/chair, /turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/cryo_cells) -"kI" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/area/golden_arrow/briefing) +"jU" = ( +/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad/upp, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"jW" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"jY" = ( +/obj/structure/machinery/cm_vending/gear/medic_chemical/upp, +/turf/open/floor/strata/cyan1/east, /area/golden_arrow/medical) -"kL" = ( +"jZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"ke" = ( +/obj/structure/bed/chair{ dir = 8 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"kQ" = ( -/obj/structure/pipes/vents/pump{ +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"kg" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"kp" = ( +/obj/structure/prop{ + desc = "A sturdy metal ladder that leads to lower deck of Chapaev which houses CIC and Brig. The hatch is closed, for now."; + icon_state = "ladder11"; + name = "ladder" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"ky" = ( +/obj/structure/bed/chair{ dir = 4 }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"kz" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Maintenance Tunnels" + }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"kY" = ( +/area/golden_arrow/engineering) +"kA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 4 }, /turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"kK" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"kZ" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"lk" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 +"kN" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"kS" = ( +/obj/structure/machinery/conveyor, +/obj/structure/plasticflaps, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/supply) +"kU" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"lb" = ( +/obj/structure/platform/strata/metal{ + dir = 1; + pixel_y = 10 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"le" = ( +/obj/structure/pipes/vents/pump{ + dir = 8 }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) "ll" = ( -/obj/structure/machinery/computer/station_alert{ - dir = 8; - pixel_x = 15; - pixel_y = 2 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/synthcloset) -"lm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/cargo_container/horizontal/blue/top{ + opacity = 0; + pixel_x = 17 }, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/strata/floor2, /area/golden_arrow/hangar) "lo" = ( /obj/structure/bed/chair/comfy{ @@ -910,6 +803,17 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/canteen) +"lq" = ( +/obj/structure/closet/secure_closet{ + name = "squad sergeant locker"; + req_access_txt = "244;238" + }, +/obj/item/clothing/accessory/armband, +/obj/item/device/whistle, +/obj/item/device/binoculars/range/designator, +/obj/item/weapon/gun/rifle/type71/flamer, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) "lr" = ( /obj/structure/bed/bedroll{ pixel_x = -33; @@ -927,175 +831,156 @@ }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/hangar) -"lt" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/strata/floor2, -/area/golden_arrow/platoon_commander_rooms) -"lv" = ( -/obj/structure/closet/crate/ammo/alt, -/obj/item/ammo_magazine/sniper/svd/pve, -/obj/item/ammo_magazine/sniper/svd/pve, -/obj/item/ammo_magazine/sniper/svd/pve, -/obj/item/ammo_magazine/sniper/svd/pve, -/obj/item/ammo_magazine/sniper/svd/pve, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"lB" = ( -/obj/structure/machinery/light, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"lC" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"lw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"lM" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"lR" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/machinery/cryopod{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Squad Sergeant" }, +/obj/item/clothing/shoes/marine/upp, +/obj/item/clothing/under/marine/veteran/UPP, +/obj/item/device/radio/headset/distress/UPP, /turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"lX" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +"lB" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"lC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"lH" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ + name = "Akademia Nauk Remote Control Console"; + shuttleId = "dropship_upp" + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"lJ" = ( +/obj/item/tool/wirecutters, +/obj/item/tool/weldingtool/hugetank, +/obj/structure/surface/rack, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"mn" = ( +/area/golden_arrow/synthcloset) +"lL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101 + }, +/obj/item/clothing/head/uppcap/beret{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/clothing/accessory/armband{ + pixel_x = 6 + }, +/obj/item/tool/screwdriver{ + pixel_x = -9; + pixel_y = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"lO" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + desc = "The MinZdrav Blood Pack Dispensary is the premier, top-of-the-line blood dispenser of 2105! Get yours today!"; + name = "\improper MinZdrav Blood Dispenser"; + req_access = list(); + vendor_theme = 3 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"ma" = ( /obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 5" + name = "\improper S-52 fusion reactor 2" }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/engineering) -"mw" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 +"mn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/structure/mirror{ - pixel_x = 28 +/obj/effect/landmark/start/marine/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join/upp, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/platoon_commander_rooms) -"mI" = ( -/obj/structure/closet/crate/ammo/alt/flame, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"mK" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) "mM" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Canteen"; + req_one_access = null }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/canteen) -"mQ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/head/uppcap/ushanka/civi{ - pixel_y = 6 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) -"mS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"mO" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Other Sections" }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) +/turf/open/floor/strata/floor2, +/area/golden_arrow/briefing) "mV" = ( /turf/open/space/basic, /area/space) -"ne" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Maintenance Tunnels" - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) -"ng" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"mW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/pen{ + pixel_y = -4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/obj/item/paper_bin, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -7; + pixel_y = 13 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"na" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Squad Two Armoury"; + req_one_access = null; + req_one_access_txt = "231;240;238" }, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/item/clothing/shoes/marine/upp, -/obj/item/clothing/under/marine/veteran/UPP, -/obj/item/device/radio/headset/distress/UPP, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"nk" = ( /turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"nu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) -"nw" = ( -/obj/structure/largecrate/random/barrel, +"nt" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/upp, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/prep_hallway) +/area/golden_arrow/platoon_sergeant) "nx" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/platoon_commander_rooms) -"nC" = ( -/obj/structure/surface/rack, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) "nF" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/light{ @@ -1115,123 +1000,131 @@ }, /turf/open/floor/plating, /area/golden_arrow/prep_hallway) -"nJ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, +"nG" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Sergeants Room"; + req_one_access = null; + req_one_access_txt = "240;244" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"nL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = -10; + pixel_y = -7 + }, +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = -7; + pixel_y = -2 + }, /turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) "nM" = ( -/obj/effect/landmark/start/marine/medic/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"nU" = ( -/obj/structure/platform/strata/metal{ - dir = 1; - pixel_y = 10 +"nP" = ( +/obj/structure/largecrate{ + fill_from_loc = 0 + }, +/obj/item/storage/backpack/marine/ammo_rack{ + desc = "This ammo rack has been handcrafted by one of the ship's sappers. Union's ingenuity at it's finest."; + name = "\improper makeshift ammo rack"; + pixel_y = 12 }, -/obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"nW" = ( -/obj/structure/surface/rack, -/obj/item/device/motiondetector/hacked, -/obj/item/ammo_magazine/sentry/upp, -/obj/item/defenses/handheld/sentry/upp, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) +/area/golden_arrow/supply) "oc" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera"; + network = list("Chapaev") + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) "od" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/squad_two) -"ok" = ( +"oe" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, -/obj/structure/prop/ice_colony/tiger_rug{ - desc = "A rather tasteless but impressive tiger rug. Must've costed a fortune to get this exported to the rim. Actually, this rug was 'collectivized' by internal police troopers during anti-corruption raids on colonies and later gifted to Leytenant."; - icon_state = "Gray"; - pixel_x = -14; - pixel_y = -14 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_commander_rooms) +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/squad_two) "on" = ( -/obj/structure/surface/rack, -/obj/item/weapon/gun/rifle/sniper/svd/pve, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"oo" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Requisitions"; - req_one_access = null +/obj/structure/largecrate{ + fill_from_loc = 0 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/supply) +/obj/structure/largecrate{ + fill_from_loc = 0; + layer = 3.1; + pixel_x = -1; + pixel_y = 38 + }, +/obj/item/toy/plush/therapy/red{ + desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; + force = 15; + layer = 2.9; + name = "Commando Huggs"; + pixel_y = 8; + throwforce = 15 + }, +/obj/item/clothing/head/cmcap{ + layer = 3.0; + pixel_x = -1; + pixel_y = 15 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"oo" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) "os" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/platoon_commander_rooms) -"ow" = ( -/obj/structure/machinery/autolathe, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) +"ox" = ( +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) "oB" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/hangar) -"oD" = ( -/obj/structure/surface/rack, -/obj/item/weapon/straight_razor{ - pixel_x = 4; - pixel_y = -6 +"oG" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp/on{ + pixel_y = 13 }, -/obj/item/clothing/accessory/patch/upp, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/tazhushka{ + pixel_x = -9; + pixel_y = 2 + }, +/obj/item/trash/semki, /turf/open/floor/strata/floor3/east, /area/golden_arrow/platoon_sergeant) -"oK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/wooden_tv/prop{ - pixel_y = 12 - }, -/obj/item/toy/deck{ - pixel_x = 9; - pixel_y = -6 - }, -/obj/item/tool/wrench{ - pixel_y = 25 - }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) "oL" = ( -/obj/structure/largecrate/random/barrel/blue{ - pixel_x = -9 - }, -/obj/item/reagent_container/food/drinks/bottle/beer/craft/tazhushka{ - pixel_x = -11; - pixel_y = 20 - }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"oO" = ( -/obj/structure/surface/rack, -/obj/item/device/motiondetector, -/obj/item/ammo_magazine/flamer_tank, -/obj/item/weapon/gun/flamer/underextinguisher, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"oU" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"oW" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"oV" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access/upp, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "oX" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/shower{ @@ -1240,240 +1133,239 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/cryo_cells) -"pb" = ( -/obj/item/clothing/suit/storage/snow_suit/soviet, -/obj/item/clothing/suit/gimmick/jason, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - icon_broken = "cabinetdetective_broken"; - icon_closed = "cabinetdetective"; - icon_locked = "cabinetdetective_locked"; - icon_off = "cabinetdetective_broken"; - icon_opened = "cabinetdetective_open"; - icon_state = "cabinetdetective_locked"; - job = "Platoon Commander" +"oY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/dorms) +"pa" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/obj/item/clothing/under/marine/veteran/UPP/boiler, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_commander_rooms) -"pc" = ( -/obj/structure/closet, -/obj/item/clothing/head/uppcap/ushanka/civi{ - pixel_y = 6 +/area/golden_arrow/canteen) +"pd" = ( +/obj/structure/closet/secure_closet{ + name = "platoon sergeant locker"; + req_one_access = list(240) }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"pg" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_commander_rooms) +/obj/item/device/whistle, +/obj/item/device/binoculars/range/designator, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/ammo_magazine/rifle/type71, +/obj/item/weapon/gun/rifle/type71/flamer, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) "ph" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/canteen) -"pj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"po" = ( -/obj/structure/pipes/vents/pump, +"pl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/bodybags, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) -"pu" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 - }, -/obj/structure/reagent_dispensers/fueltank/gas/methane, +"pm" = ( +/obj/structure/closet, /turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"pF" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/tea{ - pixel_x = -8; - pixel_y = -1 +/area/golden_arrow/dorms) +"ps" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"pz" = ( +/obj/item/stack/sheet/metal{ + amount = 50 }, -/obj/item/ashtray/bronze{ - pixel_x = 4; - pixel_y = 2 +/obj/item/stack/sheet/plasteel{ + amount = 40; + pixel_x = 7; + pixel_y = 6 + }, +/obj/structure/closet/crate/construction, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"pJ" = ( +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/canteen) -"pG" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump{ - dir = 4 +"pL" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin, +/obj/item/tool/pen{ + pixel_x = 12 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"pI" = ( +/obj/item/tool/hand_labeler{ + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"pM" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; name = "ship-grade camera"; network = list("Chapaev") }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"pK" = ( -/obj/structure/cargo_container/horizontal/blue/top{ - opacity = 0; - pixel_x = 17 - }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"pP" = ( -/obj/structure/ladder{ - height = 2; - id = "eng1" - }, +/area/golden_arrow/briefing) +"pN" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) +/area/golden_arrow/medical) "pQ" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/space) -"pT" = ( -/obj/structure/bed/chair, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"pU" = ( +/obj/structure/machinery/light, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"qv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/strata/floor3/east, +/area/golden_arrow/synthcloset) +"qo" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 1; + name = "\improper Dorms"; + req_one_access = null + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"qq" = ( +/obj/vehicle/powerloader/jd{ + name = "\improper CosmosStal 12 Bogatyr Power Loader" + }, +/turf/open/floor/strata/floor2, /area/golden_arrow/hangar) -"qE" = ( -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 10 +"qy" = ( +/obj/structure/machinery/conveyor{ + dir = 8 }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = -7; - pixel_y = -1 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/supply) +"qA" = ( +/obj/structure/filingcabinet{ + pixel_x = 8 + }, +/obj/structure/filingcabinet{ + pixel_x = -8 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"qG" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_commander_rooms) +"qH" = ( +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/engineering) -"qQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) "qS" = ( -/obj/structure/machinery/disposal{ - density = 0; - layer = 3.2; - pixel_y = 16 +/obj/structure/largecrate{ + pixel_x = -7 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"rt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/largecrate{ + pixel_x = -18; + pixel_y = 18 }, /turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"rw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/structure/machinery/cryopod, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"rz" = ( -/obj/structure/machinery/cryopod, -/obj/structure/machinery/camera/autoname/golden_arrow{ +/area/golden_arrow/hangar) +"rd" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; - name = "ship-grade camera"; - network = list("Chapaev") + id = "chapaevcargo" }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"rD" = ( +/area/golden_arrow/supply) +"ri" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + dir = 1; + name = "\improper Platoon Commander's Office"; + req_access = list(); + req_one_access_txt = "240;241" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"ro" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Sergeants Room"; - req_one_access = null; - req_one_access_txt = "240;244" + dir = 1; + name = "\improper Engineering"; + req_one_access = null }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"rt" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 17" }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"rG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"rw" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"rI" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) -"rJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Canteen"; - req_one_access = null +/area/golden_arrow/briefing) +"rB" = ( +/obj/item/trash/plate, +/obj/item/trash/ceramic_plate{ + pixel_x = 6; + pixel_y = 19 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/trash/ceramic_plate{ + pixel_x = 6; + pixel_y = 21 + }, +/obj/item/trash/ceramic_plate{ + pixel_x = 5; + pixel_y = 23 }, +/obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/canteen) -"rM" = ( -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/supply) -"rO" = ( -/obj/structure/prop{ - desc = "A sturdy metal ladder that leads to lower deck of Chapaev which houses CIC and Brig. The hatch is closed, for now."; - icon_state = "ladder11"; - name = "ladder" +"rF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) -"rT" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"rH" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"rM" = ( /obj/structure/machinery/disposal, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) -"rX" = ( -/obj/structure/closet/secure_closet{ - name = "squad sergeant locker"; - req_access_txt = "244;237" +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"rU" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/item/clothing/accessory/armband, -/obj/item/device/whistle, -/obj/item/device/binoculars/range/designator, -/obj/item/weapon/gun/rifle/type71/flamer, +/obj/structure/gun_rack/type71/unloaded, /turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"rY" = ( -/obj/effect/landmark/start/bridge/upp, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_commander_rooms) -"sc" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"sd" = ( -/obj/structure/largecrate{ - pixel_x = -7 +/area/golden_arrow/squad_two) +"si" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) "sl" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Platoon Commander's Office"; - req_access = list(); - req_one_access_txt = "241" - }, +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) +/area/golden_arrow/prep_hallway) "sp" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -1481,80 +1373,130 @@ }, /turf/open/floor/plating, /area/golden_arrow/cryo_cells) -"sB" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/cryo_cells) -"sO" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access = list() +"sF" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 }, /turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"sH" = ( +/obj/effect/landmark/start/bridge/upp, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_commander_rooms) +"sL" = ( +/turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/engineering) -"sR" = ( +"ta" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, /turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"sT" = ( +/area/golden_arrow/hangar) +"tf" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 3.3; + pixel_y = 4 + }, +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/structure/bed{ + buckling_y = 13; + layer = 3.5; + pixel_y = 13 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/obj/item/bedsheet/brown{ + pixel_y = 13 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"th" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"ti" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "chapaev_engi" }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/engineering) -"te" = ( -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/engineering) -"tf" = ( -/obj/structure/closet, -/obj/item/clothing/head/uppcap, -/turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"tl" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - name = "ship-grade camera"; - network = list("Chapaev") +"tp" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin, +/obj/item/tool/pen{ + pixel_x = 12 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/supply) -"tr" = ( -/obj/item/trash/cigbutt/bcigbutt, -/obj/item/trash/cigbutt/bcigbutt, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"tL" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) -"tQ" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - id = "Delta_1"; - name = "\improper Bathroom" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/dorms) -"tS" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/cans/boda{ - pixel_x = -6; - pixel_y = 11 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"tE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/item/reagent_container/food/drinks/cans/boda{ - pixel_x = 2; - pixel_y = 11 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/reagent_container/food/drinks/cans/boda{ - pixel_x = -3; - pixel_y = 24 +/obj/effect/landmark/start/marine/smartgunner/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/cryo_cells) +"tL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/ammo/type71, +/obj/structure/largecrate/supply/ammo/type71{ + pixel_x = 3; + pixel_y = 8 }, /turf/open/floor/strata/floor2, /area/golden_arrow/squad_two) +"tM" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"tQ" = ( +/obj/item/tool/mop{ + pixel_x = 17; + pixel_y = -2 + }, +/obj/item/paper{ + icon_state = "paper_words"; + info = "you fucktards should clean your boots because lieutenant kotov made me scrub the deck clean with a toothbrush when i fucked up (wasnt my fault too) and BOY was it dirty. fuck you all though. know my struggles."; + name = "scribbled note"; + pixel_y = 22 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/briefing) +"tW" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) "tZ" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/platoon_commander_rooms) +"ub" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/structure/largecrate/random/barrel/red{ + layer = 4; + pixel_y = 22 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"uo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "us" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/door/airlock/almayer/maint/colony{ @@ -1565,112 +1507,114 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/cryo_cells) -"uu" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/prop/almayer/CICmap{ - density = 0; - faction = "UPP"; - icon_state = "shuttle"; - layer = 2.97; - minimap_type = 8; - name = "Tactical Map Display"; - pixel_x = 7 +"ut" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/obj/structure/machinery/computer/cameras/almayer/vehicle{ - network = list("Chapaev","Vehicle"); - pixel_x = -12 +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/cryo_cells) +"uD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/phone_base/no_dnd{ - name = "Overwatch Telephone"; - phone_category = "Command"; - phone_id = "Overwatch"; - pixel_y = 30 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/platoon_commander_rooms) -"ux" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) -"uC" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - dir = 1; - name = "\improper Platoon Commander's Office"; - req_access = list(); - req_one_access_txt = "240;241" +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/floor2, -/area/golden_arrow/platoon_commander_rooms) -"uF" = ( -/obj/structure/machinery/recharge_station, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/synthcloset) -"uN" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) -"uO" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 1; - name = "ship-grade camera"; - network = list("Chapaev") +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"uS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) -"uW" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ +/obj/item/clothing/shoes/marine/upp, +/obj/item/clothing/under/marine/veteran/UPP, +/obj/item/device/radio/headset/distress/UPP, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"uH" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; dir = 4; - name = "ship-grade camera"; - network = list("Chapaev") + icon_state = "p_stair_sn_full_cap"; + layer = 2.5 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"uX" = ( -/obj/item/trash/ceramic_plate{ - pixel_x = -6; - pixel_y = 19 +/obj/structure/platform/strata/metal{ + dir = 8 }, -/obj/item/trash/ceramic_plate{ - pixel_x = -6; - pixel_y = 21 +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/trash/ceramic_plate{ - pixel_x = -5; - pixel_y = 23 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"uS" = ( +/obj/structure/surface/rack, +/obj/item/device/motiondetector/hacked, +/obj/item/ammo_magazine/sentry/upp, +/obj/item/defenses/handheld/sentry/upp, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"uT" = ( +/obj/effect/landmark/start/marine/medic/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"uY" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/tea{ - pixel_x = -8; - pixel_y = -1 +/obj/structure/machinery/line_nexter{ + dir = 2; + icon_state = "turnstile_strata"; + layer = 4.1 }, -/turf/open/floor/strata/multi_tiles/southeast, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/canteen) "vb" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/engineering) -"vm" = ( -/obj/structure/machinery/vending/coffee/simple, +"vc" = ( +/obj/structure/machinery/disposal, /turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) -"vD" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/floor3/east, +"vi" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/cryo_cells) +"vj" = ( +/obj/structure/barricade/handrail/strata{ + dir = 4 + }, +/obj/structure/reagent_dispensers/fueltank/gas/methane, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"vw" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera"; + network = list("Chapaev") + }, +/turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/prep_hallway) -"vI" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ +"vB" = ( +/obj/structure/machinery/autolathe, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"vK" = ( +/obj/item/tool/soap, +/obj/structure/machinery/camera/autoname/golden_arrow{ dir = 4; - name = "\improper Other Sections" + name = "ship-grade camera"; + network = list("Chapaev") }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/briefing) +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) "vL" = ( /obj/structure/machinery/power/terminal{ dir = 4 @@ -1688,78 +1632,59 @@ "vN" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/supply) -"wd" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) -"we" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Squad One Armoury"; - req_one_access = null; - req_one_access_txt = "231;240;237" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"vR" = ( +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) +/area/golden_arrow/platoon_commander_rooms) +"vT" = ( +/obj/structure/surface/rack, +/obj/item/weapon/straight_razor{ + pixel_x = 4; + pixel_y = -6 + }, +/obj/item/clothing/accessory/patch/upp, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"vZ" = ( +/obj/effect/landmark/start/marine/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) "wf" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/clothing/accessory/armband/med, -/obj/item/weapon/gun/rifle/type71/carbine, -/obj/item/clothing/glasses/hud/health{ - pixel_x = -1; - pixel_y = 4 +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/strata/cyan1/east, /area/golden_arrow/medical) -"wi" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Platoon Medic Office"; - req_one_access = null; - req_one_access_txt = "231" - }, +"wk" = ( +/obj/structure/foamed_metal, +/obj/structure/foamed_metal, /turf/open/floor/strata/floor3/east, +/area/space) +"wl" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) -"wj" = ( -/obj/structure/machinery/cm_vending/clothing/synth/snowflake{ - desc = "A vendor with a large snowflake on it. Provided by Ministry of Fashion."; - name = "\improper UPP Synthetic Conformity Unit" - }, +"wm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"wn" = ( +/obj/structure/machinery/recharge_station, /turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/synthcloset) -"wk" = ( -/obj/structure/closet/secure_closet{ - name = "platoon sergeant locker"; - req_one_access = list(240) - }, -/obj/item/device/whistle, -/obj/item/device/binoculars/range/designator, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/ammo_magazine/rifle/type71, -/obj/item/weapon/gun/rifle/type71/flamer, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) "wp" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin, -/obj/item/tool/pen{ - pixel_x = 12 +/obj/structure/largecrate{ + pixel_x = -7 }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/supply) "wq" = ( /turf/open/floor/plating, /area/golden_arrow/hangar) -"ws" = ( -/obj/structure/machinery/conveyor{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) "ww" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/squad_one) @@ -1773,133 +1698,152 @@ /turf/open/floor/plating, /area/golden_arrow/engineering) "wE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"wF" = ( -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/cryo_cells) -"wG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_commander_rooms) -"wL" = ( +/obj/structure/machinery/floodlight/landing/floor, /obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; + dir = 4; name = "ship-grade camera"; network = list("Chapaev") }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) -"wN" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"wI" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"wP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/light/small, /turf/open/floor/strata/floor3/east, /area/golden_arrow/engineering) "wV" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/synthcloset) "wW" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/structure/pipes/vents/pump, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) -"xd" = ( -/obj/item/stack/sheet/metal{ - amount = 50 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/item/stack/sheet/plasteel{ - amount = 40; - pixel_x = 7; - pixel_y = 6 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"xa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/structure/closet/crate/construction, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) "xe" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/landmark/late_join/alpha, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/cryo_cells) -"xl" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, +"xf" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_commander_rooms) +"xu" = ( +/turf/open/floor/strata/floor2, /area/golden_arrow/briefing) -"xE" = ( +"xw" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin, -/obj/item/tool/pen{ - pixel_x = 12 +/obj/item/ammo_magazine/pistol/np92, +/obj/item/ammo_magazine/pistol/np92{ + pixel_x = 4 }, -/obj/item/prop/tableflag/upp{ - pixel_x = 6; - pixel_y = 15 +/obj/item/weapon/gun/pistol/np92, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"xy" = ( +/obj/structure/largecrate, +/obj/structure/largecrate{ + layer = 3.1; + pixel_x = 11; + pixel_y = 16 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"xF" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/pen{ - pixel_x = 12 +/area/golden_arrow/supply) +"xB" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food{ + desc = "USCM Food Vendor, containing standard military Prepared Meals. It was gifted to Chapaev by Marines of 1st Platoon, Sun Riders as a sign of good will. They did not complain receiving a crate of vodka in return." }, -/obj/item/paper_bin, -/obj/item/device/flashlight/lamp{ - pixel_x = 11; - pixel_y = 12 +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"xC" = ( +/obj/structure/machinery/computer/overwatch/almayer{ + density = 1; + faction = "UPP" + }, +/obj/item/clothing/glasses/hud/health{ + pixel_x = 7; + pixel_y = 17 }, -/obj/item/prop/magazine/book/theartofwar, /turf/open/floor/strata/floor2, /area/golden_arrow/platoon_commander_rooms) +"xF" = ( +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) "xH" = ( -/obj/structure/ladder{ - height = 1; - id = "eng1" +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) -"xI" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"xM" = ( +/obj/structure/stairs/perspective{ + color = "#6e6e6e"; + icon_state = "p_stair_sn_full_cap"; + layer = 2.5 + }, +/obj/structure/platform/strata/metal{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/west, +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 + }, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) -"xM" = ( -/obj/structure/closet, -/turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"xN" = ( -/obj/structure/closet, -/obj/item/clothing/head/uppcap/civi{ - pixel_x = 8; - pixel_y = 8 +"xQ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer{ + dir = 2 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"xT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 8 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) -"xY" = ( -/obj/structure/bed/chair/comfy/teal{ - dir = 4 +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"xR" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) "xZ" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/squad_one) +"ya" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/tea{ + pixel_x = -8; + pixel_y = -1 + }, +/obj/item/ashtray/bronze{ + pixel_x = 4; + pixel_y = 2 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) "yc" = ( /obj/item/reagent_container/food/drinks/bottle/beer/craft/tazhushka{ pixel_x = -23; @@ -1911,37 +1855,6 @@ }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/hangar) -"yd" = ( -/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 = "W"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Smartgunner" - }, -/obj/item/clothing/shoes/marine/upp, -/obj/item/clothing/under/marine/veteran/UPP, -/obj/item/device/radio/headset/distress/UPP, -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101; - unacidable = 1; - unslashable = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) "yj" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/light/small{ @@ -1949,140 +1862,145 @@ }, /turf/open/floor/plating, /area/golden_arrow/engineering) -"yp" = ( -/obj/structure/cargo_container/horizontal/blue/middle{ - opacity = 0; - pixel_x = 17 +"yn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/item/trash/cigbutt/bcigbutt, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"ys" = ( -/obj/structure/machinery/power/apc/almayer/south, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/synthcloset) +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/landmark/start/marine/tl/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/cryo_cells) +"yr" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) "yx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/head/uppcap/ushanka/civi{ + pixel_y = 6 }, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Private Briefing Room"; - req_one_access = null; - req_one_access_txt = "240;244;241" +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"yE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) -"yG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) "yH" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/hangar) -"yK" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "chapaevcargo" +"yI" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"yJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) -"yO" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) -"yQ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper_bin, -/obj/item/tool/pen{ - pixel_x = 12 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"yM" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"yN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) -"yU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"yR" = ( +/obj/item/trash/cigbutt/bcigbutt, +/obj/item/trash/cigbutt/bcigbutt, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"yZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) -"yZ" = ( -/obj/structure/machinery/light{ - dir = 4 +/area/golden_arrow/hangar) +"zd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/ammo/type71, +/obj/structure/largecrate/supply/ammo/type71{ + pixel_x = 3; + pixel_y = 8 }, -/turf/open/floor/strata/cyan1/east, -/area/golden_arrow/medical) -"za" = ( -/obj/structure/bed{ - can_buckle = 0 +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"zk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/landmark/start/marine/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"zu" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/beetsoup, +/obj/item/reagent_container/food/drinks/tea{ + pixel_x = 8; + pixel_y = 7 }, -/obj/item/bedsheet/brown, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_commander_rooms) -"zh" = ( -/obj/structure/machinery/conveyor{ - dir = 6 +/area/golden_arrow/canteen) +"zw" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/toy/deck{ + pixel_x = 8; + pixel_y = 11 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) -"zk" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4; - name = "ship-grade camera"; - network = list("Chapaev") +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = 10; + pixel_y = 6 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/item/toy/handcard/aceofspades, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"zD" = ( +/obj/structure/closet, +/obj/item/clothing/head/uppcap/civi{ + pixel_x = 8; + pixel_y = 8 }, /turf/open/floor/strata/floor2, -/area/golden_arrow/platoon_commander_rooms) -"zm" = ( +/area/golden_arrow/dorms) +"zG" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/squad_two) -"zn" = ( -/obj/item/tool/wirecutters, -/obj/item/tool/weldingtool/hugetank, -/obj/structure/surface/rack, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/synthcloset) -"zv" = ( +/area/golden_arrow/platoon_sergeant) +"zJ" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Cleaning Supplies"; + dir = 1; + name = "\improper Requisitions"; req_one_access = null }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/briefing) -"zL" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/bed/chair/office/dark, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/medical) -"zQ" = ( -/obj/structure/barricade/handrail/strata{ - dir = 1 - }, -/turf/open/floor/strata/floor3/east, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/supply) "zS" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) +/obj/structure/largecrate, +/obj/structure/largecrate{ + pixel_y = 16 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/supply) "zX" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/cryo_cells) -"zY" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ - pixel_y = 6 - }, -/turf/open/floor/strata/cyan1/east, -/area/golden_arrow/medical) -"zZ" = ( -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) "Ac" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/prop/invuln/overhead_pipe{ @@ -2093,31 +2011,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/engineering) -"Ai" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ammo_magazine/minigun{ - desc = "A huge ammo drum for a huge gun. Your platoon got issued with magazines first which happened several months ago. When will the miniguns come, you wonder?"; - name = "GSh-7.62 rotating ammo drum (7.62x51mm)"; - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_container/food/drinks/dry_ramen, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"Ak" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) -"Am" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 1 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) "Ao" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -2125,42 +2018,34 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/supply) -"Av" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"Aw" = ( -/obj/structure/largecrate/random/barrel/blue, -/obj/structure/largecrate/random/barrel/red{ - layer = 4; - pixel_y = 22 - }, -/turf/open/floor/strata/floor2, +"Ap" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/hangar) -"AL" = ( -/obj/structure/machinery/light{ +"AD" = ( +/obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"AN" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 6; - pixel_y = 5 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = -2; - pixel_y = 1 +/area/golden_arrow/platoon_commander_rooms) +"AO" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1; + name = "ship-grade camera"; + network = list("Chapaev") }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) "AQ" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 4 +/obj/structure/barricade/handrail/strata{ + dir = 8 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) +/area/golden_arrow/canteen) +"AR" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/prep_hallway) "AS" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/shower{ @@ -2168,96 +2053,105 @@ }, /turf/open/floor/plating, /area/golden_arrow/cryo_cells) -"Ba" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera"; - network = list("Chapaev") +"Bi" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"Bh" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"Bm" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"BD" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"Bl" = ( +/obj/structure/toilet{ dir = 4 }, -/turf/open/floor/plating, -/area/golden_arrow/engineering) -"BE" = ( -/obj/structure/bed{ - can_buckle = 0 +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/item/bedsheet/brown{ - layer = 3.4 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"BF" = ( -/obj/structure/machinery/door/poddoor/almayer/closed{ - dir = 4; - indestructible = 1 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/dorms) +"Bm" = ( +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"BA" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clipboard{ + pixel_x = 4 }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - dir = 8; - name = "\improper Synthetic Preperations"; - req_one_access = list(36) +/obj/item/reagent_container/pill/cyanide{ + icon_state = "pill5"; + name = "cyanide pill"; + pixel_x = -8; + pixel_y = 1 }, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/synthcloset) -"BH" = ( +/area/golden_arrow/platoon_commander_rooms) +"BD" = ( +/obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"BP" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/turf/open/floor/plating, +/area/golden_arrow/engineering) +"BS" = ( +/obj/structure/bed{ + can_buckle = 0 }, +/obj/item/bedsheet/brown, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_commander_rooms) +"BU" = ( +/obj/structure/closet, +/obj/item/clothing/mask/cigarette/weed, +/obj/item/clothing/head/bearpelt, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) +/area/golden_arrow/engineering) "BW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/platform/strata/metal{ + dir = 1; + pixel_y = 10 }, +/obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) -"Ci" = ( -/turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) -"Cl" = ( -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_one_access = list() +"Ca" = ( +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 5" }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/engineering) -"CA" = ( +"Cb" = ( +/obj/effect/decal/cleanable/blood/oil, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"Cc" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"Cm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) -"CE" = ( -/obj/structure/machinery/cm_vending/gear/medic_chemical/upp, -/turf/open/floor/strata/cyan1/east, -/area/golden_arrow/medical) -"CG" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera" +"Cr" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"Cw" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/engineering) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"CH" = ( +/obj/item/trash/cigbutt/bcigbutt, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) "CJ" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/shower{ @@ -2268,128 +2162,193 @@ "CK" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/medical) +"CL" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Maintenance Tunnels" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) "CM" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/dorms) "CN" = ( -/obj/structure/pipes/vents/pump, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"CP" = ( -/obj/structure/machinery/door/airlock/almayer/command/reinforced{ - name = "\improper Platoon Commander's Quarters"; - req_access = list(241) +/area/golden_arrow/engineering) +"Db" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/large_shrapnel/at_rocket_dud{ + drop_sensitivity = 0; + impact_sensitivity = 1; + pixel_x = -6; + pixel_y = 13 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/item/attachable/bayonet/upp{ + pixel_x = -9; + pixel_y = -1 + }, +/obj/item/prop/magazine/book{ + desc = "A booklet provided to anyone ranging from conscripts to normal citizenry. The first page is stamped with the Party's insignia and reminds you that the Party has your best interest in heart; the following pages immensely simplify the Party's doctrine, grossly propagandizes Socialism, and greatly vilifies the United Americas."; + name = "UPP Party Doctrine Booklet"; + pixel_x = 13 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"Df" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 1 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_commander_rooms) -"CR" = ( -/turf/open/floor/strata/cyan1/east, -/area/golden_arrow/medical) -"CY" = ( -/obj/structure/machinery/light, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"Db" = ( +/area/golden_arrow/platoon_sergeant) +"Dk" = ( +/obj/structure/surface/rack, +/obj/item/device/motiondetector/hacked, +/obj/item/ammo_magazine/sentry/upp, +/obj/item/defenses/handheld/sentry/upp, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"Dl" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 1; name = "ship-grade camera"; network = list("Chapaev") }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"Dd" = ( -/obj/structure/machinery/cm_vending/clothing/synth{ - density = 0; - name = "\improper UnTech Synthetic Equipment Rack"; - pixel_y = 32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/synthcloset) -"Dn" = ( -/obj/structure/bed/chair/comfy{ - dir = 1 +/area/golden_arrow/platoon_commander_rooms) +"Dm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin, +/obj/item/tool/pen{ + pixel_x = 12 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"Du" = ( -/obj/vehicle/powerloader/jd{ - name = "\improper CosmosStal 12 Bogatyr Power Loader" +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"Ds" = ( +/obj/structure/closet/crate/ammo/alt/flame, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"Dv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/obj/structure/machinery/door_control{ - id = "chapaevcargo"; - pixel_x = 32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"Dz" = ( +/obj/item/clothing/suit/storage/snow_suit/soviet, +/obj/item/clothing/suit/gimmick/jason, +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + icon_broken = "cabinetdetective_broken"; + icon_closed = "cabinetdetective"; + icon_locked = "cabinetdetective_locked"; + icon_off = "cabinetdetective_broken"; + icon_opened = "cabinetdetective_open"; + icon_state = "cabinetdetective_locked"; + job = "Platoon Commander" }, +/obj/item/clothing/under/marine/veteran/UPP/boiler, +/obj/item/clothing/under/marine/veteran/UPP/officer, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/supply) +/area/golden_arrow/platoon_commander_rooms) "DF" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ammo_magazine/handful/shotgun/heavy/flechette{ - current_rounds = 1; - pixel_x = 7; - pixel_y = 6 - }, -/obj/item/ammo_magazine/handful/shotgun/heavy{ - current_rounds = 1; - pixel_y = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, -/obj/item/ammo_magazine/handful/shotgun/heavy/beanbag{ - current_rounds = 1; - pixel_x = -8; - pixel_y = 5 +/obj/effect/landmark/start/marine/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"DJ" = ( -/obj/structure/bed/chair{ +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"DW" = ( +/obj/structure/foamed_metal, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_commander_rooms) +"Ea" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/strata/multi_tiles/west, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) -"DR" = ( -/obj/structure/machinery/light/small{ +"Ec" = ( +/obj/structure/pipes/vents/pump{ dir = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/platoon_commander_rooms) -"DU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/supply) -"DY" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) -"DZ" = ( -/obj/structure/largecrate, -/obj/structure/largecrate{ - pixel_y = 16 +"Ee" = ( +/obj/structure/machinery/conveyor, +/obj/structure/machinery/conveyor{ + dir = 6 }, -/turf/open/floor/strata/multi_tiles/southeast, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/supply) -"Ek" = ( -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101 - }, +"Eo" = ( +/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/upp, /turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"Em" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/dorms) +/area/golden_arrow/squad_two) "Eq" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; - name = "ship-grade camera"; - network = list("Chapaev") +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"Es" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 4; + icon_state = "lattice-simple"; + pixel_x = 13; + pixel_y = 10 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice4"; + pixel_x = -19; + pixel_y = 10 }, /turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) +/area/golden_arrow/briefing) +"Et" = ( +/obj/item/stool, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/cryo_cells) "Ez" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/landmark/late_join/alpha, @@ -2405,41 +2364,44 @@ }, /turf/open/floor/plating, /area/golden_arrow/canteen) -"EN" = ( -/obj/structure/bookcase{ - density = 0; - icon_state = "book-5"; - pixel_x = 2; - pixel_y = 18 +"EG" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"EK" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/pen{ + pixel_x = 12 }, -/obj/item/book/codebook/upp, -/obj/item/prop/magazine/book{ - desc = "It's not a mandatory reading material in UPP, but it's still encouraged to memorize certain quotes from this book."; - name = "Communist Manifesto"; - pixel_y = 35 +/obj/item/paper_bin, +/obj/item/device/flashlight/lamp{ + pixel_x = 11; + pixel_y = 12 }, +/obj/item/prop/magazine/book/theartofwar, +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"EX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"ER" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/drinks/coffee, +/area/golden_arrow/briefing) +"Fd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/canteen) -"EU" = ( -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"EZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"Fg" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/supply) +"Fj" = ( +/obj/structure/ladder{ + height = 2; + id = "eng1" }, -/obj/structure/machinery/light/small, -/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/strata/floor3/east, /area/golden_arrow/engineering) -"Fe" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) "Fm" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -2448,44 +2410,30 @@ /turf/open/floor/plating, /area/golden_arrow/prep_hallway) "Fq" = ( -/obj/structure/machinery/light{ +/obj/structure/machinery/light, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"Fu" = ( +/obj/structure/bed/chair{ dir = 1 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"Fw" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Canteen"; - req_one_access = null - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"FK" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) -"FO" = ( +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"Fx" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Platoon Sergeant's Bunk"; + name = "\improper Squad One Armoury"; req_one_access = null; - req_one_access_txt = "240" + req_one_access_txt = "231;240;237" }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"FW" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/prop/magazine/book{ - desc = "A booklet provided to anyone ranging from conscripts to normal citizenry. The first page is stamped with the Party's insignia and reminds you that the Party has your best interest in heart; the following pages immensely simplify the Party's doctrine, grossly propagandizes Socialism, and greatly vilifies the United Americas."; - name = "UPP Party Doctrine Booklet"; - pixel_x = 1; - pixel_y = 6 - }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"FT" = ( +/obj/structure/surface/rack, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) "FY" = ( /obj/structure/machinery/power/terminal{ dir = 8 @@ -2494,44 +2442,67 @@ /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/engineering) -"Gb" = ( -/obj/structure/machinery/conveyor, -/obj/structure/plasticflaps, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) +"Gc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) "Gf" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_one_access = list() +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"Gp" = ( +/obj/structure/cargo_container/horizontal/blue/middle{ + opacity = 0; + pixel_x = 17 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) -"GD" = ( +/obj/item/trash/cigbutt/bcigbutt, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"Gr" = ( /obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"GG" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 4; - icon_state = "lattice-simple"; - pixel_x = 13; - pixel_y = 10 +/obj/structure/machinery/prop/almayer/CICmap{ + density = 0; + faction = "UPP"; + icon_state = "shuttle"; + layer = 2.97; + minimap_type = 8; + name = "Tactical Map Display"; + pixel_x = 7 + }, +/obj/structure/machinery/computer/cameras/almayer/vehicle{ + network = list("Chapaev","Vehicle"); + pixel_x = -12 + }, +/obj/structure/phone_base/no_dnd{ + name = "Overwatch Telephone"; + phone_category = "Command"; + phone_id = "Overwatch"; + pixel_y = 30 }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) -"GH" = ( -/obj/structure/machinery/cm_vending/sorted/cargo_guns/squad/upp, /turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) +/area/golden_arrow/platoon_commander_rooms) +"GJ" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Platoon Commander's Quarters"; + req_access = list(241) + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_commander_rooms) "GK" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8; + dir = 4; name = "ship-grade camera"; network = list("Chapaev") }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"GM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"GO" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 @@ -2554,12 +2525,50 @@ /obj/item/clothing/shoes/marine/upp, /obj/item/clothing/under/marine/veteran/UPP, /obj/item/device/radio/headset/distress/UPP, +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + unacidable = 1; + unslashable = 1 + }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"Hh" = ( +"GP" = ( +/obj/vehicle/powerloader/jd{ + name = "\improper CosmosStal 12 Bogatyr Power Loader" + }, +/obj/structure/machinery/door_control{ + id = "chapaevcargo"; + pixel_x = 32 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/supply) +"GR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /obj/structure/largecrate/random/barrel/red, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/prep_hallway) +/area/golden_arrow/supply) +"GX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"Ha" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Bathroom" + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"Hd" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_one_access = list() + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) "Hq" = ( /obj/item/tool/crowbar/red{ pixel_x = -13; @@ -2583,27 +2592,19 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/hangar) -"Hu" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/strata/floor2, -/area/golden_arrow/briefing) -"Hw" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/lightreplacer, -/obj/item/device/radio, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) -"HT" = ( +"HF" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/dorms) +"HM" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/supply) +"HQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/engineering) -"HV" = ( -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/upp, /turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) +/area/golden_arrow/squad_two) "Id" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -2611,106 +2612,157 @@ }, /turf/open/floor/plating, /area/golden_arrow/briefing) -"Ig" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ +"Ie" = ( +/obj/structure/machinery/sleep_console{ dir = 8; - name = "ship-grade camera"; - network = list("Chapaev") + pixel_y = 6 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"It" = ( +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"Ig" = ( /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"ID" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/supply/ammo/type71, -/obj/structure/largecrate/supply/ammo/type71{ - pixel_x = 3; +/obj/item/reagent_container/food/snacks/upp, +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/clothing/head/uppcap/civi{ + pixel_x = 8; pixel_y = 8 }, /turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"IH" = ( -/obj/structure/machinery/light/small, +/area/golden_arrow/dorms) +"Im" = ( /turf/open/floor/strata/floor2, -/area/golden_arrow/briefing) -"IO" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Maintenance Tunnels" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/golden_arrow/squad_two) +"Io" = ( +/obj/structure/machinery/cryopod, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_commander_rooms) +"Ip" = ( +/obj/structure/machinery/vending/sovietsoda, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"Ix" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/faxmachine{ + name = "\improper UPP Military Fax Machine"; + network = "UPP Encrypted Network"; + target_department = "UPP High Command" }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) -"IS" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/golden_arrow/dorms) -"IV" = ( -/obj/structure/toilet{ - dir = 4 +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"ID" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas{ + pixel_x = -5; + pixel_y = 10 }, -/obj/structure/machinery/light/small{ - dir = 1 +/obj/item/stack/sheet/glass{ + amount = 50 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/dorms) -"IY" = ( -/obj/structure/largecrate{ - fill_from_loc = 0 +/obj/item/clothing/mask/gas{ + pixel_x = 5; + pixel_y = 10 }, -/obj/structure/largecrate{ - fill_from_loc = 0; - layer = 3.1; - pixel_x = -1; - pixel_y = 38 +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care."; + pixel_y = -9 }, -/obj/item/toy/plush/therapy/red{ - desc = "A USCM approved plush doll. It's not soft and hardly comforting!"; - force = 15; - layer = 2.9; - name = "Commando Huggs"; - pixel_y = 8; - throwforce = 15 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/item/clothing/head/cmcap{ - layer = 3.0; - pixel_x = -1; - pixel_y = 15 +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"IE" = ( +/obj/structure/machinery/medical_pod/bodyscanner{ + pixel_y = 6 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"Jh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"IF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"Jk" = ( +/area/golden_arrow/engineering) +"IH" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 4; name = "ship-grade camera"; network = list("Chapaev") }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) -"Jm" = ( /turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) -"Js" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/area/golden_arrow/briefing) +"II" = ( /obj/structure/machinery/door/airlock/almayer/maint/colony{ dir = 1; - name = "\improper Platoon Medic Office"; - req_one_access = null; - req_one_access_txt = "231" + name = "\improper Canteen"; + req_one_access = null + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"IP" = ( +/obj/item/stool, +/obj/structure/pipes/vents/pump{ + dir = 8 }, /turf/open/floor/strata/floor3/east, +/area/golden_arrow/cryo_cells) +"IS" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/golden_arrow/dorms) +"IW" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Canteen"; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"IX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) +"IZ" = ( +/obj/structure/machinery/cm_vending/gear/synth{ + density = 0; + name = "\improper UnTech Synthetic Auxiliary Gear Rack"; + pixel_y = 32 + }, +/obj/item/stool, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/synthcloset) +"Jd" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 13; + pixel_y = 10 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/prep_hallway) +"Jl" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/pipes/vents/pump, +/obj/structure/pipes/vents/pump, +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"Jn" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) "Jt" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -2719,15 +2771,11 @@ /turf/open/floor/plating, /area/golden_arrow/squad_two) "Ju" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 2; - name = "\improper Platoon Sergeant's Bunk"; - req_one_access = null; - req_one_access_txt = "240" +/obj/structure/pipes/vents/pump{ + dir = 8 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) +/area/golden_arrow/hangar) "JA" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/prop/invuln/overhead_pipe, @@ -2737,156 +2785,170 @@ /turf/open/floor/plating, /area/golden_arrow/engineering) "JD" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 28 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/dorms) +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) "JE" = ( /obj/structure/pipes/standard/cap/hidden/supply{ dir = 4 }, /turf/open/space/basic, /area/space) -"JS" = ( -/obj/structure/janitorialcart, -/obj/item/reagent_container/glass/bucket{ - pixel_x = -7; - pixel_y = 8 - }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/briefing) -"Ka" = ( -/obj/structure/machinery/light{ - dir = 4 +"JF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/largecrate/random/barrel/red, /turf/open/floor/strata/floor3/east, /area/golden_arrow/supply) +"JH" = ( +/obj/structure/machinery/door/poddoor/almayer/closed{ + dir = 4; + indestructible = 1 + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + dir = 8; + name = "\improper Synthetic Preperations"; + req_one_access = list(36) + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/synthcloset) +"JQ" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) +"JR" = ( +/obj/structure/barricade/handrail/strata, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/canteen) "Kc" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/engineering) -"Kh" = ( -/obj/structure/machinery/light{ - dir = 8 +"Ke" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"Km" = ( -/obj/item/stool, -/obj/structure/pipes/vents/pump{ +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"Kq" = ( -/obj/structure/machinery/light{ - dir = 1 +"Kj" = ( +/obj/structure/bed/chair{ + dir = 4 }, -/obj/structure/gun_rack/type71/unloaded, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"Ks" = ( -/obj/item/clothing/shoes/slippers_worn{ - pixel_y = 16 +/obj/item/tool/hand_labeler{ + pixel_x = 3; + pixel_y = 3 }, /turf/open/floor/strata/floor2, /area/golden_arrow/dorms) -"KG" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"KN" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating, -/area/golden_arrow/briefing) -"KT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +"Kl" = ( +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101; + unacidable = 1; + unslashable = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/largecrate, +/obj/item/storage/fancy/cigar{ + pixel_y = 8 }, -/obj/effect/landmark/start/marine/smartgunner/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/cryo_cells) -"KU" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - id = "Delta_1"; - name = "\improper Bathroom" +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/supply) +"Km" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access = list() }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/dorms) -"KV" = ( -/obj/structure/machinery/sleep_console{ - dir = 8; +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"Kn" = ( +/obj/structure/machinery/body_scanconsole{ + dir = 1; pixel_y = 6 }, /turf/open/floor/strata/cyan1/east, /area/golden_arrow/medical) -"KW" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 +"Kq" = ( +/obj/structure/closet, +/obj/item/clothing/head/uppcap/ushanka/civi{ + pixel_y = 6 }, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/strata/floor2, /area/golden_arrow/dorms) -"Lb" = ( -/obj/structure/machinery/cryopod{ - dir = 1 - }, -/obj/structure/machinery/light{ - dir = 4 +"Kz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"KC" = ( +/obj/structure/closet/secure_closet{ + name = "machinegunner locker"; + req_access_txt = "243;237" }, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/storage/belt/gun/smartgunner/upp, +/obj/item/storage/belt/marine/smartgunner/upp, +/obj/item/clothing/suit/storage/marine/smartgunner/upp, +/obj/item/clothing/head/helmet/marine/veteran/UPP/heavy, +/obj/item/weapon/gun/pkp/iff, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"KI" = ( /turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"Lc" = ( -/obj/structure/machinery/light/small{ - dir = 8 +/area/golden_arrow/supply) +"KN" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/pipes/vents/pump{ - dir = 1 +/turf/open/floor/plating, +/area/golden_arrow/briefing) +"KV" = ( +/obj/item/newspaper{ + desc = "An issue of Kosmicheskaya Pravda, the newspaper circulating in UPP-controlled space."; + pixel_x = -15; + pixel_y = 34 }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/dorms) -"Lh" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/faxmachine{ - name = "\improper UPP Military Fax Machine"; - network = "UPP Encrypted Network"; - target_department = "UPP High Command" - }, -/turf/open/floor/strata/floor2, /area/golden_arrow/platoon_commander_rooms) -"Ls" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/light{ - dir = 4; - invisibility = 101 - }, -/obj/item/clothing/head/uppcap/beret{ - pixel_x = -6; - pixel_y = 8 - }, -/obj/item/clothing/accessory/armband{ - pixel_x = 6 +"KY" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"Lb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice8"; + pixel_x = 13; + pixel_y = 10 }, -/obj/item/tool/screwdriver{ - pixel_x = -9; - pixel_y = 8 +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"Lg" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) +/area/golden_arrow/briefing) +"Ls" = ( +/obj/item/stool, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/cryo_cells) "Lt" = ( /obj/structure/machinery/power/terminal{ dir = 8 @@ -2900,278 +2962,210 @@ }, /turf/open/floor/plating, /area/golden_arrow/engineering) -"Lu" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"Lz" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood{ - desc = "The MinZdrav Blood Pack Dispensary is the premier, top-of-the-line blood dispenser of 2105! Get yours today!"; - name = "\improper MinZdrav Blood Dispenser"; - req_access = list(); - vendor_theme = 3 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) "LB" = ( -/obj/effect/landmark/start/marine/leader/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"LF" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"LG" = ( -/obj/structure/machinery/light, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/synthcloset) -"LK" = ( +/obj/structure/closet/firecloset/full, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/synthcloset) +/area/golden_arrow/engineering) +"LE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"LH" = ( +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) "LR" = ( -/obj/structure/machinery/power/monitor{ - name = "Core Power Monitoring" +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) "LS" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/pipes/vents/pump, -/obj/structure/pipes/vents/pump, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"LU" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"LV" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"LW" = ( +/obj/structure/machinery/light, /obj/structure/pipes/vents/pump{ - dir = 1 + dir = 4 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) +/area/golden_arrow/cryo_cells) "LZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/supply/ammo/type71, -/obj/structure/largecrate/supply/ammo/type71{ - pixel_x = 3; - pixel_y = 8 +/obj/structure/machinery/cm_vending/clothing/synth{ + density = 0; + name = "\improper UnTech Synthetic Equipment Rack"; + pixel_y = 32 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/synthcloset) "Mb" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/briefing) -"Md" = ( -/obj/structure/filingcabinet{ - pixel_x = 8 - }, -/obj/structure/filingcabinet{ - pixel_x = -8 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"Me" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/landmark/start/marine/smartgunner/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/cryo_cells) -"Ml" = ( -/obj/structure/machinery/floodlight/landing/floor, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) -"Mr" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 2" - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) -"MA" = ( -/obj/structure/machinery/light{ - dir = 1 +"Mf" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) "ME" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"MF" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"MH" = ( +/obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) -"MG" = ( -/obj/structure/machinery/power/apc/almayer/east, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"MH" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 4 }, /turf/open/floor/plating, /area/golden_arrow/squad_one) -"MK" = ( -/obj/structure/closet/secure_closet{ - name = "machinegunner locker"; - req_access_txt = "243;237" - }, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/storage/belt/gun/smartgunner/upp, -/obj/item/storage/belt/marine/smartgunner/upp, -/obj/item/clothing/suit/storage/marine/smartgunner/upp, -/obj/item/clothing/head/helmet/marine/veteran/UPP/heavy, -/obj/item/weapon/gun/pkp/iff, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) "ML" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/squad_two) +"MM" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/bed/chair/office/dark, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/medical) "MO" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/prep_hallway) -"Na" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = 7; - pixel_y = 11 +"MQ" = ( +/obj/structure/cargo_container/horizontal/blue/bottom{ + opacity = 0; + pixel_x = 17 }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = -7; - pixel_y = 18 +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"MT" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera"; + network = list("Chapaev") }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = 5; - pixel_y = 18 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"Na" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = -6; - pixel_y = 10 +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101 }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = 1; - pixel_y = 5 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"Nc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = 1; - pixel_y = 13 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = 10; - pixel_y = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) -"Ne" = ( -/obj/structure/largecrate{ - fill_from_loc = 0 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/storage/backpack/marine/ammo_rack{ - desc = "This ammo rack has been handcrafted by one of the ship's sappers. Union's ingenuity at it's finest."; - name = "\improper makeshift ammo rack"; - pixel_y = 12 +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Smartgunner" }, +/obj/item/clothing/shoes/marine/upp, +/obj/item/clothing/under/marine/veteran/UPP, +/obj/item/device/radio/headset/distress/UPP, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) -"Nr" = ( -/obj/structure/machinery/conveyor, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) -"Ns" = ( -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) -"Nt" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ +/area/golden_arrow/cryo_cells) +"Nj" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"Nl" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/floor2, +/area/golden_arrow/hangar) +"No" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) "NA" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/prep_hallway) -"ND" = ( -/obj/structure/foamed_metal, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_commander_rooms) -"NK" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access/upp, +"NB" = ( +/obj/structure/machinery/shower{ + dir = 8 + }, +/obj/structure/machinery/door/window/westleft, +/obj/structure/window/reinforced/tinted/frosted, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"NM" = ( -/turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"NP" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/paper/crumpled/bloody{ - pixel_y = 6 +/area/golden_arrow/platoon_commander_rooms) +"NN" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/obj/item/attachable/bayonet/upp, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) +/obj/structure/prop/ice_colony/tiger_rug{ + desc = "A rather tasteless but impressive tiger rug. Must've costed a fortune to get this exported to the rim. Actually, this rug was 'collectivized' by internal police troopers during anti-corruption raids on colonies and later gifted to Leytenant."; + icon_state = "Gray"; + pixel_x = -14; + pixel_y = -14 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_commander_rooms) "NQ" = ( /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/medical) "NU" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/squad_two) -"NY" = ( -/obj/structure/closet/crate/ammo/alt/flame, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/obj/item/explosive/grenade/high_explosive/upp, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"NZ" = ( -/obj/structure/machinery/conveyor, -/obj/structure/machinery/conveyor{ - dir = 6 +"NV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/machinery/cryopod{ + dir = 1 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) -"Ob" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/golden_arrow/cryo_cells) +"NZ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/prop/magazine/book{ + desc = "A booklet provided to anyone ranging from conscripts to normal citizenry. The first page is stamped with the Party's insignia and reminds you that the Party has your best interest in heart; the following pages immensely simplify the Party's doctrine, grossly propagandizes Socialism, and greatly vilifies the United Americas."; + name = "UPP Party Doctrine Booklet"; + pixel_x = 1; + pixel_y = 6 }, /turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/canteen) @@ -3179,110 +3173,149 @@ /turf/closed/wall/strata_outpost/reinforced, /area/space) "Oi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"Ok" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) +/area/golden_arrow/platoon_sergeant) "Om" = ( -/obj/structure/machinery/disposal, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/prep_hallway) -"Op" = ( -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"Oz" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/light, -/obj/item/storage/pouch/shotgun/large, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, -/obj/item/weapon/gun/shotgun/type23, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"OJ" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/turf/open/floor/plating, -/area/golden_arrow/supply) -"OU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 + dir = 10 }, -/turf/open/floor/strata/floor3/east, +/turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) -"Pd" = ( -/obj/structure/machinery/medical_pod/autodoc{ - dir = 1; - pixel_y = 6 +"On" = ( +/obj/structure/machinery/power/monitor{ + name = "Core Power Monitoring" }, -/turf/open/floor/strata/cyan1/east, -/area/golden_arrow/medical) -"Pg" = ( -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101; - unacidable = 1; - unslashable = 1 - }, -/obj/structure/bed/chair, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"Ox" = ( +/obj/structure/foamed_metal, +/obj/structure/foamed_metal, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_commander_rooms) +"Oy" = ( +/obj/structure/machinery/vending/coffee/simple, /turf/open/floor/strata/multi_tiles/west, /area/golden_arrow/briefing) -"Pj" = ( -/obj/structure/machinery/shower{ +"OC" = ( +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/strata/floor2, +/area/golden_arrow/briefing) +"OD" = ( +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/door/window/westleft, -/obj/structure/window/reinforced/tinted/frosted, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/platoon_commander_rooms) -"Po" = ( +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"OG" = ( +/obj/item/prop/colony/used_flare, +/obj/item/prop/colony/used_flare{ + pixel_x = 9; + pixel_y = 10 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"OJ" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/plating, +/area/golden_arrow/supply) +"OM" = ( +/obj/structure/machinery/floodlight/landing/floor, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"ON" = ( /obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"OR" = ( +/obj/structure/barricade/handrail/strata{ dir = 8 }, +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/strata/floor2, /area/golden_arrow/hangar) -"Pu" = ( -/obj/structure/bed/chair/office/dark, +"OS" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/supply) +"Pb" = ( +/obj/structure/machinery/floodlight/landing/floor, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera"; + network = list("Chapaev") + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"Pc" = ( +/obj/structure/machinery/power/apc/almayer/south, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"Pe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/strata/floor2, -/area/golden_arrow/platoon_commander_rooms) -"Pv" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Bathroom" +/area/golden_arrow/dorms) +"Pj" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 4; + icon_state = "lattice-simple"; + pixel_x = 13; + pixel_y = 10 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/platoon_commander_rooms) +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"Pm" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"Pz" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) "PA" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ name = "\improper Hangar Lockdown Blast Door" }, /turf/open/space/basic, /area/golden_arrow/hangar) -"PC" = ( -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/dorms) -"PK" = ( -/obj/structure/reagent_dispensers/fueltank, +"PB" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera"; + network = list("Chapaev") + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"PF" = ( +/obj/structure/surface/rack, +/obj/item/device/motiondetector, +/obj/item/weapon/gun/flamer/underextinguisher, +/obj/item/ammo_magazine/flamer_tank, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"PI" = ( /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) +/area/golden_arrow/platoon_sergeant) +"PM" = ( +/obj/structure/barricade/handrail/strata{ + dir = 1 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/supply) "PN" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"PP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) +/area/golden_arrow/canteen) "PR" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/machinery/camera/autoname/golden_arrow{ @@ -3295,164 +3328,203 @@ }, /turf/open/floor/plating, /area/golden_arrow/cryo_cells) -"PU" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/southeast, +"PT" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3/east, /area/golden_arrow/canteen) -"PX" = ( +"Qg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/supply) -"Qc" = ( -/obj/structure/closet/emcloset, +"Ql" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/rifle/sniper/svd/pve, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/supply) -"Qi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) -"Qm" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/item/tool/hand_labeler{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"Qs" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 +/area/golden_arrow/platoon_sergeant) +"Qo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + dir = 2; + name = "\improper Platoon Sergeant's Bunk"; + req_one_access = null; + req_one_access_txt = "240" }, -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"QB" = ( +/obj/structure/machinery/door/airlock/almayer/command/reinforced{ + name = "\improper Platoon Commander's Office"; + req_access = list(); + req_one_access_txt = "241" }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) -"Qu" = ( -/obj/structure/machinery/light{ - dir = 4 - }, +"QD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 10 }, /turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) -"QA" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +/area/golden_arrow/cryo_cells) +"QN" = ( +/obj/structure/closet/crate/ammo/alt/flame, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/obj/item/explosive/grenade/high_explosive/upp, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"QP" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Infirmary"; + req_one_access = null }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/canteen) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "QR" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/canteen) -"Rb" = ( -/obj/structure/machinery/light, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) +"QT" = ( +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 10 + }, +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = -7; + pixel_y = -1 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"Rd" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera"; + network = list("Chapaev") + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) "Re" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/engineering) -"Rg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +"Rf" = ( +/obj/structure/machinery/autodoc_console{ + dir = 1; + pixel_y = 6 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"Rn" = ( -/obj/structure/machinery/cryopod{ - dir = 1 +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) +"Rt" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8; + name = "ship-grade camera"; + network = list("Chapaev") }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"Rp" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/obj/item/prop/magazine/book{ - desc = "A booklet provided to anyone ranging from conscripts to normal citizenry. The first page is stamped with the Party's insignia and reminds you that the Party has your best interest in heart; the following pages immensely simplify the Party's doctrine, grossly propagandizes Socialism, and greatly vilifies the United Americas."; - name = "UPP Party Doctrine Booklet"; - pixel_x = 11; - pixel_y = 6 +"RC" = ( +/obj/structure/machinery/power/apc/almayer/south, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/synthcloset) +"RK" = ( +/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 = "W"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/closet/secure_closet/marine_personal{ + has_cryo_gear = 0; + job = "Squad Sergeant" + }, +/obj/item/clothing/shoes/marine/upp, +/obj/item/clothing/under/marine/veteran/UPP, +/obj/item/device/radio/headset/distress/UPP, +/obj/structure/machinery/light{ + dir = 8; + invisibility = 101; + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/dorms) -"Rt" = ( -/obj/structure/foamed_metal, -/obj/structure/foamed_metal, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_commander_rooms) -"Rx" = ( -/obj/structure/foamed_metal, +/area/golden_arrow/cryo_cells) +"RM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/landmark/start/marine/smartgunner/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/cryo_cells) +"RS" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/prep_hallway) +"Sa" = ( /obj/structure/foamed_metal, /turf/open/floor/strata/floor3/east, /area/space) -"RC" = ( -/obj/structure/pipes/vents/pump{ +"Sk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/squad_one) -"RD" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"RS" = ( -/turf/open/floor/strata/floor2, -/area/golden_arrow/platoon_commander_rooms) -"RT" = ( -/obj/item/reagent_container/glass/bucket/janibucket, -/turf/open/floor/strata/floor2, -/area/golden_arrow/briefing) -"RY" = ( -/obj/structure/bed/chair/comfy/alpha{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"Sb" = ( -/obj/structure/machinery/cryopod, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_commander_rooms) "Sp" = ( /obj/item/clothing/head/helmet/marine/veteran/bear{ anchored = 1 }, /turf/closed/wall/strata_outpost/reinforced/hull, /area/golden_arrow/platoon_sergeant) -"Su" = ( -/obj/structure/closet/secure_closet{ - name = "machinegunner locker"; - req_access_txt = "243;238" +"St" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/ammo_magazine/pkp, -/obj/item/storage/belt/gun/smartgunner/upp, -/obj/item/storage/belt/marine/smartgunner/upp, -/obj/item/clothing/suit/storage/marine/smartgunner/upp, -/obj/item/clothing/head/helmet/marine/veteran/UPP/heavy, -/obj/item/weapon/gun/pkp/iff, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) "Sx" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -3460,399 +3532,462 @@ }, /turf/open/floor/plating, /area/golden_arrow/prep_hallway) -"SN" = ( -/obj/effect/decal/strata_decals/catwalk/prison, +"SE" = ( +/obj/structure/closet, +/obj/item/clothing/head/uppcap, +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"SM" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + id = "Delta_1"; + name = "\improper Bathroom" + }, /obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/dorms) "SP" = ( /obj/docking_port/stationary/marine_dropship/golden_arrow_hangar{ roundstart_template = /datum/map_template/shuttle/upp }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"SW" = ( -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) +"SV" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/cans/boda{ + pixel_x = -6; + pixel_y = 11 + }, +/obj/item/reagent_container/food/drinks/cans/boda{ + pixel_x = 2; + pixel_y = 11 + }, +/obj/item/reagent_container/food/drinks/cans/boda{ + pixel_x = -3; + pixel_y = 24 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"Te" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/coffee, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) "Tf" = ( /turf/closed/wall/strata_outpost/reinforced, /area/golden_arrow/platoon_sergeant) -"Th" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice8"; - pixel_x = 13; - pixel_y = 10 +"Tj" = ( +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_one) +"Tl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = 7; + pixel_y = 11 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/prep_hallway) -"Tp" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = -7; + pixel_y = 18 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_sergeant) -"Tr" = ( -/turf/closed/wall/strata_outpost/reinforced/hull, -/area/golden_arrow/supply) -"Tu" = ( -/obj/item/stool, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = 5; + pixel_y = 18 }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/cryo_cells) -"Ty" = ( -/obj/item/prop/colony/used_flare, -/obj/item/prop/colony/used_flare{ - pixel_x = 9; +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = -6; pixel_y = 10 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) -"TE" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 17" +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = 1; + pixel_y = 5 }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"TK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ - name = "Akademia Nauk Remote Control Console"; - shuttleId = "dropship_upp" +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = 1; + pixel_y = 13 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/platoon_commander_rooms) -"TN" = ( -/obj/item/newspaper{ - desc = "An issue of Kosmicheskaya Pravda, the newspaper circulating in UPP-controlled space."; - pixel_x = -15; - pixel_y = 34 +/obj/item/reagent_container/food/snacks/upp{ + pixel_x = 10; + pixel_y = 6 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/briefing) +"Tn" = ( +/obj/structure/machinery/cryopod, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera"; + network = list("Chapaev") }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/platoon_commander_rooms) -"TV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) -"Ud" = ( -/obj/structure/machinery/washing_machine, -/obj/structure/machinery/washing_machine{ - layer = 3.5; - pixel_y = 15 +/area/golden_arrow/cryo_cells) +"Tr" = ( +/turf/closed/wall/strata_outpost/reinforced/hull, +/area/golden_arrow/supply) +"TC" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_one_access = list() }, -/obj/item/toy/plush/therapy/green{ - desc = "He seems lonely..."; - layer = 3.6; - name = "Polkovnik Obnimashkin"; - pixel_x = 1; - pixel_y = 26 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/engineering) +"TE" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4; + name = "ship-grade camera"; + network = list("Chapaev") }, -/obj/item/clothing/head/uppcap/ushanka{ - layer = 3.6; - pixel_x = 1; - pixel_y = 30 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, /turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"Uh" = ( -/obj/structure/machinery/light{ +/area/golden_arrow/platoon_commander_rooms) +"TI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/hangar) -"Uq" = ( -/obj/structure/machinery/cm_vending/gear/synth{ - density = 0; - name = "\improper UnTech Synthetic Auxiliary Gear Rack"; - pixel_y = 32 - }, -/obj/item/stool, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/synthcloset) -"Uz" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/crew/alt{ - dir = 1 - }, -/turf/open/floor/strata/cyan1/east, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) -"UE" = ( -/obj/structure/machinery/autodoc_console{ - dir = 1; - pixel_y = 6 +"TR" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 }, -/turf/open/floor/strata/cyan1/east, -/area/golden_arrow/medical) -"UH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/mirror{ + pixel_x = 28 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/platoon_commander_rooms) +"TW" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin, +/obj/item/tool/pen{ + pixel_x = 12 }, -/obj/effect/landmark/start/marine/tl/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join, -/obj/effect/landmark/start/marine/tl/alpha, -/obj/effect/landmark/start/marine/tl, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/cryo_cells) -"UI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/obj/item/prop/tableflag/upp{ + pixel_x = 6; + pixel_y = 15 }, -/obj/effect/landmark/start/marine/upp, -/obj/effect/landmark/late_join/upp, -/obj/effect/landmark/late_join, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"UJ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/area/golden_arrow/briefing) +"Ub" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ammo_magazine/minigun{ + desc = "A huge ammo drum for a huge gun. Your platoon got issued with magazines first which happened several months ago. When will the miniguns come, you wonder?"; + name = "GSh-7.62 rotating ammo drum (7.62x51mm)"; + pixel_x = 6; + pixel_y = 8 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_commander_rooms) -"UP" = ( -/obj/effect/decal/strata_decals/catwalk/prison, -/obj/structure/bed/chair/office/light, -/turf/open/floor/plating, -/area/golden_arrow/platoon_sergeant) -"UQ" = ( -/obj/structure/surface/rack, -/obj/item/device/motiondetector, -/obj/item/weapon/gun/flamer/underextinguisher, -/obj/item/ammo_magazine/flamer_tank, +/obj/item/reagent_container/food/drinks/dry_ramen, /turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"UT" = ( -/obj/structure/stairs/perspective{ - color = "#6e6e6e"; - icon_state = "p_stair_sn_full_cap"; - layer = 2.5 +/area/golden_arrow/squad_one) +"Uf" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/strata/floor2, +/area/golden_arrow/platoon_commander_rooms) +"Um" = ( +/obj/structure/bookcase{ + density = 0; + icon_state = "book-5"; + pixel_x = 2; + pixel_y = 18 }, -/obj/structure/platform/strata/metal{ - dir = 4 +/obj/item/book/codebook/upp, +/obj/item/prop/magazine/book{ + desc = "It's not a mandatory reading material in UPP, but it's still encouraged to memorize certain quotes from this book."; + name = "Communist Manifesto"; + pixel_y = 35 }, -/obj/structure/machinery/light{ +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"UP" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/bed/chair/office/light, +/turf/open/floor/plating, +/area/golden_arrow/platoon_sergeant) +"Vb" = ( +/obj/structure/machinery/medical_pod/sleeper{ dir = 8; - invisibility = 101 + pixel_y = 6 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) +/turf/open/floor/strata/cyan1/east, +/area/golden_arrow/medical) "Vc" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = -10; - pixel_y = -7 - }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = -1; - pixel_y = 2 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/item/reagent_container/food/snacks/upp{ - pixel_x = -7; - pixel_y = -2 +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) +"Vh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"Vr" = ( +/obj/structure/machinery/disposal, /turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/briefing) -"Vh" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, +/area/golden_arrow/prep_hallway) +"Vx" = ( +/obj/structure/closet/crate/construction, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/obj/item/stack/sandbags_empty/half, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/engineering) +"Vy" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4 + }, /turf/open/floor/strata/floor2, /area/golden_arrow/hangar) -"Vi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +"VF" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/platoon_commander_rooms) -"Vn" = ( -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_one) -"Vr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/dorms) +"VJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/megaphone, /turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) -"Vt" = ( -/obj/structure/machinery/light, +"VK" = ( +/obj/structure/bed/chair, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 + dir = 4 }, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"VI" = ( -/obj/structure/barricade/handrail/strata{ - dir = 4 +/area/golden_arrow/platoon_sergeant) +"VR" = ( +/obj/structure/machinery/washing_machine, +/obj/structure/machinery/washing_machine{ + layer = 3.5; + pixel_y = 15 }, -/obj/structure/machinery/line_nexter{ - dir = 2; - icon_state = "turnstile_strata"; - layer = 4.1 +/obj/item/toy/plush/therapy/green{ + desc = "He seems lonely..."; + layer = 3.6; + name = "Polkovnik Obnimashkin"; + pixel_x = 1; + pixel_y = 26 }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/canteen) -"VJ" = ( -/obj/structure/cargo_container/horizontal/blue/bottom{ - opacity = 0; - pixel_x = 17 +/obj/item/clothing/head/uppcap/ushanka{ + layer = 3.6; + pixel_x = 1; + pixel_y = 30 }, /turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) +/area/golden_arrow/dorms) +"VT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony{ + name = "\improper Private Briefing Room"; + req_one_access = null; + req_one_access_txt = "240;244;241" + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"Wb" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1; + name = "ship-grade camera"; + network = list("Chapaev") + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/canteen) "Wf" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/plating, /area/golden_arrow/briefing) -"Wn" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - name = "\improper Squad Two Armoury"; - req_one_access = null; - req_one_access_txt = "231;240;238" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +"Wg" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/prep_hallway) +"Ww" = ( +/obj/structure/janitorialcart, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -7; + pixel_y = 8 }, /turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"Wo" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/prop/magazine/book{ - name = "UPP Party Doctrine Booklet" - }, -/obj/item/prop/tableflag/upp{ - pixel_x = 6; - pixel_y = 1 - }, -/turf/open/floor/strata/floor3/east, /area/golden_arrow/briefing) "Wy" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clipboard{ - pixel_x = 4 +/obj/structure/machinery/light{ + dir = 4 }, -/obj/item/reagent_container/pill/cyanide{ - icon_state = "pill5"; - name = "cyanide pill"; - pixel_x = -8; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/platoon_commander_rooms) +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) "WI" = ( /obj/effect/decal/strata_decals/catwalk/prison, /obj/effect/decal/cleanable/blood/oil, /obj/structure/prop/invuln/overhead_pipe, /turf/open/floor/plating, /area/golden_arrow/engineering) +"WX" = ( +/obj/structure/machinery/power/apc/almayer/east, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) "WZ" = ( /obj/effect/decal/strata_decals/catwalk/prison, /turf/open/floor/plating, /area/golden_arrow/platoon_sergeant) -"Xc" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4 +"Xv" = ( +/obj/structure/bed{ + can_buckle = 0 + }, +/obj/item/bedsheet/brown{ + layer = 3.4 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/platoon_sergeant) +"XC" = ( +/obj/item/clothing/shoes/slippers_worn{ + pixel_y = 16 + }, +/turf/open/floor/strata/floor2, +/area/golden_arrow/dorms) +"XE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/prep_hallway) +"XJ" = ( +/obj/structure/machinery/light, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"XM" = ( +/obj/structure/largecrate{ + pixel_x = 6 + }, +/obj/structure/largecrate{ + layer = 3.1; + pixel_x = 15; + pixel_y = 18 }, /turf/open/floor/strata/floor2, /area/golden_arrow/hangar) -"Xo" = ( -/obj/item/trash/plate, +"XR" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + name = "ship-grade camera"; + network = list("Chapaev") + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/supply) +"XU" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/prep_hallway) +"Yg" = ( /obj/item/trash/ceramic_plate{ - pixel_x = 6; + pixel_x = -6; pixel_y = 19 }, /obj/item/trash/ceramic_plate{ - pixel_x = 6; + pixel_x = -6; pixel_y = 21 }, /obj/item/trash/ceramic_plate{ - pixel_x = 5; + pixel_x = -5; pixel_y = 23 }, /obj/structure/surface/table/reinforced/almayer_B, -/turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/canteen) -"Xr" = ( -/obj/structure/machinery/computer/overwatch/almayer{ - density = 1; - faction = "UPP" - }, -/obj/item/clothing/glasses/hud/health{ - pixel_x = 7; - pixel_y = 17 - }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/platoon_commander_rooms) -"Xy" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/reagent_container/food/snacks/beetsoup, /obj/item/reagent_container/food/drinks/tea{ - pixel_x = 8; - pixel_y = 7 + pixel_x = -8; + pixel_y = -1 }, /turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/canteen) -"XH" = ( -/obj/structure/barricade/handrail/strata{ - dir = 8 +"Yr" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/bottle/vodka{ + pixel_x = -6; + pixel_y = 13 }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"XW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/reagent_container/food/drinks/flask/canteen, +/obj/item/reagent_container/food/drinks/flask/canteen{ + pixel_x = -6 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/platoon_sergeant) +"Ys" = ( +/obj/structure/closet/secure_closet{ + name = "machinegunner locker"; + req_access_txt = "243;238" }, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/ammo_magazine/pkp, +/obj/item/storage/belt/gun/smartgunner/upp, +/obj/item/storage/belt/marine/smartgunner/upp, +/obj/item/clothing/suit/storage/marine/smartgunner/upp, +/obj/item/clothing/head/helmet/marine/veteran/UPP/heavy, +/obj/item/weapon/gun/pkp/iff, +/turf/open/floor/strata/floor2, +/area/golden_arrow/squad_two) +"Yw" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; - pixel_x = -1 + pixel_x = -1; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/closet/secure_closet/marine_personal{ - has_cryo_gear = 0; - job = "Squad Sergeant" +/obj/effect/landmark/start/marine/tl/upp, +/obj/effect/landmark/late_join/upp, +/obj/effect/landmark/late_join, +/obj/effect/landmark/start/marine/tl/alpha, +/obj/effect/landmark/start/marine/tl, +/turf/open/floor/strata/multi_tiles/west, +/area/golden_arrow/cryo_cells) +"YB" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4 }, -/obj/item/clothing/shoes/marine/upp, -/obj/item/clothing/under/marine/veteran/UPP, -/obj/item/device/radio/headset/distress/UPP, -/obj/structure/machinery/light{ - dir = 8; - invisibility = 101; - unacidable = 1; - unslashable = 1 +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/hangar) +"YE" = ( +/obj/structure/closet/secure_closet/surgical{ + pixel_x = -30 + }, +/obj/structure/closet/fireaxecabinet{ + pixel_y = 29 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/golden_arrow/synthcloset) +"YQ" = ( +/obj/structure/machinery/conveyor, +/obj/structure/pipes/standard/cap/hidden/supply{ + dir = 8 }, /turf/open/floor/strata/floor3/east, -/area/golden_arrow/cryo_cells) -"XZ" = ( -/obj/structure/toilet{ - dir = 4 +/area/golden_arrow/supply) +"YV" = ( +/obj/structure/bed/chair/comfy/alpha{ + dir = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/platoon_commander_rooms) -"Ye" = ( -/obj/structure/machinery/door_control{ - id = "chapaev_engi"; - pixel_y = -23 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/strata/floor3/east, +/area/golden_arrow/briefing) +"Za" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 }, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) -"Yg" = ( +/area/golden_arrow/canteen) +"Zn" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 @@ -3877,172 +4012,38 @@ /obj/item/device/radio/headset/distress/UPP, /turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"Yj" = ( -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"Yv" = ( -/obj/structure/window/reinforced{ - dir = 4; - pixel_x = -2; - pixel_y = 4 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 3.3; - pixel_y = 4 - }, -/obj/structure/bed{ - can_buckle = 0 - }, -/obj/structure/bed{ - buckling_y = 13; - layer = 3.5; - pixel_y = 13 - }, -/obj/item/bedsheet/brown{ - layer = 3.4 - }, -/obj/item/bedsheet/brown{ - pixel_y = 13 - }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/dorms) -"Yw" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - name = "ship-grade camera"; - network = list("Chapaev") - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/briefing) -"Yz" = ( +"Zr" = ( +/obj/structure/surface/rack, /obj/structure/machinery/light, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) -"YG" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/gun_rack/type71/unloaded, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"YK" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) -"YN" = ( -/obj/structure/largecrate{ - pixel_x = -7 - }, -/obj/structure/largecrate{ - pixel_x = -18; - pixel_y = 18 - }, +/obj/item/storage/pouch/shotgun/large, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/ammo_magazine/handful/shotgun/heavy/buckshot/special, +/obj/item/weapon/gun/shotgun/type23, /turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"YP" = ( -/obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep/upp, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/platoon_sergeant) -"YQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/strata/multi_tiles/west, -/area/golden_arrow/prep_hallway) -"YV" = ( -/obj/structure/machinery/door/airlock/almayer/maint/colony{ - dir = 1; - name = "\improper Canteen"; - req_one_access = null - }, -/obj/structure/pipes/standard/simple/hidden/supply, +/area/golden_arrow/squad_one) +"ZD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/snacks/bearmeat, /turf/open/floor/strata/multi_tiles/southeast, /area/golden_arrow/canteen) -"YY" = ( -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/platoon_commander_rooms) -"Zg" = ( -/obj/structure/machinery/light{ +"ZR" = ( +/obj/structure/machinery/cryopod{ dir = 1 }, -/obj/structure/pipes/vents/pump{ +/obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/strata/floor3/east, /area/golden_arrow/cryo_cells) -"Zq" = ( -/obj/structure/largecrate, -/obj/structure/largecrate{ - layer = 3.1; - pixel_x = 11; - pixel_y = 16 - }, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/supply) -"Zs" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/turf/open/floor/strata/floor2, -/area/golden_arrow/platoon_commander_rooms) -"Zu" = ( -/obj/structure/closet, -/obj/item/clothing/mask/cigarette/weed, -/obj/item/clothing/head/bearpelt, -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/engineering) -"Zx" = ( -/obj/structure/surface/rack, -/obj/item/clothing/mask/gas{ - pixel_x = -5; - pixel_y = 10 - }, -/obj/item/stack/sheet/glass{ - amount = 50 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - desc = "Phoron is an extremely rare mineral with exotic properties, often used in cutting-edge research. Just getting it into a stable, solid form is already hard enough. Handle with care."; - pixel_y = -9 - }, -/obj/structure/machinery/light{ - dir = 8 - }, +"ZY" = ( +/obj/structure/machinery/light, /turf/open/floor/strata/multi_tiles/southeast, -/area/golden_arrow/engineering) -"Zy" = ( -/obj/item/trash/cigbutt/bcigbutt, -/turf/open/floor/strata/floor2, -/area/golden_arrow/hangar) -"Zz" = ( -/obj/structure/closet/secure_closet{ - name = "squad sergeant locker"; - req_access_txt = "244;238" - }, -/obj/item/clothing/accessory/armband, -/obj/item/device/whistle, -/obj/item/device/binoculars/range/designator, -/obj/item/weapon/gun/rifle/type71/flamer, -/turf/open/floor/strata/floor2, -/area/golden_arrow/squad_two) -"ZF" = ( -/turf/open/floor/strata/floor3/east, /area/golden_arrow/platoon_sergeant) -"ZK" = ( -/turf/open/floor/strata/floor3/east, -/area/golden_arrow/medical) -"ZL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"ZS" = ( -/turf/open/floor/strata/floor2, -/area/golden_arrow/briefing) (1,1,1) = {" mV @@ -10359,8 +10360,8 @@ mV mV hE Tf -YP -wk +nt +pd hE hE hE @@ -10510,11 +10511,11 @@ hE hE Sp hE -EN -ZF +Um +th WZ -ZF -iU +th +mW hE mV mV @@ -10659,14 +10660,14 @@ mV mV hE hE -gy -jK -Ju -jK +jW +Oi +Qo +Oi fc -CN +Cr UP -Am +Df hE mV mV @@ -10810,15 +10811,15 @@ mV mV mV hE -cC -ZF -oD +oG +th +vT Tf -kp -jE -Ls -Ig -Md +rM +aB +lL +Rd +qA hE mV mV @@ -10963,11 +10964,11 @@ ei ei ei ww -BE +Xv Tf Tf Tf -FO +fK Tf NU NU @@ -11111,21 +11112,21 @@ mV mV ei ei -HV -ax -HV +hL +jU +hL ww ww Tf -PN -PN -BH -PN +PI +PI +GX +PI NU NU -dP -GH -dP +Eo +aR +Eo od od mV @@ -11262,23 +11263,23 @@ tZ tZ tZ ei -NP -Vn -Vn -Vn -ID +dQ +Tj +Tj +Tj +zd ww -PN -PN -xY -BH -uO +PI +PI +tM +GX +AO NU -tS -sR -sR -sR -LZ +SV +Im +Im +Im +tL IS IS IS @@ -11399,9 +11400,9 @@ oB oB oB oB -Vh -hT -nC +ta +ox +FT oB oB tZ @@ -11411,32 +11412,32 @@ tZ tZ tZ tZ -Wy -Sb +BA +Io ww -Ai -Vn +Ub +Tj xZ -Vn -oO +Tj +ao ww -Fq -fT -bW -jP -lB +LR +pL +gd +xw +ZY NU -DF -sR +eJ +Im ML -sR -UQ +Im +PF CM -Ud -fk -Yv -fY -xN +VR +bB +tf +OD +zD IS mV mV @@ -11543,52 +11544,52 @@ mV mV oB oB -EU -EU -Po -EU -EU -EU +aQ +aQ +xH +aQ +aQ +aQ yH -hy -EU -hl -EU -LF +qq +aQ +dw +aQ +EG yH -ND -Rt +DW +Ox os -XZ -TN +wI +KV os -pb -wG -rY +Dz +AD +sH ww -Kq -Vn -RC -Vn -Oz +fV +Tj +gB +Tj +Zr ww -Bh -kZ -kZ -pT -PN +gH +bb +bb +VK +PI NU -YG -sR -zm -sR -ko +rU +Im +oe +Im +iV CM -ap -oU -Yv -NM -Yv +Db +Fu +tf +Bm +tf IS mV mV @@ -11694,53 +11695,53 @@ mV mV mV oB -EU -EU -EU -EU -EU -EU -EU +aQ +aQ +aQ +aQ +aQ +aQ +aQ yH -XH -EU -EU -EU -Rb +OR +aQ +aQ +aQ +Fq yH -ND -Rt +DW +Ox os -DR -YY -Pv -pg -ok -pg +xR +Jn +Ha +xf +NN +xf ww -MK -Vn +KC +Tj MH -Vn -nW +Tj +Dk ww -on -PN -kQ -BH -PN +Ql +PI +zG +GX +PI NU -Su -sR +Ys +Im Jt -sR -jY +Im +uS CM -oK -oU -NM -KW -tf +iP +Fu +Bm +VF +SE IS IS IS @@ -11846,57 +11847,57 @@ mV mV mV oB -EU -EU -EU -EU -EU -EU -EU +aQ +aQ +aQ +aQ +aQ +aQ +aQ yH -pu -EU -EU -EU -EU +vj +aQ +aQ +aQ +aQ yH -ND -Rt +DW +Ox os -Pj -mw +NB +TR os -hc -UJ -za +Dl +qG +BS ww -rX -zS -rt -Ba -NY +dP +ih +cM +PB +Ds ww -lv -PN -Tp -wE -bT +bE +PI +nx +jZ +Yr NU -Zz -GK -kL -MG -mI +lq +oc +HQ +LV +QN CM -gr -Qm -Yv -jt -Yv +Ig +Kj +tf +xa +tf CM -IV +Bl CM -Rp +ey IS mV mV @@ -11998,57 +11999,57 @@ mV mV mV oB -EU -EU -EU -EU -EU -EU -EU +aQ +aQ +aQ +aQ +aQ +aQ +aQ yH -hy -EU -EU -EU -LF +qq +aQ +aQ +aQ +EG yH -ND -Rt +DW +Ox os os os os -CP +GJ os os ww ww ww -we +Fx ww ww ww Tf Tf -rD +nG Tf Tf NU NU NU -Wn +na NU NU CM CM -MA -Yv -jt -Yv +Cc +tf +xa +tf CM -KU +dl CM -KU +dl IS mV mV @@ -12159,48 +12160,48 @@ yH yH yH yH -Xc -Xc -Xc +Vy +Vy +Vy yH yH yH -ND +DW os -TK -RS -nx -Vi -zk +lH +au +vR +aL +TE os -wp -wW +Dm +ky Fm Sx MO -uS -uS -uS +XE +XE +XE MO NA MO -uS -uS -Jk +XE +XE +GK nF Sx MO -SN -Qi -eV -Av -Av -Oi -Av -tQ -Em -Lc -PC +ps +kg +qo +Pe +Pe +da +Pe +SM +oY +ja +HF IS mV mV @@ -12297,62 +12298,62 @@ mV mV oB oB -oc -Jm -Jm -Jm -Jm -oc -Ty -hO -qQ -qQ -qQ -cX -qQ -qQ -qQ -qQ -qQ -Ml -lm +Ap +kU +kU +kU +kU +Ap +OG +Ju +iJ +iJ +iJ +wE +iJ +iJ +iJ +iJ +iJ +OM +Vh yH -ND +DW os -uu -Pu -xF -Zs -hm -uC -uS -uS -Qu -Eq -oW -wd -oW -oW -YQ -et -oW -oW -oW -oW -GG -oW -oW -oW -vD +Gr +Uf +EK +bm +gp +ri +XE +XE +Wy +vw +yI +WX +yI +yI +yM +kA +yI +yI +yI +yI +Pj +yI +yI +yI +XU CM -NM -Yv -Ks -Yv +Bm +tf +XC +tf CM -JD -JD -JD +bZ +bZ +bZ IS mV JE @@ -12448,7 +12449,7 @@ mV mV mV PA -Jm +kU wq wq wq @@ -12467,18 +12468,18 @@ wq wq wq wq -mS +jB yH -ND +DW os -Xr -RS -Lh -lt -RS +xC +au +Ix +lB +au os -gG -mK +Vr +go cT cT cT @@ -12486,28 +12487,28 @@ cT cT cT cT -rJ +IW cT cT -Hh -Hh -Th -nw -jH -jH -Om +sl +sl +Jd +Wg +RS +RS +AR CM -xM -Yv -KG -pc +pm +tf +PN +Kq iO iO iO iO zX zX -IO +CL jG mV mV @@ -12600,7 +12601,7 @@ mV mV mV PA -Jm +kU wq wq wq @@ -12619,12 +12620,12 @@ wq wq wq wq -hS +No fh fh fh fh -sl +QB fh fh fh @@ -12632,14 +12633,14 @@ fh fh cT cT -qS -AL -dr -FW -uX -Dn -Ob -Fe +gG +pJ +LU +NZ +Yg +Za +Fd +ME cT iO iO @@ -12654,12 +12655,12 @@ iO iO iO iO -RD -aK -RD +io +fF +io iO iO -gI +Cb jG mV mV @@ -12752,7 +12753,7 @@ mV mV mV PA -Jm +kU wq wq wq @@ -12771,45 +12772,45 @@ wq wq wq wq -mS +jB fh -Yj -Yj -UT -Yj -eQ -eQ -Qs -Yj -uW +LH +LH +xM +LH +gb +gb +Na +LH +IH cT -eU -QA -Fe -dr -Xy -pF -Dn +xB +AQ +ME +LU +zu +ya +Za EA -Db +Wb cT -ng -ng -XW -ng -Yg +uD +uD +RK +uD +Zn iO -zZ +kK AS AS AS -jA +vK iO -rz -in -LB -in -RD +Tn +vZ +bF +vZ +io iO JA jG @@ -12904,7 +12905,7 @@ mV mV mV PA -Jm +kU wq wq wq @@ -12923,50 +12924,50 @@ wq wq wq wq -qv -hY +yZ +jL Mb -Yj -fb -gv -eQ -eQ -eQ -Yj -Yj +LH +VJ +lb +gb +gb +gb +LH +LH cT -eU -fw -Fe -Fe +xB +JR +ME +ME ip -PU -Fe +pa +ME EA -Fe -Fw -ch -ch -lC -ch -ch -kz -dh +ME +II +Et +Et +tW +Et +Et +ik +oo CJ CJ CJ -dh -lM -UH -dG -lR -fW -Me +oo +Eq +Yw +mn +NV +DF +RM iO -rI +fk jG jG -ne +kz jG jG jG @@ -12977,9 +12978,9 @@ jG jG jG jG -xd -Zx -co +pz +ID +Vx jG jG jG @@ -13056,7 +13057,7 @@ mV mV mV PA -Jm +kU wq wq wq @@ -13075,68 +13076,68 @@ wq wq wq wq -hO -Bm +Ju +LS Id -Yj -It -nU +LH +LE +BW fq bN bN -Vr -cG +EX +Pc cT -eU -fw -Fe +xB +JR +ME QR -jz +PT ph -im -lX -Vt +PP +dh +Mf cT ga cR -sB +ut cR PR iO -pG +LW iO iO iO -Zg -Ok +nM +Ke xe Ez -lC +tW sp cR us Re -TV +Pm Ac -LS +Jl yj -pP +Fj jG mV mV jG -LR -ow +On +vB vb -tL -Ns -Ns -ux +KY +sL +sL +JD vb -mn -te -HT -te +Ca +qH +si +qH jG mV mV @@ -13208,7 +13209,7 @@ mV mV mV PA -Jm +kU wq wq wq @@ -13227,47 +13228,47 @@ wq wq wq wq -xT -Rg +wW +yE KN -Yj -xE -gv -RY -eQ -eQ -Yj -OU +LH +TW +lb +Cw +gb +gb +LH +Ea cT -eU -fw -Fe -Fe +xB +JR +ME +ME lo -at -Fe +sF +ME EA -pj -YV -Tu -wF -Km -ch -kY -kz -Jh +Vc +mM +Ls +vi +IP +Et +QD +ik +Sk oX oX oX -cx -eq -kE -UI -rw -UI -KT +wm +Dv +yn +zk +hp +zk +tE iO -rI +fk vb vb Kc @@ -13277,15 +13278,15 @@ jG mV mV jG -BW -fd +rF +wP vb -FK -yO -Hw -Ns +MF +oL +bM +sL vb -wN +CN FY Lt wy @@ -13360,7 +13361,7 @@ mV mV mV PA -Jm +kU wq wq wq @@ -13379,68 +13380,68 @@ wq wq wq wq -mS +jB fh -fL -Vr -be -xl -lk -eQ -gB -Yj -OU +gY +EX +uH +aN +YV +gb +rw +LH +Ea cT -eU -VI -Fe -dr -GD -hA -Dn +xB +uY +ME +LU +gW +ZD +Za EA -Fe +ME cT -ng -ng -yd -hb -GM +uD +uD +GO +lw +Nc iO -pI +Rt CJ CJ CJ -dh +oo iO -Rn -in -nM -in -Rn +ex +vZ +uT +vZ +ex iO BD vb -Zu -wN +BU +CN jG mV mV mV mV jG -xH +cS Kc -jZ -Ns +ro +sL Kc -qE -Ns -sT -wN -wN -wN -Yz +QT +sL +ti +CN +CN +CN +im jG mV mV @@ -13512,7 +13513,7 @@ mV mV mV PA -Jm +kU wq wq wq @@ -13531,27 +13532,27 @@ wq wq wq wq -mS +jB fh fh fh fh -yx +VT fh fh fh -Ci -iG +yr +xQ cT cT -hv -mM -dr -ER -Xo -Dn -Ob -Fe +Ip +iy +LU +Te +rB +Za +Fd +ME cT iO iO @@ -13566,12 +13567,12 @@ iO iO iO iO -Rn -Lb -Rn +ex +ZR +ex iO iO -rI +fk vb vb WI @@ -13581,15 +13582,15 @@ mV mV mV jG -Ak -EZ +IF +hc vb -FK -Ns -mQ -Ye +MF +sL +yx +dq vb -wN +CN fA dT vL @@ -13664,7 +13665,7 @@ mV mV mV PA -Jm +kU wq wq wq @@ -13683,18 +13684,18 @@ wq wq wq wq -mS +jB yH -ka +Sa fh -Yj -OU -Yj -Yj +LH +Ea +LH +LH fh -Ci -ME -Ci +yr +lC +yr cT cT cT @@ -13702,49 +13703,49 @@ cT cT cT cT -rJ +IW cT cT -vm -Pg -Na -bx -Vc -Nt -rT +Oy +jQ +Tl +zw +nL +hC +vc vN -DZ -dJ -rM -Qc +zS +Kl +bX +Fg iO zX zX zX zX zX -IO +CL jG vb -wN +CN Kc jG mV mV mV jG -Gf -Cl +Hd +TC vb -sO -Ns -Ns -Ns +Km +sL +sL +sL vb -Mr -te -CG -te +ma +qH +JQ +qH jG mV mV @@ -13817,69 +13818,69 @@ mV mV oB oB -Uh -Jm -bk -Jm -Jm -fx -Jm -hO -qQ -qQ +ON +kU +Pz +kU +kU +Pb +kU +Ju +iJ +iJ Hq -Ml -qQ -qQ -qQ -qQ -qQ -Ml -uN +OM +iJ +iJ +iJ +iJ +iJ +OM +ev yH -ka +Sa fh -Yw -gM -Yj -Yj +pM +le +LH +LH fh -ho -nJ -Ci -gO -Ci -Ci -hz -Ci -Ci -gO -CA -Ci -Ci -Ci -Ci -Ci -DJ -Ci -aR -de -oo -DU -DU +hS +Cm +yr +bO +yr +yr +Es +yr +yr +bO +Gc +yr +yr +yr +yr +yr +ke +yr +yN +Kz +zJ +Qg +Qg Ao -PX -zQ -Gb -Nr -Nr -Nr -Nr -jw -zh +OS +PM +kS +iR +iR +iR +iR +YQ +fv jG jG -ne +kz jG mV mV @@ -13889,9 +13890,9 @@ jG jG jG jG -jy -fU -PK +LB +St +id jG jG jG @@ -13983,52 +13984,52 @@ yH yH yH yH -DY -DY -DY +YB +YB +YB yH yH yH -ka +Sa fh -AQ -AQ -AQ -CY +bQ +bQ +bQ +XJ fh -Yj -bP +LH +Om bN bN cL -de -if -de -de +Kz +Lb +Kz +Kz bN Wf bN -de -wL +Kz +MT bN bN bN -de -xI -gM +Kz +hi +le vN -tl +XR OJ -dq +Ec OJ -SW +KI Tr vN vN vN vN vN -ws +qy Tr mV mV @@ -14126,61 +14127,61 @@ mV mV mV oB -EU -EU -EU -EU -EU -EU -EU +aQ +aQ +aQ +aQ +aQ +aQ +aQ yH -ec -EU -EU -EU -EU +XM +aQ +aQ +aQ +aQ yH -ka -Rx +Sa +wk fh -yQ -It -Wo -Yj +tp +LE +if +LH fh -rO +kp wV wV -BF +JH wV wV CK CK CK CK -jb +QP CK CK CK CK -wi +aO CK CK -zv +bS fh vN -Du -PX +GP +OS OJ -PX -zQ -Gb -Nr -Nr -Nr -Nr -Nr -NZ +OS +PM +kS +iR +iR +iR +iR +iR +Ee Tr mV mV @@ -14278,53 +14279,53 @@ mV mV mV oB -EU -EU -EU -EU -EU -EU -EU +aQ +aQ +aQ +aQ +aQ +aQ +aQ yH -IY -EU -jm -EU -EU +on +aQ +kN +aQ +aQ yH -ka -Rx +Sa +wk fh -Yj -BP -Yj -Yj +LH +Lg +LH +LH fh fh wV -bh -LK -uF +YE +cO +wn wV +pl je -AN -fo -Kh -ZL -Lz -NK +Nj +IX +TI +lO +oV CK -ZK -ZK -CR +nk +nk +gf CK -ZS -Hu +xu +gs vN vN -yK -yK -yK +rd +rd +rd vN Tr Tr @@ -14332,7 +14333,7 @@ Tr Tr Tr Tr -ws +qy Tr mV mV @@ -14430,61 +14431,61 @@ mV mV mV oB -EU -EU -EU -EU -EU -EU -EU +aQ +aQ +aQ +aQ +aQ +aQ +aQ yH -YN -Zy -tr -EU -Aw +qS +CH +yR +aQ +ub yH -ka -Rx +Sa +wk fh fh fh fh fh fh -ka +Sa wV -Uq -LK -LG +IZ +cO +pU wV -cr -Op -Op -po -rG -yG -yG -Js -kI -zL -Uz +jd +rH +rH +wl +yJ +uo +uo +bD +pN +MM +iT CK -eF -IH +tQ +cX vN -Ne -yU -yU -yU -SW +nP +JF +JF +JF +KI Tr mV mV mV mV Tr -ws +qy Tr mV mV @@ -14583,60 +14584,60 @@ mV mV oB oB -EU -EU -EU -EU -EU -EU +aQ +aQ +aQ +aQ +aQ +aQ yH -Lu -pK -yp -VJ -oL +Nl +ll +Gp +MQ +gQ yH -ka -Rx +Sa +wk Of -ka -ka -ka -ka -ka -ka +Sa +Sa +Sa +Sa +Sa +Sa wV -Dd -LK -ys +LZ +cO +RC wV -KV -Op -bQ -Op -UE -Op -UE +Ie +rH +Kn +rH +Rf +rH +Rf CK -dR -ZK -wf +fx +nk +hw CK -JS -RT +Ww +OC vN -Zq -SW -SW -SW -SW +xy +KI +KI +KI +KI Tr mV mV mV mV Tr -ws +qy Tr mV mV @@ -14743,52 +14744,52 @@ oB oB oB oB -EU -Ek -EU +aQ +xF +aQ oB oB pQ pQ pQ -ka -ka -ka -ka -ka -Rx +Sa +Sa +Sa +Sa +Sa +wk wV -ll -zn -wj +ef +lJ +ep wV -fN -Op -zY -nu -Pd -sc -Pd +Vb +rH +IE +Bi +hf +Gf +hf CK -CE -yZ -iQ +jY +wf +bW CK -vI -vI +mO +mO vN -sd -YK -Ka -kv -SW +wp +HM +GR +hM +KI Tr mV mV mV mV Tr -ws +qy Tr mV mV @@ -17347,11 +17348,11 @@ mV mV mV mV -TE -TE -TE -TE -TE +rt +rt +rt +rt +rt mV mV mV @@ -17499,11 +17500,11 @@ mV mV mV mV -TE +rt cc -TE -TE -TE +rt +rt +rt mV mV mV @@ -17651,11 +17652,11 @@ mV mV mV mV -TE -TE -TE -TE -TE +rt +rt +rt +rt +rt mV mV mV diff --git a/maps/map_files/golden_arrow/golden_arrow.dmm b/maps/map_files/golden_arrow/golden_arrow.dmm index dc8495c25b..d0ad437524 100644 --- a/maps/map_files/golden_arrow/golden_arrow.dmm +++ b/maps/map_files/golden_arrow/golden_arrow.dmm @@ -1,13 +1,26 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"ag" = ( -/obj/vehicle/powerloader{ - dir = 4 +"ac" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"ad" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood{ + density = 0; + pixel_y = 24; + req_access = list() }, -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/medical) +"ag" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "weapons_conny"; + name = "\improper Squad Two Weapons Locker"; + pixel_y = -4 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonarmory) "ak" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -15,6 +28,28 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) +"an" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "apcbayrailing1" + }, +/turf/open/floor/almayer/black/east, +/area/golden_arrow/hangar) +"ap" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) "ar" = ( /obj/structure/machinery/light{ dir = 1 @@ -42,36 +77,26 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"aw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +"ax" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"ay" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"ax" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Prep Lockers" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"az" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + name = "\improper Storage Bay Blast Door" }, /turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonprep) -"ay" = ( -/obj/structure/stairs/perspective, -/obj/structure/platform{ - dir = 4; - layer = 2.7 - }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/golden_arrow/hangar) "aB" = ( /obj/effect/decal/cleanable/dirt, @@ -106,15 +131,40 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/dorms) +"aK" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"aL" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/medical/bruise_pack{ + pixel_x = -12; + pixel_y = 7 + }, +/obj/item/stack/medical/ointment{ + pixel_x = 2; + pixel_y = 12 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "aM" = ( -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = -7 +/obj/structure/ship_ammo/rocket/widowmaker, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"aO" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/obj/structure/closet/secure_closet/marine_personal{ - pixel_x = 8 +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/cargo, +/area/golden_arrow/briefing) "aP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -125,32 +175,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonarmory) -"aQ" = ( -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 1; - name = "\improper Platoon Commander's Office"; - req_access = list(); - req_one_access_txt = "19;12" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoon_commander_rooms) "aR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/platoonarmory) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "aS" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/cable/heavyduty{ @@ -159,21 +194,14 @@ /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) "aT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"aV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Dorms" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/turf/open/floor/almayer/cargo_arrow/east, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/dorms) "aW" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -240,27 +268,17 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "bh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 21 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "bi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) +/obj/structure/machinery/door/poddoor/almayer, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/prep_hallway) "bj" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -300,12 +318,15 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "bo" = ( -/obj/structure/closet/secure_closet/engineering_electrical{ - req_one_access = null +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "bp" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -321,29 +342,39 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"bx" = ( -/turf/closed/wall/almayer, -/area/golden_arrow/dorms) -"bz" = ( -/turf/open/floor/almayer/uscm/directional/up_down/northeast, -/area/golden_arrow/hangar) -"bD" = ( -/obj/structure/largecrate/supply/medicine/medkits{ - pixel_x = -11; - pixel_y = 9 +"bu" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Cryo Bay" }, -/obj/structure/largecrate/supply/medicine/medkits{ - pixel_x = 14; +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/cryo_cells) +"bw" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/comp_open{ + pixel_x = -12; pixel_y = 9 }, -/obj/structure/largecrate/supply/medicine/medkits{ - layer = 3.1; +/obj/item/reagent_container/food/drinks/cans/souto/diet{ pixel_x = 8; - pixel_y = 24 + pixel_y = 11 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, +/obj/item/trash/chips{ + layer = 2.7; + pixel_y = -9 + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"bx" = ( +/turf/closed/wall/almayer, +/area/golden_arrow/dorms) "bE" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -371,16 +402,6 @@ name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"bH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) "bI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -392,31 +413,18 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonprep) "bJ" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - name = "\improper Storage Bay Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"bK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/dorms) +"bL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/cable{ + icon_state = "4-8" }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"bM" = ( -/obj/structure/prop{ - color = "#b30000"; - icon = 'icons/obj/pipes/power_cond_white.dmi'; - icon_state = "4-5"; - name = "cable"; - pixel_x = 5 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, -/area/golden_arrow/hangar) +/area/golden_arrow/cryo_cells) "bN" = ( /obj/structure/machinery/light{ dir = 1 @@ -428,6 +436,13 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) +"bO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/platoon_commander_rooms) "bP" = ( /obj/structure/surface/table/almayer, /obj/item/toy/deck, @@ -435,16 +450,24 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"bV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +"bS" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "apcbayrailing2" }, +/turf/open/floor/almayer/black, +/area/golden_arrow/hangar) +"bU" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -29 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = -29 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) "bX" = ( /obj/effect/decal/siding{ icon_state = "siding9" @@ -452,7 +475,10 @@ /turf/open/floor/plating, /area/golden_arrow/hangar) "bY" = ( -/turf/open/floor/almayer/cargo_arrow/west, +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "bZ" = ( /obj/structure/largecrate/supply/ammo{ @@ -470,35 +496,12 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) -"ca" = ( -/obj/structure/largecrate/random/case/double, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "cc" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"ce" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/cryo_cells) "cg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, @@ -512,21 +515,15 @@ /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) "ck" = ( -/obj/structure/machinery/microwave{ - density = 0; - pixel_y = 9 - }, -/obj/item/reagent_container/food/drinks/coffee/marine{ - pixel_x = 9; - pixel_y = -3 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/item/storage/box/donkpockets{ - pixel_x = 4; - pixel_y = 22 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + name = "\improper Storage Bay One Blast Door" }, -/obj/structure/surface/table/almayer, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "cm" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -534,30 +531,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"cq" = ( -/obj/structure/bed/bedroll{ - buckle_lying = null; - can_buckle = 0; - color = "#333333"; - desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise."; - foldabletype = null; - name = "gym mat"; - pixel_x = -2; - pixel_y = -3 - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/hangar) "cs" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"ct" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "apcbayrailing2" + }, +/turf/open/floor/almayer/black/east, /area/golden_arrow/hangar) "cx" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -585,6 +568,13 @@ }, /turf/closed/wall/almayer/outer, /area/golden_arrow/hangar) +"cz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/surgical{ + pixel_x = 30 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) "cB" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -597,22 +587,14 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "cH" = ( -/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/door/airlock/multi_tile/almayer/generic{ + name = "\improper Prep Lockers" }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonprep) "cI" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -625,12 +607,15 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "cL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, /obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster{ + desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; + icon_state = "poster16"; + layer = 3.3; + name = "'Miss July' Pinup"; + pixel_y = 29; + serial_number = 16 + }, /turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "cO" = ( @@ -643,17 +628,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) -"cP" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/closet/coffin/woodencrate{ - name = "gym equipment" - }, -/obj/item/clothing/gloves/boxing, -/obj/item/clothing/gloves/boxing/blue, -/obj/item/clothing/gloves/boxing/green, -/obj/item/clothing/gloves/boxing/yellow, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) "cQ" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -669,6 +643,14 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"cS" = ( +/obj/structure/machinery/door/poddoor/railing, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "cU" = ( /obj/item/stack/cable_coil{ pixel_x = 7; @@ -679,19 +661,15 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"cV" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) "cW" = ( /obj/structure/cargo_container/arious/right, /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer, /area/golden_arrow/hangar) "cX" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "cY" = ( /obj/structure/largecrate/random/case/double, /obj/effect/decal/cleanable/dirt, @@ -734,14 +712,22 @@ /turf/open/floor/almayer, /area/golden_arrow/platoonprep) "dd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/largecrate/supply/medicine/medkits{ + pixel_x = -11; + pixel_y = 9 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/obj/structure/largecrate/supply/medicine/medkits{ + pixel_x = 14; + pixel_y = 9 + }, +/obj/structure/largecrate/supply/medicine/medkits{ + layer = 3.1; + pixel_x = 8; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "de" = ( /turf/closed/shuttle/midway{ icon_state = "103"; @@ -755,37 +741,37 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) +"dg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "dj" = ( -/obj/structure/machinery/computer/shuttle_control/ice_colony{ - pixel_y = 33 +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "apcbayrailing1" }, -/turf/open/floor/almayer/mono, -/area/golden_arrow/supply) +/turf/open/floor/almayer/black, +/area/golden_arrow/hangar) "dk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3; + pixel_x = -1 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "dl" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/golden_arrow/hangar) -"dn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/poddoor/railing{ - dir = 8; + dir = 4; id = "apcbayrailing1" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/black/west, +/turf/open/floor/almayer/black/east, /area/golden_arrow/hangar) "do" = ( /turf/closed/wall/almayer, @@ -801,25 +787,9 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"dr" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "apcbayrailing2" - }, -/turf/open/floor/almayer/black/north, -/area/golden_arrow/hangar) -"dt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Dorms" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/dorms) -"du" = ( -/obj/structure/cable{ - icon_state = "4-8" +"du" = ( +/obj/structure/cable{ + icon_state = "4-8" }, /obj/structure/cable{ icon_state = "1-4" @@ -830,6 +800,12 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) +"dv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "dw" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -838,11 +814,35 @@ /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) "dy" = ( -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/hangar) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/structure/machinery/door/airlock/almayer/secure{ + name = "\improper Platoon Commander's Quarters"; + req_access = list(); + req_one_access_txt = "19;12" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_commander_rooms) "dz" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/hangar) +"dB" = ( +/obj/effect/landmark/start/marine/smartgunner/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/cryo_cells) +"dD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/medical) "dE" = ( /obj/structure/machinery/firealarm{ dir = 4; @@ -851,61 +851,54 @@ /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "dG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 1 +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/squad_sergeant{ + name = "squad two sergeant locker"; + req_access_txt = "32;40"; + req_one_access = list() }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoonprep) "dH" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "equipment_conny"; - name = "\improper Squad Two Equipment Locker" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonarmory) +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/prep_hallway) "dI" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Prep Lockers" + }, /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/test_floor4, -/area/golden_arrow/cryo_cells) -"dJ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, +/area/golden_arrow/platoonprep) +"dK" = ( +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) +"dL" = ( /obj/structure/machinery/door/poddoor/railing{ - dir = 4; + dir = 8; id = "apcbayrailing1" }, -/turf/open/floor/almayer/black/east, +/turf/open/floor/almayer/black/west, /area/golden_arrow/hangar) -"dK" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 8; - name = "\improper Chemistry Subsection"; - req_one_access = list(); - req_one_access_txt = "8;12" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) "dM" = ( /turf/closed/shuttle/midway{ icon_state = "72"; name = "\improper Tripoli" }, /area/golden_arrow/hangar) +"dP" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "dR" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -928,29 +921,30 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"dT" = ( +"dU" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"dV" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 + icon_state = "SE-out"; + pixel_x = 1 }, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"dU" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/engineering) "dW" = ( -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 8 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 33 +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + name = "\improper Storage Bay One Blast Door" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/prep_hallway) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "dX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/reinforced/almayer_B{ @@ -970,20 +964,34 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"ec" = ( -/turf/open/floor/almayer/plate, +"eb" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) +"ec" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Second Platoon Ready Bay Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "ed" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "SW-out"; + pixel_x = -1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "eh" = ( /turf/closed/shuttle/midway{ icon_state = "75"; @@ -997,28 +1005,24 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"ej" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +"ek" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "apcbayrailing2" }, +/turf/open/floor/almayer/black/east, +/area/golden_arrow/hangar) +"el" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2-8" }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"el" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8 - }, -/obj/item/trash/burger, -/obj/effect/decal/strata_decals/grime/grime3, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) "eo" = ( /turf/open/floor/almayer, /area/golden_arrow/dorms) @@ -1058,29 +1062,27 @@ /turf/open/floor/almayer, /area/golden_arrow/engineering) "ez" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 8 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) "eA" = ( -/turf/open/floor/almayer/uscm/directional/up_down/southwest, -/area/golden_arrow/hangar) +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/engineering) "eB" = ( -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) -"eH" = ( /obj/structure/machinery/door/poddoor/railing{ - dir = 2 + id = "apcbayrailing1" }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) +/turf/open/floor/almayer/black/north, +/area/golden_arrow/hangar) "eJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -1091,72 +1093,54 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "eK" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = -29 +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 1; + name = "\improper Platoon Commander's Office"; + req_access = list(); + req_one_access_txt = "19;12" }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; - pixel_y = -29 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/hangar) -"eL" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "apcbayrailing1" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/black/north, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoon_commander_rooms) "eQ" = ( -/obj/structure/machinery/floodlight/landing/floor{ - pixel_x = 3 - }, -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"eR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/engineering) +"eU" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NE-out"; pixel_y = 1 }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"eT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/ammo_box/magazine/mk1{ - layer = 3.1; - pixel_x = 3; - pixel_y = 13 - }, -/obj/item/facepaint/sunscreen_stick{ - layer = 3.2; - pixel_x = -2; - pixel_y = 2 +"eV" = ( +/obj/structure/closet/secure_closet/marine_personal{ + job = "Smartgunner"; + pixel_x = -7 }, -/obj/structure/sign/poster{ - desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; - icon_state = "poster11"; - name = "YOU ALWAYS KNOW A WORKING JOE."; - pixel_x = 24; - serial_number = 11 +/obj/structure/closet/secure_closet/marine_personal{ + job = "Squad Sergeant"; + pixel_x = 8 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoonprep) +/area/golden_arrow/cryo_cells) "eW" = ( /turf/closed/wall/almayer, /area/golden_arrow/platoon_commander_rooms) -"eX" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - name = "\improper Storage Bay Two Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) "fb" = ( /obj/structure/sign/safety/synth_storage{ pixel_y = 32 @@ -1165,16 +1149,11 @@ /area/golden_arrow/engineering) "fd" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/bed/bedroll{ - buckle_lying = null; - can_buckle = 0; - color = "#333333"; - desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise."; - foldabletype = null; - name = "gym mat"; - pixel_x = -2 +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/cargo_arrow/east, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "fe" = ( /obj/effect/decal/cleanable/dirt, @@ -1183,33 +1162,47 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"ff" = ( -/turf/open/floor/almayer/uscm/directional/up_down/west, +"fn" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/cargo/southwest, /area/golden_arrow/hangar) +"fo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door_control/brbutton{ + id = "squadblastdoor"; + name = "hangar blast door control"; + pixel_y = 28; + req_one_access_txt = "19;12" + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/platoonarmory) "fr" = ( +/obj/structure/ship_ammo/minirocket, /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "apcbayrailing2" +/obj/effect/decal/cleanable/dirt, +/obj/structure/ship_ammo/minirocket{ + layer = 3.1; + pixel_y = 9 }, -/turf/open/floor/almayer/black/east, -/area/golden_arrow/hangar) -"fs" = ( -/obj/structure/ship_ammo/rocket/widowmaker, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer/cargo/southwest, /area/golden_arrow/hangar) "ft" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating, /area/golden_arrow/hangar) -"fv" = ( -/obj/structure/machinery/light{ - dir = 8 +"fu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/largecrate/random/case, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/golden_arrow/hangar) +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "fw" = ( /obj/structure/surface/table/almayer, /obj/item/device/radio/intercom{ @@ -1223,30 +1216,47 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) +"fy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "fz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/structure/cable{ +/obj/structure/cable/heavyduty{ icon_state = "4-8" }, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"fC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "equipment_conny"; - name = "\improper Squad Two Equipment Locker" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonarmory) +/area/golden_arrow/hangar) "fD" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/platoonprep) +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "fF" = ( /obj/item/device/flashlight/lamp/tripod/grey, /turf/open/floor/plating, /area/golden_arrow/hangar) +"fG" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/toy/plush/therapy/blue{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/toy/plush/therapy/random_color, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "fH" = ( /obj/structure/shuttle/part/dropship2/transparent/engine_right_cap{ name = "\improper Tripoli" @@ -1277,6 +1287,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) +"fJ" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/platoonarmory) "fK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -1286,41 +1304,46 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoon_commander_rooms) +"fL" = ( +/obj/structure/closet/secure_closet/marine_personal{ + job = "Platoon Commander" + }, +/obj/item/clothing/under/marine/officer/boiler, +/obj/item/clothing/suit/storage/jacket/marine/service, +/obj/item/clothing/suit/storage/jacket/marine/dress/officer/bomber, +/obj/item/clothing/under/marine/officer/bridge, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "fO" = ( +/obj/structure/machinery/power/smes/buildable, /obj/effect/decal/cleanable/dirt, -/obj/structure/supply_drop/echo, -/obj/effect/decal/cleanable/dirt, -/obj/structure/platform{ - dir = 8 +/obj/item/storage/toolbox/electrical{ + pixel_y = 10 }, -/turf/open/floor/almayer/test_floor5, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/engineering) "fQ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, +/obj/structure/surface/table/reinforced/prison, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"fT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/reagent_container/food/drinks/coffee/marine{ + pixel_x = -4; + pixel_y = 14 }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/item/ashtray/plastic{ + pixel_x = -10; + pixel_y = 3 }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"fU" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 10 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) -"fU" = ( -/obj/structure/prop/almayer/computers/sensor_computer1, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) "fV" = ( /obj/structure/bed/chair{ dir = 8 @@ -1329,15 +1352,19 @@ /turf/open/floor/almayer, /area/golden_arrow/engineering) "fW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "apc1blastdoor"; - name = "\improper Vehicle Bay One Blast Door" +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "fY" = ( /obj/effect/decal/warning_stripes{ @@ -1370,28 +1397,39 @@ /obj/structure/machinery/telecomms/relay/preset/tower, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"gd" = ( +"gc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, /obj/structure/machinery/light{ - dir = 8 + dir = 4 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/area/golden_arrow/hangar) +"gd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "ge" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "apcbayrailing2" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/black/west, +/area/golden_arrow/hangar) "gf" = ( -/obj/effect/landmark/start/marine/leader/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/cryo_cells) -"gg" = ( -/obj/structure/surface/table/almayer, +/obj/structure/closet, +/obj/item/maintenance_jack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) +"gg" = ( +/obj/structure/surface/table/almayer, /obj/structure/barricade/handrail{ dir = 8 }, @@ -1418,11 +1456,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"gj" = ( -/obj/structure/ship_ammo/rocket/widowmaker, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) "gk" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/suit/storage/jacket/marine/service{ @@ -1445,12 +1478,6 @@ /obj/effect/decal/cleanable/dirt, /turf/closed/wall/almayer, /area/golden_arrow/platoonarmory) -"go" = ( -/obj/structure/reagent_dispensers/fueltank{ - layer = 2.97 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "gp" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -1495,12 +1522,6 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"gv" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "gx" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -1512,14 +1533,16 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "gy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -29 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = -29 }, -/turf/open/floor/almayer/mono, -/area/golden_arrow/cryo_cells) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) "gC" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -1528,27 +1551,26 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "gD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/cable{ - icon_state = "0-4"; - layer = 2.36 - }, -/turf/open/floor/almayer, +/obj/structure/closet/secure_closet/platoon_sergeant, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/platoonprep) -"gI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"gG" = ( +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = -7 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/closet/secure_closet/marine_personal{ + pixel_x = 8 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/cryo_cells) +"gI" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/briefing) "gK" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -1570,30 +1592,20 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"gN" = ( -/obj/structure/largecrate/random/case/double{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/structure/largecrate/random/case/double{ - layer = 3.1; - pixel_x = 6; - pixel_y = -7 - }, -/obj/structure/largecrate/random/mini/small_case{ - layer = 3.1; - pixel_x = 14; - pixel_y = 24 +"gM" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) -"gO" = ( -/obj/structure/machinery/power/apc/almayer/east, -/obj/structure/cable{ - icon_state = "0-2" +"gN" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/turf/open/floor/almayer, -/area/golden_arrow/shared_office) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "gR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -1603,14 +1615,20 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) -"gT" = ( +"gS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"gT" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8 + }, +/obj/item/trash/burger, +/obj/effect/decal/strata_decals/grime/grime3, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "gU" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -1626,14 +1644,17 @@ /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) "gV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "squadarmory"; - name = "\improper Gear Lockers" +/obj/structure/sign/safety/hazard{ + pixel_x = -20; + pixel_y = -7 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonprep) +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -20; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/prep_hallway) "gW" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -1653,31 +1674,15 @@ /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) "gX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/hangar) -"gY" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, /turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) +/area/golden_arrow/cryo_cells) +"gY" = ( +/obj/structure/machinery/cm_vending/clothing/synth/snowflake, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) "gZ" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -1685,12 +1690,31 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) "ha" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/closet/secure_closet{ + icon_broken = "fridgebroken"; + icon_closed = "fridge"; + icon_locked = "fridge1"; + icon_off = "fridge1"; + icon_opened = "fridgeopen"; + icon_state = "fridge1"; + name = "beverage fridge" }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/golden_arrow/hangar) +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + pixel_x = 8; + pixel_y = -7 + }, +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + pixel_y = -1 + }, +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + pixel_x = -2; + pixel_y = -4 + }, +/obj/item/reagent_container/food/drinks/bottle/orangejuice{ + pixel_y = -9 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "hd" = ( /obj/structure/shuttle/part/dropship1/lower_right_wall{ name = "\improper Tripoli" @@ -1703,37 +1727,31 @@ name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"hi" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2 - }, +"hh" = ( /obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, /turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) +/area/golden_arrow/hangar) "hj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"hk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "apcbayrailing2" }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/black, /area/golden_arrow/hangar) "hl" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/supply) +"hm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/hangar) "hn" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/disposal{ @@ -1756,6 +1774,26 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) +"hr" = ( +/obj/structure/cargo_container/wy/left{ + opacity = 0; + pixel_y = -17 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/toy/plush/therapy/red{ + desc = "An unapproved bootleg copy of the patented Sergeant Huggs. Looks like he's seen better days."; + force = 15; + layer = 4.1; + name = "Discharged Huggs"; + pixel_x = 5; + pixel_y = 32; + throwforce = 15 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "hu" = ( /obj/structure/shuttle/part/dropship1/right_outer_wing_connector{ name = "\improper Tripoli" @@ -1773,30 +1811,28 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) +"hw" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "hx" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/golden_arrow/dorms) "hz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/power/reactor{ + name = "\improper S-52 fusion reactor 17" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/turf/open/floor/almayer, +/area/golden_arrow/engineering) +"hB" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"hA" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/prep_hallway) -"hB" = ( -/obj/structure/closet/secure_closet/smartgunner{ - name = "squad two smartgunner locker"; - req_access_txt = "14;40"; - req_one_access = list() - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoonprep) +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/hangar) "hC" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -1817,6 +1853,11 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) +"hF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/prep_hallway) "hG" = ( /obj/structure/sign/banners/united_americas_flag{ pixel_y = 30 @@ -1826,6 +1867,46 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) +"hH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/platoonprep) +"hI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "apcbayrailing2" + }, +/turf/open/floor/almayer/black/east, +/area/golden_arrow/hangar) +"hK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/ammo_box/magazine/mk1{ + layer = 3.1; + pixel_x = 3; + pixel_y = 13 + }, +/obj/item/facepaint/sunscreen_stick{ + layer = 3.2; + pixel_x = -2; + pixel_y = 2 + }, +/obj/structure/sign/poster{ + desc = "YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE. YOU ALWAYS KNOW A WORKING JOE."; + icon_state = "poster11"; + name = "YOU ALWAYS KNOW A WORKING JOE."; + pixel_x = 24; + serial_number = 11 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoonprep) "hL" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ @@ -1850,20 +1931,12 @@ /area/golden_arrow/cryo_cells) "hT" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/supply_drop/echo, +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform{ dir = 8 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/hangar) -"hV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/test_floor5, /area/golden_arrow/engineering) "hX" = ( /obj/structure/shuttle/part/dropship1/transparent/left_outer_bottom_wing{ @@ -1871,23 +1944,38 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"ia" = ( -/obj/structure/closet/secure_closet/platoon_sergeant, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoonprep) -"ib" = ( +"hZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "id" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "apc1blastdoor"; - name = "\improper Vehicle Bay One Blast Door" +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray{ + pixel_x = -3; + pixel_y = 3 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_x = 12; + pixel_y = 18 + }, +/obj/item/trash/plate{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/trash/plate{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ + pixel_y = 18; + pixel_x = 2 + }, +/obj/item/trash/plate{ + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "ie" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -1921,16 +2009,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"ig" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"ih" = ( -/obj/structure/machinery/cm_vending/clothing/synth/snowflake, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/synthcloset) "im" = ( /obj/item/reagent_container/food/drinks/cans/beer{ layer = 4.2; @@ -1975,10 +2053,27 @@ /turf/open/floor/almayer, /area/golden_arrow/shared_office) "it" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/closet/coffin/woodencrate{ + name = "gym equipment" + }, +/obj/item/clothing/gloves/boxing, +/obj/item/clothing/gloves/boxing/blue, +/obj/item/clothing/gloves/boxing/green, +/obj/item/clothing/gloves/boxing/yellow, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"iv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/prep_hallway) +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "iw" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -1986,30 +2081,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"ix" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/closet/crate/trashcart{ - pixel_y = 11 - }, -/obj/item/prop/colony/usedbandage, -/obj/item/prop/colony/usedbandage{ - dir = 4 - }, -/obj/item/prop/colony/usedbandage{ - dir = 6; - pixel_y = 6 - }, -/obj/item/prop/colony/usedbandage{ - dir = 10; - pixel_y = 13 - }, -/obj/item/storage/pill_bottle, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) "iA" = ( /obj/structure/extinguisher_cabinet/lifeboat{ pixel_x = 12 @@ -2019,12 +2090,6 @@ name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"iB" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "iC" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -2036,13 +2101,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"iD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/railing{ - id = "apcbayrailing1" - }, -/turf/open/floor/almayer/black/north, -/area/golden_arrow/hangar) "iE" = ( /obj/structure/prop/invuln{ desc = "big pile energy."; @@ -2066,6 +2124,13 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) +"iH" = ( +/obj/structure/closet/secure_closet/engineering_electrical{ + req_one_access = null + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "iI" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ @@ -2082,118 +2147,77 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"iK" = ( -/obj/structure/machinery/floodlight/landing/floor{ - pixel_x = 3 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "iL" = ( -/obj/structure/cargo_container/kelland/right{ - opacity = 0 - }, -/obj/structure/cargo_container/kelland/right{ - opacity = 0; - pixel_y = 22 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"iO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"iP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/bed/chair/office/light{ + dir = 4 }, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) -"iT" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/hangar) -"iU" = ( -/obj/effect/decal/strata_decals/grime/grime1{ +"iM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 8; + name = "\improper Shared Office"; + req_access = list(); + req_one_access_txt = "12;32" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/shared_office) +"iN" = ( +/obj/structure/machinery/floodlight/landing/floor, +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "iV" = ( -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/blackcorner/north, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/golden_arrow/hangar) "iW" = ( /obj/structure/window/framed/almayer, /obj/structure/curtain/red, /turf/open/floor/plating, /area/golden_arrow/platoon_commander_rooms) -"iY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"iX" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - name = "\improper Storage Bay Blast Door" +/obj/structure/machinery/landinglight/ds1{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"ja" = ( -/obj/structure/largecrate/supply/motiondetectors, -/obj/item/ammo_box/magazine/mk1{ - layer = 3.1; +"iY" = ( +/obj/structure/ship_ammo/minirocket, +/obj/structure/ship_ammo/minirocket{ + layer = 3.1; + pixel_y = 9 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/golden_arrow/hangar) +"ja" = ( +/obj/structure/largecrate/supply/motiondetectors, +/obj/item/ammo_box/magazine/mk1{ + layer = 3.1; pixel_x = -12; pixel_y = 14 }, /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) -"jc" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) "je" = ( -/obj/structure/machinery/recharge_station, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/largecrate/random/secure, +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/synthcloset) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "jf" = ( /obj/structure/cable{ icon_state = "2-4" @@ -2256,6 +2280,13 @@ name = "\improper Tripoli" }, /area/golden_arrow/hangar) +"jm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "jp" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -2268,77 +2299,66 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "jq" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "apc2blastdoor"; - name = "\improper Vehicle Bay Two Blast Door" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"jr" = ( /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) +"jr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "js" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plate, +/obj/structure/largecrate/random/secure, +/obj/structure/machinery/light, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "ju" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 + icon_state = "S" }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) "jx" = ( /turf/closed/shuttle/midway/transparent{ icon_state = "22"; name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"jy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) "jA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "apcbayrailing2" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/black/west, /area/golden_arrow/hangar) -"jB" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/medical/bruise_pack{ - pixel_x = -12; - pixel_y = 7 - }, -/obj/item/stack/medical/ointment{ - pixel_x = 2; - pixel_y = 12 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) "jD" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"jF" = ( +"jG" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/east, +/obj/structure/sign/safety/cryo{ + name = "hypersleep semiotic"; + pixel_x = 15; + pixel_y = -26 + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "jI" = ( /obj/effect/decal/warning_stripes{ @@ -2375,18 +2395,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"jO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "jP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/firealarm{ @@ -2395,19 +2403,19 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"jR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "jS" = ( /obj/structure/shuttle/part/dropship1/transparent/right_inner_bottom_wing{ name = "\improper Tripoli" }, /turf/open/floor/plating, /area/golden_arrow/hangar) +"jV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "jW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -2422,31 +2430,14 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"jZ" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"ka" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "kb" = ( /turf/closed/wall/almayer, /area/golden_arrow/hangar) "kd" = ( -/obj/structure/machinery/landinglight/ds1{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/cargo/southwest, /area/golden_arrow/hangar) "kf" = ( /obj/structure/shuttle/part/dropship1/transparent/right_outer_bottom_wing{ @@ -2460,20 +2451,27 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) "kk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/platoonprep) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "kl" = ( /obj/structure/shuttle/part/dropship1/nose_front_right{ name = "\improper Tripoli" }, /turf/open/floor/plating, /area/golden_arrow/hangar) +"km" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonprep) "kn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -2483,15 +2481,21 @@ /turf/closed/wall/almayer/outer, /area/golden_arrow/platoonarmory) "ko" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 +/obj/structure/largecrate/random/case/double{ + pixel_x = 4; + pixel_y = 5 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"kp" = ( -/obj/structure/machinery/landinglight/ds1/delaythree, -/turf/open/floor/almayer/plate, +/obj/structure/largecrate/random/case/double{ + layer = 3.1; + pixel_x = 6; + pixel_y = -7 + }, +/obj/structure/largecrate/random/mini/small_case{ + layer = 3.1; + pixel_x = 14; + pixel_y = 24 + }, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "kr" = ( /obj/item/tool/crowbar/red{ @@ -2500,6 +2504,15 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"ks" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/engineering) +"kt" = ( +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) "ku" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -2520,10 +2533,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"kx" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/engineering) "kz" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/prop{ @@ -2541,64 +2550,47 @@ /turf/open/floor/plating, /area/golden_arrow/hangar) "kA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"kC" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 38 }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - name = "\improper Storage Bay Two Blast Door" +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = 38 }, -/turf/open/floor/almayer/test_floor4, +/obj/structure/sign/safety/ammunition{ + pixel_y = 26 + }, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) -"kC" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"kD" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"kG" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/cargo_arrow/east, +/turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"kD" = ( +"kH" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"kE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/recharger{ - pixel_x = 5; - pixel_y = -10 - }, -/obj/item/smartgun_battery{ - pixel_x = 4; - pixel_y = -5 - }, -/obj/item/prop/magazine{ - desc = "A copy of Soldier of Fortune magazine. On the cover is a stylized imagine of a motion tracker in use, with the headline 'Combat Awareness in the 22nd Century'. The article covers the advancement in sensor technology that has made combat between peer nations like the UA and UPP increasingly lethal to those on the ground. Flipping through the magazine you see article titles such as 'Arsenal: The M2C Heavy Machinegun', and 'The Future War: advancements in Cyberdyne Systems combat AI'. At the back of the magazine is an extensive list of advertisements for private contractors and wares."; - icon_state = "poster8"; - name = "Soldier Of Fortune: Issue March 2182"; - pixel_x = 7; - pixel_y = 15 - }, -/obj/item/clipboard{ - pixel_x = -7; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoonprep) -"kG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/hangar) -"kK" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) +/area/golden_arrow/cryo_cells) +"kJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "kL" = ( /obj/structure/machinery/cryopod{ layer = 3.1; @@ -2607,23 +2599,43 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) "kN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/ammunition{ - pixel_x = -18 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "weapons_conny"; - name = "\improper Squad One Weapons Locker"; - pixel_y = -4 +/obj/structure/largecrate/supply/ammo{ + fill_from_loc = 1; + name = "smoke grenades case"; + pixel_y = 11 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonarmory) +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "kO" = ( -/obj/structure/largecrate/random/secure, -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 27 }, -/turf/open/floor/almayer/test_floor4, +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = 27 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) "kQ" = ( /obj/structure/pipes/vents/scrubber{ @@ -2631,11 +2643,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"kR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) "kU" = ( /turf/closed/shuttle/midway{ icon_state = "81"; @@ -2663,34 +2670,31 @@ /obj/item/clothing/under/shorts/grey, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) +"kZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1/delaythree, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "la" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, +/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) -"lb" = ( -/obj/structure/machinery/landinglight/ds1, +"lc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/cryo_cells) "ld" = ( /turf/closed/shuttle/midway{ icon_state = "83"; name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"lf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) "lg" = ( /obj/structure/bed{ can_buckle = 0 @@ -2714,14 +2718,22 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"lm" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "ln" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "apc2blastdoor"; + name = "\improper Vehicle Bay Two Blast Door" }, -/turf/open/floor/almayer/cargo_arrow/west, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "lo" = ( /turf/closed/shuttle/midway{ @@ -2729,10 +2741,36 @@ name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"lr" = ( +"ls" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"lt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/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 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) "lw" = ( /obj/structure/disposalpipe/segment{ dir = 1 @@ -2740,19 +2778,16 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/dorms) "lx" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 27 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; - pixel_y = 27 +/obj/structure/machinery/medical_pod/autodoc{ + pixel_y = 6 }, /obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/case/small, -/obj/structure/largecrate/random/mini/small_case{ - pixel_y = 11 - }, -/turf/open/floor/almayer/cargo_arrow/west, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"lC" = ( +/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "lE" = ( /obj/effect/decal/warning_stripes{ @@ -2763,16 +2798,32 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"lI" = ( -/obj/structure/platform{ - dir = 4; - layer = 2.7 +"lG" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/mechanical/green{ + pixel_y = 6 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"lN" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/west, +"lK" = ( +/obj/structure/largecrate/supply/medicine/medkits{ + pixel_x = -4; + pixel_y = 9 + }, +/obj/structure/largecrate/supply/medicine/medkits{ + layer = 3.1; + pixel_x = 15; + pixel_y = 24 + }, +/obj/structure/largecrate/random/mini/med{ + pixel_x = -6; + pixel_y = 21 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "lO" = ( /obj/structure/shuttle/part/dropship1/transparent/outer_right_weapons{ @@ -2781,13 +2832,10 @@ /turf/open/floor/plating, /area/golden_arrow/hangar) "lP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/north, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) "lQ" = ( /obj/structure/barricade/handrail{ @@ -2800,6 +2848,10 @@ /obj/structure/machinery/light, /turf/open/floor/almayer, /area/golden_arrow/dorms) +"lS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/uscm/north, +/area/golden_arrow/hangar) "lU" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ req_one_access = null @@ -2815,24 +2867,19 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) "lW" = ( -/obj/structure/machinery/door/poddoor/railing, -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) +/area/golden_arrow/hangar) "lX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/rollingpin{ - pixel_y = 4; - pixel_x = -6 - }, -/obj/item/tool/kitchen/knife{ - pixel_x = 9 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) +/obj/structure/largecrate/random/case, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/golden_arrow/hangar) "lY" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/prop/tableflag/uscm{ @@ -2846,20 +2893,17 @@ /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) "ma" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) -"mb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_box/magazine/misc/mre{ + pixel_y = 11 }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" +/obj/item/prop/helmetgarb/flair_io{ + pixel_x = -5; + pixel_y = -9 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/platoonprep) "mc" = ( /obj/structure/machinery/power/terminal{ dir = 1 @@ -2870,25 +2914,38 @@ /turf/open/floor/plating, /area/golden_arrow/engineering) "md" = ( -/obj/structure/machinery/power/apc/almayer/north, -/turf/open/floor/almayer, -/area/golden_arrow/synthcloset) -"me" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"mg" = ( -/turf/closed/shuttle/midway{ +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/blackcorner/north, +/area/golden_arrow/hangar) +"me" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"mg" = ( +/turf/closed/shuttle/midway{ icon_state = "48"; name = "\improper Tripoli" }, /area/golden_arrow/hangar) "mi" = ( -/obj/item/prop/almayer/box{ - pixel_y = 17 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) "mj" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -2925,11 +2982,22 @@ /turf/open/floor/plating, /area/golden_arrow/hangar) "mm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +/obj/structure/largecrate/random/case/double, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"mq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "mr" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -2937,14 +3005,6 @@ /obj/structure/machinery/light, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"ms" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "mu" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -2961,16 +3021,6 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"mw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "mx" = ( /turf/closed/shuttle/midway{ icon_state = "24"; @@ -2986,36 +3036,14 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"mB" = ( -/obj/structure/machinery/autodoc_console{ - dir = 1; - pixel_y = 6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_x = -1; - pixel_y = 1 - }, -/obj/structure/sign/safety/autodoc{ - pixel_x = -17 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 +"mF" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "mG" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/box{ - pixel_y = 9 - }, +/obj/structure/machinery/landinglight/ds1/delaythree, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "mI" = ( @@ -3034,34 +3062,29 @@ /turf/open/floor/plating, /area/golden_arrow/hangar) "mK" = ( +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/hangar) +"mM" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 - }, -/obj/structure/cable{ - icon_state = "0-4" +/obj/structure/pipes/vents/pump{ + dir = 8 }, -/obj/structure/machinery/power/apc/almayer/west, +/obj/structure/surface/rack, +/obj/item/tool/weldingtool/hugetank, +/obj/item/tool/wirecutters, /turf/open/floor/almayer, -/area/golden_arrow/dorms) +/area/golden_arrow/synthcloset) "mO" = ( /obj/structure/bed/chair/comfy, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) "mQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "mT" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -3076,6 +3099,17 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) +"mW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/catwalk{ + pixel_x = 2; + pixel_y = -9 + }, +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "mZ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, @@ -3084,30 +3118,21 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"na" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "nb" = ( /obj/structure/foamed_metal, /turf/open/floor/plating, /area/golden_arrow/medical) -"nf" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Cryo Bay" +"nc" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ + name = "\improper Emergency Infirmary"; + req_one_access = null }, /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 }, -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer/test_floor4, -/area/golden_arrow/cryo_cells) +/area/golden_arrow/medical) "nh" = ( /obj/structure/surface/table/almayer, /obj/item/prop/almayer/comp_closed{ @@ -3139,62 +3164,56 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"nr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"nw" = ( +"nk" = ( +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/prep_hallway) +"nt" = ( /obj/structure/machinery/gear{ id = "supply_elevator_gear" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; + icon_state = "NW-out"; pixel_y = 1 }, -/turf/open/floor/almayer/blackcorner/east, +/turf/open/floor/almayer/blackcorner/north, /area/golden_arrow/hangar) -"nz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 1 +"nu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) -"nC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delayone{ +"nw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"nF" = ( +/area/golden_arrow/cryo_cells) +"nB" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 + icon_state = "S" }, /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 1 + pixel_y = 2 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"nG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/squad_sergeant{ - name = "squad one sergeant locker"; - req_access_txt = "32;39"; - req_one_access = list() +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoonprep) +/area/golden_arrow/cryo_cells) +"nF" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "nH" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -3202,39 +3221,26 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"nJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/squad_sergeant{ - name = "squad two sergeant locker"; - req_access_txt = "32;40"; - req_one_access = list() - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoonprep) "nL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) +"nN" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/engineering) "nP" = ( /obj/structure/cable{ icon_state = "4-8" }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/shared_office) -"nQ" = ( -/obj/structure/machinery/body_scanconsole{ - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) "nR" = ( /obj/structure/shuttle/part/dropship1/right_inner_wing_connector{ name = "\improper Tripoli" @@ -3263,39 +3269,31 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "nU" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper_bin/uscm{ - pixel_x = -6; - pixel_y = 7 +/obj/structure/sink{ + layer = 3.1; + pixel_y = 24 }, -/obj/item/tool/pen{ - pixel_x = -7; - pixel_y = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"oc" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/mirror{ + pixel_x = -1; + pixel_y = 35 }, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/cryo_cells) +"ob" = ( +/turf/open/floor/almayer/uscm/directional/up_down/west, +/area/golden_arrow/hangar) +"oc" = ( +/obj/structure/ship_ammo/rocket/widowmaker, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "of" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/sign/safety/ladder{ - pixel_x = -17; - pixel_y = -15 - }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/almayer/cargo_arrow/east, +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "og" = ( /turf/closed/wall/almayer, @@ -3306,14 +3304,10 @@ }, /turf/closed/wall/almayer/outer, /area/golden_arrow/briefing) -"ok" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/prep_hallway) +"on" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "oo" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/atm{ @@ -3321,40 +3315,29 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"oq" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"or" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "os" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"ox" = ( -/obj/structure/machinery/light{ - dir = 1 +"ot" = ( +/obj/structure/machinery/computer/supply_drop_console/limited/alternate{ + density = 1 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"ow" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) +"ox" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/platoonprep) "oy" = ( /obj/structure/machinery/light{ dir = 8 @@ -3363,41 +3346,28 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) "oz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/storage/fancy/cigarettes/lucky_strikes_4{ - pixel_x = 7; - pixel_y = 7 +/obj/structure/machinery/autodoc_console, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3; + pixel_x = -1 }, -/obj/item/storage/fancy/cigar/matchbook{ - pixel_x = -1; - pixel_y = 6 +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/autodoc{ + pixel_x = 32 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoonprep) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "oB" = ( /obj/structure/machinery/door/poddoor/almayer, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"oC" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/briefing) "oG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Second Platoon Ready Bay Blast Door" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "oH" = ( /obj/structure/surface/table/almayer, @@ -3429,6 +3399,15 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) +"oL" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/golden_arrow/hangar) "oM" = ( /obj/structure/filingcabinet{ density = 0; @@ -3455,25 +3434,24 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "oT" = ( -/obj/structure/cargo_container/wy/left{ - opacity = 0; - pixel_y = -17 - }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 }, -/obj/item/toy/plush/therapy/red{ - desc = "An unapproved bootleg copy of the patented Sergeant Huggs. Looks like he's seen better days."; - force = 15; - layer = 4.1; - name = "Discharged Huggs"; - pixel_x = 5; - pixel_y = 32; - throwforce = 15 +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/cryo_cells) +"oV" = ( +/obj/structure/machinery/power/apc/almayer/east, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/almayer, +/area/golden_arrow/shared_office) "oW" = ( /obj/structure/surface/table/almayer, /obj/structure/largecrate/random/case{ @@ -3497,27 +3475,14 @@ }, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) -"oZ" = ( -/obj/effect/decal/strata_decals/grime/grime2, -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/golden_arrow/prep_hallway) "pe" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, +/obj/structure/machinery/floodlight/landing/floor, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/area/golden_arrow/hangar) "pf" = ( /obj/structure/machinery/door_control{ id = "cargolock"; @@ -3546,26 +3511,19 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) +"ph" = ( +/obj/structure/largecrate/supply/generator, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "pi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"pj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "apcbayrailing2" +/obj/structure/prop{ + color = "#b30000"; + icon = 'icons/obj/pipes/power_cond_white.dmi'; + icon_state = "4-5"; + name = "cable"; + pixel_x = 5 }, -/turf/open/floor/almayer/black, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/golden_arrow/hangar) "pl" = ( /obj/structure/cable{ @@ -3573,10 +3531,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/shared_office) -"pn" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 +"pm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "po" = ( @@ -3584,16 +3548,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"pp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "pq" = ( /obj/structure/machinery/door/airlock/maintenance/colony{ dir = 1; @@ -3618,21 +3572,21 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"pw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"pv" = ( +/obj/effect/decal/strata_decals/grime/grime1{ dir = 8 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/dorms) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"pw" = ( +/obj/effect/landmark/start/bridge, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/cryo_cells) "pz" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -3647,17 +3601,15 @@ /area/golden_arrow/hangar) "pA" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/cargo_container/wy/mid{ + opacity = 0; + pixel_y = -17 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "pB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -3668,9 +3620,14 @@ /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) "pD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/hardpoint/locomotion/apc_wheels, -/turf/open/floor/almayer/plate, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "pF" = ( /obj/structure/sign/safety/galley{ @@ -3683,6 +3640,23 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) +"pG" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + name = "\improper Storage Bay Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"pH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "pI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -3694,12 +3668,8 @@ /area/golden_arrow/platoonarmory) "pJ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) @@ -3715,6 +3685,10 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) +"pM" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "pN" = ( /obj/structure/prop/dam/crane{ bound_height = 32; @@ -3724,27 +3698,21 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"pO" = ( +/obj/structure/machinery/body_scanconsole{ + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) "pP" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"pQ" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "apc1blastdoor"; - name = "vehicle bay blast door control"; - pixel_y = 28 - }, -/obj/structure/machinery/door_control/brbutton{ - id = "apcbayrailing1"; - name = "vehicle bay railing control"; - pixel_x = 13; - pixel_y = 28 + icon_state = "S"; + pixel_x = -8 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/obj/structure/machinery/light, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "pR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -3754,16 +3722,8 @@ /area/golden_arrow/platoon_commander_rooms) "pS" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/storage/belt/utility/full{ - pixel_y = 12 - }, -/obj/item/storage/belt/utility/full{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "pU" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/cable{ @@ -3771,6 +3731,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoon_commander_rooms) +"pV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "equipment_conny"; + name = "\improper Squad One Equipment Locker" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonarmory) "pW" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, @@ -3781,38 +3752,48 @@ name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"pY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/mono, -/area/golden_arrow/cryo_cells) -"pZ" = ( -/obj/effect/decal/cleanable/blood/oil, +"qa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "qb" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/west, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"qe" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "apcbayrailing1" +"qd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 }, -/turf/open/floor/almayer/black, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "qf" = ( -/obj/structure/machinery/cm_vending/sorted/medical/no_access{ - density = 0; - pixel_y = 24 +/obj/structure/machinery/door_control/brbutton{ + id = "apc1blastdoor"; + name = "vehicle bay blast door control"; + pixel_y = 28 }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/medical) +/obj/structure/machinery/door_control/brbutton{ + id = "apcbayrailing1"; + name = "vehicle bay railing control"; + pixel_x = 13; + pixel_y = 28 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "qh" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -3832,6 +3813,13 @@ /obj/structure/machinery/cm_vending/gear/synth, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) +"qj" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "qk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -3841,17 +3829,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) -"ql" = ( -/obj/structure/closet/secure_closet/marine_personal{ - job = "Platoon Sergeant"; - pixel_x = -7 - }, -/obj/structure/closet/secure_closet/marine_personal{ - job = "Platoon Corpsman"; - pixel_x = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) "qm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -3868,12 +3845,34 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"qp" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" +"qo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"qp" = ( +/obj/item/reagent_container/food/condiment/sugar, +/obj/item/reagent_container/food/condiment/enzyme, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/structure/closet{ + desc = "It's a fancy storage unit for long-life foodstuffs."; + name = "long-life foodstuff storage" + }, +/obj/item/storage/box/powderedmilk, +/obj/item/reagent_container/food/condiment/juice/egg, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/obj/item/reagent_container/food/snacks/flour, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "qr" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/photocopier{ @@ -3885,6 +3884,16 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) +"qu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "qv" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, @@ -3903,16 +3912,36 @@ /turf/open/floor/almayer, /area/golden_arrow/platoonprep) "qy" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/medical_pod/bodyscanner{ + pixel_y = 6 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"qA" = ( /obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) +"qA" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "apcbayrailing1" + }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/black/west, /area/golden_arrow/hangar) +"qC" = ( +/obj/structure/machinery/microwave{ + density = 0; + pixel_y = 9 + }, +/obj/item/reagent_container/food/drinks/coffee/marine{ + pixel_x = 9; + pixel_y = -3 + }, +/obj/item/storage/box/donkpockets{ + pixel_x = 4; + pixel_y = 22 + }, +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "qD" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/cable/heavyduty{ @@ -3940,9 +3969,19 @@ /obj/effect/decal/strata_decals/grime/grime3, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"qP" = ( +"qO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/storage/fancy/cigarettes/lucky_strikes_4{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/storage/fancy/cigar/matchbook{ + pixel_x = -1; + pixel_y = 6 + }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/platoonprep) "qQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -3950,36 +3989,32 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"qT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "apcbayrailing2" +"qR" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4 }, -/turf/open/floor/almayer/black/east, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) -"qV" = ( -/obj/structure/machinery/door_control/brbutton{ - id = "apc2blastdoor"; - name = "vehicle bay blast door control"; - pixel_y = 28 - }, -/obj/structure/machinery/door_control/brbutton{ - id = "apcbayrailing2"; - name = "vehicle bay railing control"; - pixel_x = 13; - pixel_y = 28 +"qT" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"qY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" +"qV" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/supply) +"qX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + name = "\improper Storage Bay Blast Door" }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"qY" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "ra" = ( @@ -4006,23 +4041,13 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"rc" = ( -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/golden_arrow/hangar) -"rf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"re" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "apc1blastdoor"; + name = "\improper Vehicle Bay One Blast Door" }, -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "rg" = ( /obj/effect/decal/cleanable/dirt, @@ -4034,15 +4059,21 @@ /turf/open/floor/almayer, /area/golden_arrow/dorms) "ri" = ( +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"rj" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/largecrate/supply/supplies/mre{ + layer = 3.1 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) +/area/golden_arrow/hangar) "rk" = ( /obj/effect/decal/strata_decals/grime/grime1{ dir = 1 @@ -4071,13 +4102,13 @@ /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) "rn" = ( -/obj/structure/machinery/sleep_console{ - dir = 4; - pixel_y = 6 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/cryo_cells) "ro" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ @@ -4086,27 +4117,59 @@ /turf/open/floor/almayer, /area/golden_arrow/synthcloset) "rp" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 27 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = 27 + }, /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/door/poddoor/railing{ - id = "apcbayrailing1" +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + layer = 3.6; + pixel_y = 18 }, -/turf/open/floor/almayer/black/north, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) "rq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds1{ + locked = 1; + name = "\improper Tripoli cargo door" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/golden_arrow/hangar) +"rs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 + }, +/obj/structure/cable{ + icon_state = "0-4" }, +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer, +/area/golden_arrow/dorms) +"rt" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) +/area/golden_arrow/cryo_cells) "ru" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/platoonprep) +/obj/structure/closet/secure_closet/marine_personal{ + job = "Platoon Sergeant"; + pixel_x = -7 + }, +/obj/structure/closet/secure_closet/marine_personal{ + job = "Platoon Corpsman"; + pixel_x = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "rv" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -4118,45 +4181,28 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"rx" = ( -/obj/structure/surface/table/almayer, +"rw" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/ammo_box/magazine/misc/mre{ - pixel_y = 11 - }, -/obj/item/prop/helmetgarb/flair_io{ - pixel_x = -5; - pixel_y = -9 +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/platoonprep) +/area/golden_arrow/hangar) "rz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/landinglight/ds1{ dir = 8 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "rB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"rE" = ( +/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/cryo_cells) -"rC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) "rI" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, @@ -4170,13 +4216,6 @@ "rP" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/shared_office) -"rR" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_x = 3; - pixel_y = -7 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, -/area/golden_arrow/hangar) "rV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -4188,28 +4227,12 @@ /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) "rW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) -"rX" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = -29 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; - pixel_y = -29 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/prep_hallway) "rY" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/cable/heavyduty{ @@ -4229,17 +4252,15 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonprep) -"se" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "bay2door"; - name = "\improper Weapons Bay Two Blast Door" +"sf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/squad_sergeant{ + name = "squad one sergeant locker"; + req_access_txt = "32;39"; + req_one_access = list() }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoonprep) "sg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/item/tool/warning_cone{ @@ -4249,36 +4270,18 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "si" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/medical/ointment{ - pixel_x = 2; - pixel_y = 34 +/obj/structure/closet/secure_closet/smartgunner{ + name = "squad one smartgunner locker"; + req_access_txt = "14;39"; + req_one_access = list() }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"sj" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "weapons_conny"; - name = "\improper Squad One Weapons Locker"; - pixel_y = -4 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonarmory) -"sm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoonprep) "so" = ( -/obj/structure/stairs/perspective, -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "sq" = ( /obj/effect/decal/warning_stripes{ @@ -4295,22 +4298,14 @@ /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) "st" = ( -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/prep_hallway) +/turf/open/floor/almayer/uscm/directional/up_down/northeast, +/area/golden_arrow/hangar) "su" = ( /obj/structure/bed/chair/comfy{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"sw" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - name = "\improper Storage Bay Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) "sz" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -4323,45 +4318,33 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) "sB" = ( -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/cryo_cells) -"sC" = ( -/obj/structure/closet/crate/trashcart{ - pixel_y = 11 - }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; + icon_state = "SE-out"; pixel_x = 1 }, -/obj/structure/sign/safety/coffee{ - pixel_x = 13; - pixel_y = 29 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/item/trash/candy, -/obj/item/trash/burger, -/obj/item/trash/cigbutt, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/area/golden_arrow/hangar) "sD" = ( -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/platoonarmory) -"sE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) "sF" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/plating, /area/golden_arrow/hangar) "sL" = ( -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, /obj/structure/machinery/light{ - dir = 1 + dir = 4 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) @@ -4392,30 +4375,22 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "sP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"sU" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/structure/machinery/light{ + dir = 8 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "sV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/landinglight/ds1{ + dir = 4 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "sY" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -4432,14 +4407,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"tc" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "apcbayrailing1" - }, -/turf/open/floor/almayer/black/east, -/area/golden_arrow/hangar) "td" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -4451,6 +4418,18 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"tf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "tg" = ( /obj/structure/surface/table/almayer, /obj/item/prop/almayer/comp_open{ @@ -4472,22 +4451,51 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"ti" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "apc2blastdoor"; + name = "\improper Vehicle Bay Two Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"tk" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/engineering) "tl" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) +"tm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "tn" = ( /obj/structure/shuttle/part/dropship1/transparent/middle_left_wing{ name = "\improper Tripoli" }, /turf/open/floor/plating, /area/golden_arrow/hangar) +"to" = ( +/turf/open/floor/almayer/uscm/directional/up_down/southwest, +/area/golden_arrow/hangar) "tq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/engineering) +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "tr" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 4; @@ -4514,18 +4522,31 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"tw" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "bay2door"; - name = "\improper Weapons Bay Two Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) "tx" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) +"ty" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"tz" = ( +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer/blackcorner/east, +/area/golden_arrow/hangar) "tB" = ( /obj/structure/bed/chair/comfy, /obj/structure/pipes/standard/simple/hidden/supply, @@ -4534,48 +4555,16 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"tF" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "apcbayrailing1" +"tD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 }, -/turf/open/floor/almayer/black, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"tH" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "apcbayrailing2" - }, -/turf/open/floor/almayer/black/west, +"tG" = ( +/turf/open/floor/almayer/uscm/directional/up_down/east, /area/golden_arrow/hangar) -"tI" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_x = 12; - pixel_y = 18 - }, -/obj/item/trash/plate{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/trash/plate{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/reagent_container/food/condiment/hotsauce/tabasco{ - pixel_y = 18; - pixel_x = 2 - }, -/obj/item/trash/plate{ - pixel_x = -4; - pixel_y = 7 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) "tL" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -4603,18 +4592,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"tM" = ( -/obj/structure/machinery/floodlight/landing/floor{ - pixel_x = -2 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"tN" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/hangar) "tO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ @@ -4639,24 +4616,13 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) -"tR" = ( -/obj/structure/largecrate/supply/weapons/m56d{ - pixel_x = 9; - pixel_y = 10 - }, -/obj/structure/largecrate/supply/weapons/m56d{ - pixel_x = 9; - pixel_y = 25 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"tQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/prep_hallway) "tS" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -4680,27 +4646,25 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "tW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/photocopier{ - pixel_y = 4 +/obj/structure/machinery/door/poddoor/railing{ + dir = 8 }, -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/cable{ - icon_state = "0-2" +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"tZ" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/roller{ + pixel_y = 17 }, -/turf/open/floor/almayer, -/area/golden_arrow/platoon_commander_rooms) -"tY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = -29 +/obj/item/roller{ + pixel_y = 23 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; - pixel_y = -29 +/obj/item/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 1 }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "ua" = ( /obj/structure/sign/safety/ladder{ pixel_y = 29 @@ -4731,14 +4695,29 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "uc" = ( -/obj/structure/pipes/vents/scrubber{ +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"ue" = ( +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 4 + }, +/obj/structure/machinery/light{ dir = 8 }, -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "apcbayrailing2" +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"ug" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/turf/open/floor/almayer/black, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/golden_arrow/hangar) "uh" = ( /turf/closed/wall/almayer/outer, @@ -4754,12 +4733,25 @@ "uk" = ( /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"um" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8 +"un" = ( +/obj/structure/closet/wardrobe{ + name = "PT uniform" + }, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/head/headband/red, +/obj/item/clothing/under/shorts/red, +/obj/structure/barricade/handrail{ + layer = 3.1; + pixel_y = -1 }, /turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) +"up" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/supply) "uq" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/vents/pump, @@ -4799,26 +4791,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"uu" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/food/drinks/coffee/marine{ - pixel_x = -4; - pixel_y = 14 - }, -/obj/item/ashtray/plastic{ - pixel_x = -10; - pixel_y = 3 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"ux" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/mechanical/green{ - pixel_y = 6 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "uy" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/drinks/coffee/marine{ @@ -4867,16 +4839,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"uG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) "uI" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -4885,6 +4847,10 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"uJ" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "uK" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -4898,6 +4864,11 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) +"uL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "uM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -4911,24 +4882,70 @@ /turf/open/floor/almayer, /area/golden_arrow/dorms) "uP" = ( -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/golden_arrow/hangar) +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "squadarmory"; + name = "\improper Gear Lockers" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonprep) "uQ" = ( +/obj/structure/cargo_container/wy/right{ + opacity = 0; + pixel_y = -17 + }, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/device/flashlight/lamp/on{ + layer = 4.2; + pixel_x = 3; + pixel_y = 19 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/area/golden_arrow/hangar) "uT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/cryo_cells) +"uU" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; pixel_x = -1 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"uV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/disposal, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/area/golden_arrow/briefing) "uW" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -4991,10 +5008,6 @@ "vb" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/dorms) -"ve" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) "vf" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -5005,21 +5018,35 @@ /obj/structure/closet/secure_closet, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"vh" = ( -/obj/structure/ship_ammo/rocket/widowmaker, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) "vi" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/cable{ + icon_state = "1-2" }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/engineering) +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"vj" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "vm" = ( /obj/structure/shuttle/part/dropship1/left_inner_wing_connector{ name = "\improper Tripoli" @@ -5067,46 +5094,51 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"vB" = ( -/obj/structure/machinery/door/poddoor/almayer, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" +"vA" = ( +/obj/item/prop/almayer/box{ + pixel_y = 17 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/prep_hallway) -"vC" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/golden_arrow/hangar) +"vB" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 }, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "S" }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"vH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"vC" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/light{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"vH" = ( +/obj/structure/ship_ammo/rocket/napalm, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) -"vI" = ( -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/platoonarmory) "vJ" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "bay1door"; - name = "\improper Weapons Bay One Blast Door" +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "vK" = ( /obj/structure/machinery/door/poddoor/almayer/open{ @@ -5114,18 +5146,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"vL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/briefing) -"vM" = ( -/obj/structure/closet, -/obj/item/maintenance_jack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/synthcloset) "vP" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/computer/cameras/almayer/vehicle{ @@ -5180,25 +5200,26 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "vT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/largecrate/random/case/small{ - layer = 3.1; - pixel_x = 3; - pixel_y = 35 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/small, +/obj/structure/machinery/light{ + dir = 1 }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "vU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"vX" = ( +/obj/item/tool/weldingtool{ + pixel_y = 6 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/golden_arrow/hangar) +"vY" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) @@ -5209,13 +5230,17 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"wa" = ( +"wc" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/hangar) "wd" = ( /obj/structure/machinery/power/terminal, /turf/open/floor/plating/plating_catwalk, @@ -5243,19 +5268,12 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"wk" = ( -/obj/effect/landmark/start/marine/smartgunner/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/cryo_cells) "wl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 2; - name = "\improper Storage Bay Blast Door" +/obj/vehicle/powerloader{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "wn" = ( /obj/effect/decal/warning_stripes{ @@ -5264,58 +5282,13 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"wo" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) "wp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"wq" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/comp_open{ - pixel_x = -12; - pixel_y = 9 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet{ - pixel_x = 8; - pixel_y = 11 - }, -/obj/item/trash/chips{ - layer = 2.7; - pixel_y = -9 +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing1" }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/black/north, /area/golden_arrow/hangar) -"ws" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/platoonprep) -"wv" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -29 - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/platoonarmory) "ww" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -5325,6 +5298,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonprep) +"wA" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "wE" = ( /obj/structure/machinery/cm_vending/sorted/uniform_supply/squad_prep{ req_access = list(); @@ -5349,15 +5329,7 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "wI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/no_build/plate, /area/golden_arrow/hangar) "wJ" = ( /obj/structure/machinery/light{ @@ -5369,53 +5341,41 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/shared_office) "wK" = ( -/obj/item/tool/weldingtool{ - pixel_y = 6 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/golden_arrow/hangar) -"wM" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 8; - pixel_x = -3 +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/medical/ointment{ + pixel_x = 2; + pixel_y = 34 }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"wO" = ( -/obj/structure/sink{ - layer = 3.1; - pixel_y = 24 +/area/golden_arrow/cryo_cells) +"wM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -16 }, -/obj/structure/mirror{ - pixel_x = -1; - pixel_y = 35 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) +/area/golden_arrow/medical) +"wN" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/computer/shuttle/dropship/flight, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/golden_arrow/hangar) "wQ" = ( /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) "wR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "wT" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/mono, +/area/golden_arrow/cryo_cells) "wU" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -5439,28 +5399,14 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"wW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "wY" = ( /obj/effect/decal/cleanable/dirt, /turf/closed/wall/almayer/outer, /area/golden_arrow/hangar) "wZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/structure/surface/table/almayer, +/obj/item/hardpoint/support/flare_launcher{ + pixel_y = 11 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) @@ -5472,40 +5418,28 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) "xd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) -"xe" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out" - }, -/obj/structure/machinery/light{ - dir = 4 + icon_state = "W"; + layer = 3.3 }, -/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"xf" = ( -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - name = "\improper Storage Bay Blast Door" +"xe" = ( +/obj/structure/closet/secure_closet/smartgunner{ + name = "squad two smartgunner locker"; + req_access_txt = "14;40"; + req_one_access = list() }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"xg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoonprep) "xh" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/flight_recorder{ + pixel_y = 3 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) +/area/golden_arrow/hangar) "xi" = ( /obj/structure/bed{ can_buckle = 0 @@ -5519,65 +5453,29 @@ /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) "xk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/prep_hallway) "xl" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"xo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"xq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" +"xn" = ( +/obj/structure/machinery/door/airlock/multi_tile/elevator/research{ + name = "\improper Supply Elevator Hatch" }, -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"xt" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 4 +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/supply) +"xo" = ( +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"xv" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/blackcorner/west, /area/golden_arrow/hangar) -"xx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) "xB" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -5590,36 +5488,34 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"xE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +"xC" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 32; + pixel_y = 6 }, -/obj/structure/largecrate/random/case{ - pixel_y = 5 +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/prep_hallway) +"xD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/largecrate/random/case/double{ - pixel_y = 15 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, -/obj/structure/largecrate/random/case{ - pixel_y = -5 - }, -/obj/structure/largecrate/random/mini/small_case{ - layer = 3.1; - pixel_x = 8; - pixel_y = 14 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/machinery/light{ + dir = 8 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/cryo_cells) "xG" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "xI" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -5637,19 +5533,14 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"xL" = ( -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 8 - }, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8 +"xM" = ( +/obj/structure/machinery/sleep_console{ + dir = 4; + pixel_y = 6 }, -/turf/open/floor/almayer/dark_sterile, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/medical) -"xM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) "xN" = ( /obj/effect/landmark/observer_start, /turf/open/floor/almayer, @@ -5659,16 +5550,25 @@ /obj/item/tool/warning_cone, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"xQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "xU" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/structure/platform{ + dir = 1 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) "xV" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -5680,19 +5580,14 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"xW" = ( -/obj/structure/sign/banners/united_americas_flag{ - pixel_x = -30; - pixel_y = 31 - }, +"xX" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/vending/dinnerware, -/obj/item/ashtray/glass{ - pixel_x = -3; - pixel_y = 13 +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "xY" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, @@ -5702,20 +5597,22 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) -"yd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +"ya" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/machinery/light{ +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"yd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + name = "\improper Storage Bay Two Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "ye" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/vents/scrubber{ @@ -5723,55 +5620,60 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"yj" = ( +"yi" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/effect/decal/strata_decals/grime/grime3, +/obj/structure/largecrate/supply/ammo{ + fill_from_loc = 1; + name = "materials crate" }, -/obj/structure/largecrate/supply/supplies/sandbags{ - layer = 4.2; - pixel_y = 7 +/obj/item/stack/sheet/metal/large_stack, +/obj/item/stack/sheet/plasteel{ + amount = 40; + pixel_x = 7; + pixel_y = 6 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"yk" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 +"yj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/cable{ + icon_state = "0-2" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"yl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 +/obj/structure/closet/crate/trashcart{ + pixel_y = 11 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/item/prop/colony/usedbandage, +/obj/item/prop/colony/usedbandage{ + dir = 4 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"yp" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = -20; - pixel_y = -7 +/obj/item/prop/colony/usedbandage{ + dir = 6; + pixel_y = 6 }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -20; - pixel_y = 7 +/obj/item/prop/colony/usedbandage{ + dir = 10; + pixel_y = 13 }, +/obj/item/storage/pill_bottle, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"yn" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/prep_hallway) -"yq" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 +/obj/structure/bed/bedroll{ + buckle_lying = null; + can_buckle = 0; + color = "#333333"; + desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise."; + foldabletype = null; + name = "gym mat"; + pixel_x = -2 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) "ys" = ( /obj/item/storage/toolbox/mechanical/green{ @@ -5788,35 +5690,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"yu" = ( -/turf/open/floor/almayer/uscm/directional/up_down, -/area/golden_arrow/hangar) -"yv" = ( -/obj/structure/closet/coffin/woodencrate, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/item/ammo_magazine/rifle/m4ra/pve, -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/gun/rifle/m4ra/pve{ - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoonprep) -"yy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 1; - pixel_y = -26 +"yz" = ( +/obj/structure/stairs/perspective, +/obj/structure/platform{ + dir = 4; + layer = 2.7 }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/prep_hallway) +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/golden_arrow/hangar) "yB" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -5827,78 +5708,68 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"yD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "weapons_conny"; - name = "\improper Squad Two Weapons Locker"; - pixel_y = -4 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonarmory) -"yJ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/platoon_commander_rooms) -"yL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, +"yC" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/item/tool/wet_sign{ - pixel_x = -14; - pixel_y = 14 + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/item/tool/wet_sign{ - pixel_x = -17; - pixel_y = 10 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/item/tool/wet_sign{ - pixel_x = -13; - pixel_y = 6 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"yG" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/item/tool/wet_sign{ - pixel_x = -15; - pixel_y = 2 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/item/tool/wet_sign{ - pixel_x = -13; - pixel_y = -2 +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"yI" = ( +/obj/structure/largecrate/supply/weapons/m56d{ + pixel_x = 9; + pixel_y = 10 }, -/obj/item/tool/wet_sign{ - pixel_x = 1; - pixel_y = 16 +/obj/structure/largecrate/supply/weapons/m56d{ + pixel_x = 9; + pixel_y = 25 }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"yO" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 21 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"yP" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Prep Lockers" +/area/golden_arrow/hangar) +"yM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/cable{ + icon_state = "0-4"; + layer = 2.36 }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer, /area/golden_arrow/platoonprep) +"yN" = ( +/obj/effect/landmark/start/marine/leader/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/cryo_cells) +"yO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/cryo_cells) "yQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -5921,6 +5792,16 @@ "yS" = ( /turf/open/floor/plating, /area/golden_arrow/engineering) +"yV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "yW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -5930,25 +5811,6 @@ "yX" = ( /turf/open/floor/plating, /area/golden_arrow/hangar) -"yY" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/cable{ - icon_state = "0-8"; - layer = 2.36 - }, -/turf/open/floor/almayer, -/area/golden_arrow/briefing) -"yZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/railing{ - dir = 4; - id = "apcbayrailing2" - }, -/turf/open/floor/almayer/black/east, -/area/golden_arrow/hangar) "za" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -5958,49 +5820,25 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"zb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "zc" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/hangar) +/obj/structure/machinery/power/smes/buildable, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) "zd" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 32; - pixel_y = 6 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/prep_hallway) +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/hangar) "ze" = ( -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer/blackcorner, +/obj/structure/machinery/floodlight/landing/floor, +/obj/structure/machinery/landinglight/ds1, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "zh" = ( -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/synthcloset) -"zi" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 1 +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 4; + name = "\improper Hangar Lockdown Blast Door" }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "zj" = ( /obj/effect/decal/cleanable/dirt, @@ -6050,12 +5888,17 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"zo" = ( -/obj/effect/landmark/start/bridge, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/cryo_cells) +"zn" = ( +/obj/structure/machinery/cm_vending/gear/medic_chemical, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"zp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "zq" = ( /obj/structure/machinery/shower{ dir = 8 @@ -6065,18 +5908,9 @@ "zs" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/briefing) -"zu" = ( -/obj/structure/largecrate/random/case/double, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) "zv" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/mono, +/area/golden_arrow/cryo_cells) "zw" = ( /obj/structure/window/framed/almayer, /obj/structure/pipes/standard/simple/hidden/supply, @@ -6095,58 +5929,87 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"zA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/engineering_welding, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "zD" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/hangar) "zE" = ( -/obj/structure/machinery/door/poddoor/railing{ +/obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) +/area/golden_arrow/hangar) "zF" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"zK" = ( +"zI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 8 + }, /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + icon_state = "W" }, -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"zO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "apcbayrailing1" + }, +/turf/open/floor/almayer/black/east, /area/golden_arrow/hangar) -"zM" = ( +"zT" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out" + icon_state = "E" }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"zN" = ( -/obj/structure/bed/chair/dropship/pilot{ - dir = 1 +"zV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/golden_arrow/hangar) -"zQ" = ( -/obj/effect/decal/strata_decals/grime/grime2{ +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/obj/structure/largecrate/random/secure, -/obj/structure/machinery/light, -/turf/open/floor/almayer/cargo, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"zU" = ( -/turf/open/floor/almayer/no_build/plate, +"zW" = ( +/obj/structure/bed/bedroll{ + buckle_lying = null; + can_buckle = 0; + color = "#333333"; + desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise."; + foldabletype = null; + name = "gym mat"; + pixel_x = -2; + pixel_y = -3 + }, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/hangar) "zX" = ( /obj/structure/bed/chair, @@ -6155,48 +6018,54 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"zZ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" +"Ac" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/structure/largecrate/supply/supplies/flares{ - pixel_x = -3; - pixel_y = 9 +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "bay1door"; + name = "\improper Weapons Bay One Blast Door" }, /turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) -"Ac" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +"Ad" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/cryo_cells) "Ae" = ( -/obj/structure/surface/rack{ - pixel_y = 14; - pixel_x = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 1 }, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_x = -10; - pixel_y = 6 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/hangar) +"Ag" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/double, +/obj/item/storage/box/cups{ + pixel_x = -1; + pixel_y = 16 }, -/obj/item/reagent_container/food/condiment/peppermill{ - pixel_y = 26; +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"Aj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"Al" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; pixel_x = 1 }, -/obj/item/reagent_container/food/condiment/saltshaker{ - pixel_y = 26; - pixel_x = -3 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_x = 10; - pixel_y = 28 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"Am" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delayone, +/obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Ao" = ( @@ -6207,16 +6076,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) -"Ar" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +"Ap" = ( +/obj/structure/surface/table/almayer, +/obj/structure/bedsheetbin{ + pixel_y = 14 }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Second Platoon Ready Bay Blast Door" +/obj/item/storage/pill_bottle/paracetamol{ + pixel_x = -5 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "As" = ( /obj/structure/pipes/vents/pump, /obj/structure/disposalpipe/segment{ @@ -6225,6 +6094,15 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) +"At" = ( +/obj/structure/largecrate/supply/medicine/medkits{ + layer = 3.1; + pixel_x = 8; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/hangar) "Aw" = ( /obj/structure/bed{ can_buckle = 0; @@ -6269,15 +6147,23 @@ /obj/structure/foamed_metal, /turf/open/floor/plating, /area/golden_arrow/platoon_commander_rooms) -"AB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +"AA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "apcbayrailing1" +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, -/turf/open/floor/almayer/black, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"AB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "AC" = ( /obj/effect/decal/warning_stripes{ @@ -6287,30 +6173,13 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "AE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/computer/cryopod{ - pixel_x = 6; - pixel_y = -2 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"AF" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"AI" = ( /obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "equipment_conny"; + name = "\improper Squad Two Equipment Locker" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonarmory) "AK" = ( /obj/structure/machinery/cryopod, /turf/open/floor/plating/plating_catwalk, @@ -6337,16 +6206,26 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) +"AO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "AP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door_control/brbutton{ - id = "squadblastdoor"; - name = "hangar blast door control"; - pixel_y = 28; - req_one_access_txt = "19;12" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/platoonarmory) +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/prep_hallway) "AQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine/uscm/command/capt{ @@ -6354,20 +6233,40 @@ }, /turf/open/floor/almayer, /area/golden_arrow/shared_office) +"AR" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 27 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = 27 + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/hangar) "AS" = ( -/obj/structure/machinery/power/reactor{ - name = "\improper S-52 fusion reactor 17" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer, -/area/golden_arrow/engineering) -"AW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3; - pixel_x = -1 +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "apcbayrailing1" }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) +/turf/open/floor/almayer/black, +/area/golden_arrow/hangar) +"AT" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + name = "\improper Storage Bay Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"AX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/mono, +/area/golden_arrow/supply) "AY" = ( /obj/structure/foamed_metal, /turf/open/floor/plating, @@ -6393,21 +6292,28 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) +"Bb" = ( +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "Bd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/cargo_arrow/west, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Be" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "weapons_conny"; - name = "\improper Squad Two Weapons Locker"; - pixel_y = -4 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonarmory) +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Bf" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice3"; @@ -6421,50 +6327,41 @@ /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) "Bi" = ( -/obj/structure/largecrate/supply/floodlights, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, +/obj/effect/vehicle_spawner/apc_movie/fixed{ + dir = 8 + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"Bj" = ( +/obj/structure/machinery/recharge_station, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/synthcloset) "Bk" = ( /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"Bm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" +"Bo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Bn" = ( -/obj/item/prop/almayer/comp_open{ - pixel_x = 40; - pixel_y = 4 +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/obj/structure/prop{ - color = "#b30000"; - icon = 'icons/obj/pipes/power_cond_white.dmi'; - icon_state = "4-5"; - layer = 2.8; - name = "cable"; - pixel_x = 5; - pixel_y = 2 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, -/area/golden_arrow/hangar) -"Bo" = ( -/obj/structure/closet/secure_closet/marine_personal{ - job = "Platoon Commander" +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonprep) +"Bq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/item/clothing/under/marine/officer/boiler, -/obj/item/clothing/suit/storage/jacket/marine/service, -/obj/item/clothing/suit/storage/jacket/marine/dress/officer/bomber, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"Bp" = ( -/obj/structure/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "Br" = ( /obj/structure/machinery/computer/station_alert{ dir = 8; @@ -6479,46 +6376,47 @@ /turf/open/floor/almayer, /area/golden_arrow/synthcloset) "Bt" = ( -/obj/item/tool/screwdriver{ - icon_state = "screwdriver3"; - layer = 3.03; - pixel_x = -4; - pixel_y = 7 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/golden_arrow/hangar) -"Bv" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ +/obj/structure/pipes/vents/scrubber{ dir = 8 }, -/obj/structure/surface/rack, -/obj/item/tool/weldingtool/hugetank, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer, -/area/golden_arrow/synthcloset) -"Bx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) +"Bu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "equipment_conny"; - name = "\improper Squad One Equipment Locker" +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"Bx" = ( +/obj/structure/closet/crate/trashcart{ + pixel_y = 11 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonarmory) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/safety/coffee{ + pixel_x = 13; + pixel_y = 29 + }, +/obj/item/trash/candy, +/obj/item/trash/burger, +/obj/item/trash/cigbutt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "By" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"BB" = ( -/obj/structure/largecrate/supply/medicine/medkits{ - layer = 3.1; - pixel_x = 8; - pixel_y = 24 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/hangar) "BC" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" @@ -6539,67 +6437,84 @@ /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) "BE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - name = "\improper Hangar Lockdown Blast Door" +/obj/structure/closet/firecloset, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 }, -/turf/open/floor/almayer/test_floor4, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice3"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/cryo_cells) +"BG" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 38 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = 38 + }, +/obj/structure/sign/safety/ammunition{ + pixel_y = 26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) "BI" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "equipment_conny"; - name = "\improper Squad One Equipment Locker" +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonarmory) -"BK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "apcbayrailing1" +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/black/west, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "BM" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "Bathroom" +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger{ + pixel_x = -8; + pixel_y = 3 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"BP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/largecrate/supply/supplies/flares{ + pixel_x = -3; + pixel_y = 9 }, /turf/open/floor/almayer/test_floor4, -/area/golden_arrow/cryo_cells) -"BN" = ( +/area/golden_arrow/hangar) +"BR" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/light, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"BR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/cryo_cells) "BT" = ( /turf/closed/shuttle/midway/transparent{ icon_state = "86"; name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"BX" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) -"BY" = ( +"BW" = ( +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/platoonprep) +"BY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "Ca" = ( /obj/effect/decal/warning_stripes{ @@ -6638,17 +6553,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Cf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/hangar) "Ch" = ( /obj/effect/decal/siding{ icon_state = "siding4" @@ -6656,7 +6560,42 @@ /turf/open/floor/plating, /area/golden_arrow/hangar) "Ci" = ( -/turf/open/floor/almayer/test_floor4, +/obj/structure/surface/rack{ + pixel_y = 14; + pixel_x = 4 + }, +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_y = 26; + pixel_x = 1 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_y = 26; + pixel_x = -3 + }, +/obj/item/storage/box/drinkingglasses{ + pixel_x = 10; + pixel_y = 28 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Cj" = ( +/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 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Ck" = ( /obj/effect/decal/cleanable/dirt, @@ -6695,17 +6634,6 @@ dir = 9 }, /area/golden_arrow/supply) -"Cs" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"Ct" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/door/poddoor/railing{ - id = "apcbayrailing2" - }, -/turf/open/floor/almayer/black/north, -/area/golden_arrow/hangar) "Cu" = ( /obj/structure/bed/chair{ dir = 8 @@ -6716,27 +6644,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) -"Cz" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/hangar) -"CC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"CB" = ( +/obj/structure/platform{ + dir = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "N"; - pixel_y = 2 + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/golden_arrow/hangar) "CE" = ( /turf/closed/wall/almayer, /area/golden_arrow/medical) @@ -6746,10 +6663,11 @@ /turf/open/floor/almayer, /area/golden_arrow/engineering) "CH" = ( -/obj/structure/machinery/floodlight/landing/floor, -/obj/structure/machinery/landinglight/ds1, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/cryo_cells) "CJ" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -6767,34 +6685,66 @@ name = "\improper Tripoli" }, /area/golden_arrow/hangar) +"CO" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/briefing) "CQ" = ( /turf/closed/shuttle/midway{ icon_state = "94"; name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"CR" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "apcbayrailing1" - }, -/turf/open/floor/almayer/black/west, -/area/golden_arrow/hangar) "CS" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"CV" = ( +/obj/structure/surface/table/reinforced/prison, /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4 - }, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) +"CW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "CX" = ( /obj/structure/gun_rack/m41, /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) +"CY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"CZ" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -29 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = -29 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) "Da" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -6803,46 +6753,40 @@ /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) "Dd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/pipes/vents/pump{ dir = 8 }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/almayer/mono, -/area/golden_arrow/cryo_cells) -"De" = ( -/obj/structure/ship_ammo/minirocket, -/obj/structure/ship_ammo/minirocket{ - layer = 3.1; - pixel_y = 9 +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing2" }, -/turf/open/floor/almayer/cargo/southwest, +/turf/open/floor/almayer/black/north, /area/golden_arrow/hangar) -"Dg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/vehicle_spawner/apc_movie/fixed{ - dir = 8 +"Dh" = ( +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/cargo, +/area/golden_arrow/briefing) "Di" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_x = -16 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) "Dj" = ( /obj/structure/cable{ icon_state = "1-2" }, /turf/open/floor/almayer, /area/golden_arrow/briefing) +"Dk" = ( +/obj/structure/machinery/door/poddoor/almayer/locked{ + dir = 2; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "Dl" = ( /obj/structure/shuttle/part/dropship1/transparent/engine_left_exhaust{ name = "\improper Tripoli" @@ -6850,17 +6794,12 @@ /turf/open/floor/plating, /area/golden_arrow/hangar) "Dm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 +/obj/structure/machinery/door/poddoor/railing, +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonprep) +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) "Do" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera{ @@ -6887,20 +6826,12 @@ /area/golden_arrow/cryo_cells) "Dr" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/cable{ - icon_state = "0-8"; - layer = 2.36 + icon_state = "SW-out" }, -/turf/open/floor/almayer, -/area/golden_arrow/platoonarmory) -"Du" = ( -/obj/structure/machinery/power/smes/buildable, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/engineering) +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Dv" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/heavyduty{ @@ -6912,6 +6843,10 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonprep) +"Dw" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "DA" = ( /turf/closed/wall/almayer, /area/golden_arrow/engineering) @@ -6939,12 +6874,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonprep) -"DG" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) "DI" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, @@ -6985,22 +6914,6 @@ "DQ" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/platoonprep) -"DR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2-8" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"DS" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonprep) "DV" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/poddoor/almayer{ @@ -7009,20 +6922,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"DW" = ( -/obj/structure/closet/firecloset, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice3"; - pixel_x = 16; - pixel_y = -15 - }, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/cryo_cells) "DY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/vents/pump{ @@ -7030,44 +6929,20 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"DZ" = ( +"Eb" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; + icon_state = "S"; pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Ee" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "bay1door"; - name = "\improper Weapons Bay One Blast Door" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/turf/open/floor/almayer/test_floor4, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/hangar) "Ei" = ( -/obj/item/reagent_container/food/condiment/sugar, -/obj/item/reagent_container/food/condiment/enzyme, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/structure/closet{ - desc = "It's a fancy storage unit for long-life foodstuffs."; - name = "long-life foodstuff storage" - }, -/obj/item/storage/box/powderedmilk, -/obj/item/reagent_container/food/condiment/juice/egg, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/obj/item/reagent_container/food/snacks/flour, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/platoonarmory) "Ek" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/cable/heavyduty{ @@ -7089,46 +6964,72 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"Er" = ( -/obj/structure/largecrate/supply/supplies/flares{ - layer = 2.9; - pixel_x = -7 +"Eq" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) -"Es" = ( +/turf/open/floor/almayer/plate, +/area/golden_arrow/engineering) +"Er" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/dark_sterile, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "Et" = ( -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" +/obj/structure/largecrate/supply/ammo/m41amk1, +/obj/structure/largecrate/supply/ammo/m41amk1{ + pixel_y = 10 }, -/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/hangar) +"Ev" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/blackcorner/west, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/cargo/southwest, /area/golden_arrow/hangar) -"Ev" = ( -/turf/open/floor/almayer/mono, -/area/golden_arrow/cryo_cells) "Ew" = ( -/obj/item/stack/catwalk{ - pixel_x = 4 +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing2" }, -/obj/item/stack/catwalk{ - pixel_x = -3; - pixel_y = 6 +/turf/open/floor/almayer/black/north, +/area/golden_arrow/hangar) +"Ey" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 1 }, -/obj/structure/machinery/landinglight/ds1{ - dir = 8 +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/hangar) +"EB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"EC" = ( +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "bay2door"; + name = "\improper Weapons Bay Two Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "ED" = ( /obj/docking_port/stationary/marine_dropship/golden_arrow_hangar, /turf/open/floor/plating, @@ -7140,16 +7041,6 @@ /obj/effect/decal/cleanable/liquid_fuel, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"EF" = ( -/obj/structure/ship_ammo/minirocket, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/ship_ammo/minirocket{ - layer = 3.1; - pixel_y = 9 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/golden_arrow/hangar) "EG" = ( /turf/open/space/basic, /area/space) @@ -7157,13 +7048,6 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"EO" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "cargolock"; - name = "\improper Cargo Elevator Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/supply) "ER" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -7198,17 +7082,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"EW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/platoonprep) -"EX" = ( -/obj/structure/surface/table/almayer, -/obj/item/hardpoint/support/flare_launcher{ - pixel_y = 11 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "EY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -7216,48 +7089,50 @@ /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) "Fa" = ( -/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 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Fb" = ( -/obj/structure/closet/secure_closet/marine_personal{ - job = "Smartgunner"; - pixel_x = 8 +/obj/structure/machinery/floodlight/landing/floor{ + pixel_x = -2 }, -/obj/structure/closet/secure_closet/marine_personal{ - job = "Squad Sergeant"; - pixel_x = -7 +/obj/structure/machinery/landinglight/ds1{ + dir = 4 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/area/golden_arrow/hangar) "Fc" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Fg" = ( -/obj/structure/pipes/vents/pump, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/golden_arrow/shared_office) -"Fh" = ( -/obj/structure/machinery/autodoc_console, +/area/golden_arrow/cryo_cells) +"Fd" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3; - pixel_x = -1 + icon_state = "N"; + pixel_y = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/autodoc{ - pixel_x = 32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) +"Fg" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/golden_arrow/shared_office) "Fi" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/light{ @@ -7266,19 +7141,12 @@ /turf/open/floor/almayer, /area/golden_arrow/engineering) "Fj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/box/bodybags{ - pixel_x = -5; - pixel_y = 11 - }, -/obj/item/storage/box/bodybags{ - pixel_x = -2; - pixel_y = 3 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 10; - pixel_y = 18 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer/dark_sterile, /area/golden_arrow/medical) @@ -7290,10 +7158,26 @@ /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) "Fm" = ( -/obj/structure/blocker/invisible_wall, -/obj/structure/machinery/computer/shuttle/dropship/flight, +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/golden_arrow/hangar) +"Fr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/obj/structure/bed/bedroll{ + buckle_lying = null; + can_buckle = 0; + color = "#333333"; + desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise."; + foldabletype = null; + name = "gym mat"; + pixel_y = -4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Fs" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -7306,11 +7190,15 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Ft" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) +"Fv" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/cryo_cells) "Fw" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -7323,28 +7211,11 @@ /turf/open/floor/almayer, /area/golden_arrow/synthcloset) "Fy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/structure/machinery/door/airlock/hatch/cockpit{ + locked = 1 }, -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/almayer/plate, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/golden_arrow/hangar) -"Fz" = ( -/obj/structure/closet/wardrobe{ - name = "PT uniform" - }, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/head/headband/red, -/obj/item/clothing/under/shorts/red, -/obj/structure/barricade/handrail{ - layer = 3.1; - pixel_y = -1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) "FE" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -7356,45 +7227,25 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "FG" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/item/stack/catwalk{ + pixel_x = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/obj/item/stack/catwalk{ + pixel_x = -3; + pixel_y = 6 }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/cryo_cells) -"FI" = ( -/obj/structure/machinery/light, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/landinglight/ds1{ dir = 8 }, -/obj/structure/cable{ - icon_state = "4-8" - }, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"FK" = ( -/obj/structure/cargo_container/kelland/left{ - layer = 3; - opacity = 0 - }, -/obj/structure/cargo_container/kelland/left{ - opacity = 0; - pixel_y = 22 - }, -/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) -"FL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +"FH" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "W"; + layer = 3.3 }, -/obj/structure/largecrate/supply/supplies/mre{ - layer = 3.1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) @@ -7414,6 +7265,13 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) +"FO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "FP" = ( /turf/closed/shuttle/midway{ icon_state = "25"; @@ -7426,6 +7284,12 @@ name = "\improper Tripoli" }, /area/golden_arrow/hangar) +"FT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "FV" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -7436,6 +7300,18 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"FX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/dorms) "FZ" = ( /obj/structure/surface/table/almayer, /obj/item/tool/soap/deluxe{ @@ -7444,6 +7320,21 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) +"Gf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/dorms) "Gg" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -7454,26 +7345,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"Gl" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/marine_food, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"Gm" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 21 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +"Gh" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/golden_arrow/hangar) "Go" = ( -/obj/structure/machinery/landinglight/ds1/delaytwo{ - dir = 4 - }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/cryo_cells) "Gp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, @@ -7484,13 +7361,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Gu" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/flight_recorder{ - pixel_y = 3 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "Gy" = ( /obj/structure/surface/table/almayer, /obj/structure/barricade/handrail{ @@ -7506,51 +7376,34 @@ /turf/closed/shuttle/elevator, /area/golden_arrow/supply) "GB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"GD" = ( -/obj/structure/machinery/computer/supply_drop_console/limited/alternate{ - density = 1 - }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) -"GE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"GH" = ( +"GC" = ( +/obj/structure/largecrate/random/case/double, /obj/effect/decal/cleanable/dirt, -/obj/structure/cable/heavyduty{ - icon_state = "1-8" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/golden_arrow/platoonprep) -"GJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/strata_decals/grime/grime3, -/obj/structure/largecrate/supply/ammo{ - fill_from_loc = 1; - name = "materials crate" - }, -/obj/item/stack/sheet/metal/large_stack, -/obj/item/stack/sheet/plasteel{ - amount = 40; - pixel_x = 7; - pixel_y = 6 +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"GD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/largecrate/random/mini/small_case/c{ + pixel_x = -11; + pixel_y = 9 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"GH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/golden_arrow/platoonprep) "GL" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/fire{ @@ -7562,27 +7415,22 @@ /turf/open/floor/almayer, /area/golden_arrow/engineering) "GN" = ( -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 1; - name = "\improper Assembly Room"; - req_access = list(); - req_one_access_txt = "19;12" - }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/pipes/vents/scrubber{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "apcbayrailing2" }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/briefing) +/turf/open/floor/almayer/black, +/area/golden_arrow/hangar) "GO" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/engineering) +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "apcbayrailing1" + }, +/turf/open/floor/almayer/black, +/area/golden_arrow/hangar) "GP" = ( /obj/structure/bed/chair{ dir = 8 @@ -7604,12 +7452,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"GR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) +"GS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "GU" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -7630,83 +7478,76 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) "GX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"Hc" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"Hd" = ( +"GY" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/almayer/no_build/plate, +/area/golden_arrow/hangar) +"GZ" = ( +/obj/structure/ship_ammo/minirocket, +/obj/effect/decal/cleanable/dirt, +/obj/structure/ship_ammo/minirocket{ + layer = 3.1; + pixel_y = 9 + }, +/turf/open/floor/almayer/cargo/southwest, +/area/golden_arrow/hangar) +"Hb" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/stool{ + pixel_x = -1; + pixel_y = 12 }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"Hh" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; + layer = 2.5; pixel_y = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) +/area/golden_arrow/hangar) "Hi" = ( /obj/structure/cargo_container/arious/mid, /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Hj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/disposal, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) "Hk" = ( /obj/structure/surface/table/almayer, /obj/item/toy/deck/uno, /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/dorms) -"Hl" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "Hp" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/golden_arrow/medical) "Hq" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "Hr" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" +/obj/structure/machinery/door/poddoor/almayer{ + id = "cargolock"; + name = "\improper Cargo Elevator Blast Door" }, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/prep_hallway) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/supply) "Hs" = ( /obj/structure/bed/chair{ dir = 8; @@ -7718,27 +7559,34 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/dorms) "Ht" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +/obj/vehicle/powerloader{ dir = 4 }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Hu" = ( -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" - }, /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/turf/open/floor/almayer/blackcorner, -/area/golden_arrow/hangar) +/obj/structure/machinery/door/poddoor/almayer/open{ + closed_layer = 3.3; + dir = 4; + id = "squadblastdoor"; + layer = 3.3; + name = "First Platoon Ready Bay Blast Door"; + open_layer = 3.3 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonarmory) "Hv" = ( /obj/structure/machinery/light{ dir = 1 @@ -7749,6 +7597,14 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/golden_arrow/platoon_commander_rooms) +"Hx" = ( +/obj/structure/stairs/perspective, +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/golden_arrow/hangar) "Hy" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ @@ -7760,6 +7616,23 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) +"Hz" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/golden_arrow/hangar) +"HB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "HD" = ( /turf/closed/shuttle/midway/transparent{ icon_state = "38"; @@ -7777,24 +7650,16 @@ /obj/item/defenses/handheld/sentry, /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) -"HG" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light, -/obj/item/tool/soap/deluxe, -/obj/item/tool/soap{ - pixel_x = 3; - pixel_y = 15 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) "HI" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/obj/structure/cargo_container/kelland/left{ + layer = 3; + opacity = 0 }, -/obj/structure/machinery/door/poddoor/railing{ - id = "apcbayrailing1" +/obj/structure/cargo_container/kelland/left{ + opacity = 0; + pixel_y = 22 }, -/turf/open/floor/almayer/black/north, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "HK" = ( /obj/structure/pipes/standard/simple/hidden/supply, @@ -7817,6 +7682,15 @@ /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"HQ" = ( +/obj/structure/machinery/computer/shuttle_control/ice_colony{ + pixel_y = 33 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/golden_arrow/supply) "HT" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -7835,14 +7709,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"HX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "HY" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -7858,9 +7724,8 @@ /area/golden_arrow/platoonarmory) "Ic" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/engineering_welding, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/platoonprep) "Id" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, @@ -7873,6 +7738,18 @@ name = "\improper Tripoli" }, /area/golden_arrow/hangar) +"Ih" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) "Ii" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -7880,49 +7757,35 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"Ik" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_x = -8 +"Im" = ( +/obj/structure/machinery/vending/coffee{ + pixel_x = 14; + pixel_y = 13 + }, +/obj/structure/machinery/vending/snack/packaged{ + pixel_x = -7; + pixel_y = 14 }, -/obj/structure/machinery/light, /turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"Im" = ( +/area/golden_arrow/cryo_cells) +"In" = ( +/turf/open/floor/almayer/uscm/directional/up_down/southeast, +/area/golden_arrow/hangar) +"Io" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/hangar) +"Ip" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"In" = ( -/obj/effect/decal/cleanable/dirt, /obj/structure/machinery/door/poddoor/railing{ - dir = 8; id = "apcbayrailing2" }, -/turf/open/floor/almayer/black/west, -/area/golden_arrow/hangar) -"Io" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/black/north, /area/golden_arrow/hangar) "Ir" = ( /turf/closed/wall/almayer, /area/golden_arrow/platoonprep) -"Is" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/recharger{ - pixel_x = -8; - pixel_y = 3 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) "Iu" = ( /obj/structure/sign/safety/rewire{ pixel_x = 32 @@ -7935,23 +7798,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Ix" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"Iy" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "Iz" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -7967,12 +7813,12 @@ "IC" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/engineering) -"IG" = ( -/obj/effect/landmark/start/marine/medic/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/cryo_cells) +"ID" = ( +/obj/structure/reagent_dispensers/fueltank{ + layer = 2.97 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "IH" = ( /turf/closed/shuttle/elevator{ dir = 4 @@ -8003,46 +7849,74 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) "IK" = ( -/obj/structure/pipes/vents/pump{ - dir = 8 +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper_bin/uscm{ + pixel_x = -6; + pixel_y = 7 }, -/obj/structure/machinery/door/poddoor/railing{ - id = "apcbayrailing2" +/obj/item/tool/pen{ + pixel_x = -7; + pixel_y = 4 }, -/turf/open/floor/almayer/black/north, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"IN" = ( +/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 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "IP" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8 +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + name = "\improper Storage Bay Two Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"IR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger{ + pixel_x = 5; + pixel_y = -10 + }, +/obj/item/smartgun_battery{ + pixel_x = 4; + pixel_y = -5 + }, +/obj/item/prop/magazine{ + desc = "A copy of Soldier of Fortune magazine. On the cover is a stylized imagine of a motion tracker in use, with the headline 'Combat Awareness in the 22nd Century'. The article covers the advancement in sensor technology that has made combat between peer nations like the UA and UPP increasingly lethal to those on the ground. Flipping through the magazine you see article titles such as 'Arsenal: The M2C Heavy Machinegun', and 'The Future War: advancements in Cyberdyne Systems combat AI'. At the back of the magazine is an extensive list of advertisements for private contractors and wares."; + icon_state = "poster8"; + name = "Soldier Of Fortune: Issue March 2182"; + pixel_x = 7; + pixel_y = 15 + }, +/obj/item/clipboard{ + pixel_x = -7; + pixel_y = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoonprep) +"IT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"IS" = ( +"IU" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/largecrate/supply/ammo{ - fill_from_loc = 1; - name = "smoke grenades case"; - pixel_y = 11 + icon_state = "E" }, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "IV" = ( @@ -8056,6 +7930,13 @@ }, /turf/open/floor/almayer, /area/golden_arrow/briefing) +"IW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing2" + }, +/turf/open/floor/almayer/black/north, +/area/golden_arrow/hangar) "IX" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -8078,9 +7959,22 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) "Jc" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/almayer/no_build/plate, -/area/golden_arrow/hangar) +/obj/structure/machinery/door/airlock/maintenance/colony{ + dir = 1; + name = "\improper Power Substation"; + req_one_access = null + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) "Jd" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/supply, @@ -8088,36 +7982,54 @@ /area/golden_arrow/engineering) "Jg" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/railing{ +/obj/item/hardpoint/locomotion/apc_wheels, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Jl" = ( +/obj/structure/fence, +/obj/structure/machinery/door/poddoor/almayer/open{ + closed_layer = 3.3; dir = 4; - id = "apcbayrailing1" + id = "squadblastdoor"; + layer = 3.3; + name = "First Platoon Ready Bay Blast Door"; + open_layer = 3.3 }, -/turf/open/floor/almayer/black/east, -/area/golden_arrow/hangar) -"Jj" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, -/obj/structure/cable{ - icon_state = "4-8" +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonarmory) +"Jn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/prep_hallway) -"Jr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Jq" = ( /obj/effect/decal/cleanable/blood/oil, -/obj/structure/largecrate/random/case{ - pixel_y = 11 +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/golden_arrow/hangar) -"Js" = ( -/obj/structure/machinery/medical_pod/sleeper, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) +"Jr" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/rollingpin{ + pixel_y = 4; + pixel_x = -6 + }, +/obj/item/tool/kitchen/knife{ + pixel_x = 9 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "Jt" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/alarm/almayer{ @@ -8126,33 +8038,23 @@ /turf/open/floor/almayer, /area/golden_arrow/briefing) "Ju" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/cable{ - icon_state = "1-8" +/obj/structure/machinery/floodlight/landing/floor{ + pixel_x = 3 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"Jv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/machinery/landinglight/ds1{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/east, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Jw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light, +/obj/item/tool/soap/deluxe, +/obj/item/tool/soap{ + pixel_x = 3; + pixel_y = 15 }, -/turf/open/floor/almayer/mono, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "Jx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -8166,25 +8068,24 @@ layer = 2.36 }, /turf/open/floor/almayer, -/area/golden_arrow/platoonarmory) -"Jz" = ( -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"JD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 +/area/golden_arrow/platoonarmory) +"Jz" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 1 }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"JA" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "JE" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -8228,6 +8129,10 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) +"JN" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "JO" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -8242,6 +8147,13 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"JP" = ( +/obj/structure/surface/table/almayer, +/obj/structure/largecrate/random/case{ + pixel_y = 11 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "JQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -8259,6 +8171,25 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) +"JS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"JU" = ( +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "JW" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/bed/chair{ @@ -8269,42 +8200,47 @@ /area/golden_arrow/hangar) "JX" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1{ - dir = 8 - }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/cargo_arrow, /area/golden_arrow/hangar) "JZ" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "S" }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"Kb" = ( +/obj/structure/machinery/vending/cigarette{ + pixel_x = 4; + pixel_y = 14 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "Kd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 2; + name = "\improper Storage Bay Blast Door" }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/test_floor4, /area/golden_arrow/hangar) "Kf" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"Ki" = ( -/turf/open/floor/almayer/uscm/directional/up_down/northwest, -/area/golden_arrow/hangar) -"Kj" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) "Kk" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) +"Kl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Km" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -8327,32 +8263,40 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Kt" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds1{ - locked = 1; - name = "\improper Tripoli cargo door" +"Kq" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 27 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/golden_arrow/hangar) -"Ku" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/sign/safety/hazard{ + pixel_x = 14; + pixel_y = 27 }, -/obj/structure/cable{ - icon_state = "1-2" +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/hangar) +"Kr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/briefing) -"Kx" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Kt" = ( +/obj/structure/platform{ + dir = 4; + layer = 2.7 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/golden_arrow/hangar) +"Kw" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/golden_arrow/supply) "Ky" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -8400,40 +8344,14 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"KF" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "KH" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/obj/structure/bed/bedroll{ - buckle_lying = null; - can_buckle = 0; - color = "#333333"; - desc = "A black gym mat, useful if you don't want to use the cold hard floor for exercise."; - foldabletype = null; - name = "gym mat"; - pixel_y = -4 + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"KI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) "KK" = ( /obj/structure/cable{ layer = 2.36; @@ -8481,13 +8399,28 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"KL" = ( +"KM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/platoonarmory) +"KN" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 1 + icon_state = "W"; + layer = 3.3; + pixel_x = -1 }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/hangar) +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "KO" = ( /obj/structure/prop/invuln/lifeboat_hatch_placeholder/terminal{ layer = 2.1; @@ -8521,38 +8454,48 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "KX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/cable{ + icon_state = "0-8"; + layer = 2.36 }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/platoonprep) +/turf/open/floor/almayer, +/area/golden_arrow/briefing) "KY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/shared_office) "KZ" = ( -/obj/structure/machinery/door/poddoor/railing, -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/engineering) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/cryo_cells) +"Lb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "weapons_conny"; + name = "\improper Squad Two Weapons Locker"; + pixel_y = -4 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonarmory) "Lc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet/firecloset/full, /turf/open/floor/almayer, /area/golden_arrow/engineering) +"Ld" = ( +/obj/structure/machinery/medical_pod/sleeper, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) "Lf" = ( /turf/open/shuttle/elevator, /area/golden_arrow/supply) @@ -8569,15 +8512,35 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) +"Li" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/storage/belt/utility/full{ + pixel_y = 12 + }, +/obj/item/storage/belt/utility/full{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "Lj" = ( -/obj/structure/closet/secure_closet/smartgunner{ - name = "squad one smartgunner locker"; - req_access_txt = "14;39"; - req_one_access = list() +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/platoonarmory) +"Lk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoonprep) +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/hangar) "Lm" = ( /obj/effect/decal/siding{ icon_state = "siding2" @@ -8598,15 +8561,12 @@ "Lo" = ( /turf/closed/shuttle/elevator/gears, /area/golden_arrow/supply) -"Lv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/medical) -"Lw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"Lp" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/largecrate/random/case{ + pixel_y = 11 }, -/turf/open/floor/almayer/plate, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/golden_arrow/hangar) "Lx" = ( /obj/structure/filingcabinet/chestdrawer{ @@ -8624,23 +8584,17 @@ }, /turf/open/floor/almayer, /area/golden_arrow/shared_office) -"LB" = ( -/obj/structure/machinery/door/airlock/maintenance/colony{ - dir = 1; - name = "\improper Power Substation"; - req_one_access = null - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +"Ly" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "bay2door"; + name = "\improper Weapons Bay Two Blast Door" }, /turf/open/floor/almayer/test_floor4, -/area/golden_arrow/engineering) +/area/golden_arrow/hangar) "LC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -8650,25 +8604,12 @@ /turf/open/floor/almayer, /area/golden_arrow/dorms) "LE" = ( -/obj/structure/largecrate/supply/medicine/medkits{ - pixel_x = -4; - pixel_y = 9 - }, -/obj/structure/largecrate/supply/medicine/medkits{ - layer = 3.1; - pixel_x = 15; - pixel_y = 24 - }, -/obj/structure/largecrate/random/mini/med{ - pixel_x = -6; - pixel_y = 21 - }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "SW-out"; + pixel_x = -1 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/cryo_cells) "LF" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -8681,30 +8622,16 @@ /area/golden_arrow/cryo_cells) "LG" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "W"; + pixel_x = -1; pixel_y = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "LI" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) -"LK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/prep_hallway) -"LN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delaythree{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "LO" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/prop/almayer/CICmap{ @@ -8714,11 +8641,41 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"LP" = ( +/obj/item/storage/box/guncase/flamer/special{ + layer = 3.1; + pixel_y = 10 + }, +/obj/structure/surface/rack, +/obj/item/storage/box/guncase/shotguncombat, +/obj/item/ammo_box/magazine/m4a3{ + layer = 3; + pixel_y = -5; + pixel_x = -2 + }, +/obj/item/ammo_box/magazine/vp70{ + layer = 3 + }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) "LQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) +"LR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"LS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/hangar) "LV" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -8731,6 +8688,16 @@ }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) +"LW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "LX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -8738,45 +8705,30 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"LY" = ( -/obj/structure/machinery/floodlight/landing/floor, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "Mb" = ( -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" +/obj/structure/surface/table/almayer, +/obj/item/tool/soap{ + pixel_x = -5; + pixel_y = -5 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/item/tool/soap{ + pixel_x = 7; + pixel_y = 12 }, -/turf/open/floor/almayer/blackcorner/north, -/area/golden_arrow/hangar) +/obj/item/tool/soap/weyland_yutani{ + pixel_x = -7; + pixel_y = 6 + }, +/turf/open/floor/almayer, +/area/golden_arrow/cryo_cells) "Mc" = ( -/obj/structure/machinery/floodlight/landing, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) "Md" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Me" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"Mg" = ( -/obj/structure/surface/table/almayer, -/obj/structure/bedsheetbin{ - pixel_y = 14 - }, -/obj/item/storage/pill_bottle/paracetamol{ - pixel_x = -5 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) "Mj" = ( /obj/item/stack/sheet/metal, /obj/item/stack/rods{ @@ -8812,32 +8764,33 @@ /area/golden_arrow/platoonprep) "Ml" = ( /obj/effect/decal/cleanable/dirt, -/obj/item/stack/catwalk{ - pixel_x = 2; - pixel_y = -9 - }, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 8 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "weapons_conny"; + name = "\improper Squad One Weapons Locker"; + pixel_y = -4 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonarmory) "Mn" = ( /turf/closed/shuttle/midway/transparent{ icon_state = "80"; name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"Mp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +"Mo" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Mq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "apc2blastdoor"; - name = "\improper Vehicle Bay Two Blast Door" +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "Ms" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -8873,12 +8826,29 @@ /turf/open/floor/plating, /area/golden_arrow/hangar) "Mx" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"Mz" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) "MC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -8895,9 +8865,13 @@ /area/golden_arrow/dorms) "ME" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/floodlight/landing/floor, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "MG" = ( @@ -8922,6 +8896,14 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"MI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/hangar) "MJ" = ( /obj/structure/shuttle/part/dropship1/transparent/lower_left_wing{ name = "\improper Tripoli" @@ -8936,11 +8918,13 @@ /turf/open/floor/plating, /area/golden_arrow/hangar) "MO" = ( -/obj/vehicle/powerloader{ - dir = 1 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo, +/obj/structure/machinery/power/apc/almayer/east, +/obj/structure/cable{ + icon_state = "0-8"; + layer = 2.36 + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "MQ" = ( /obj/structure/bed/chair, @@ -8955,14 +8939,11 @@ /area/golden_arrow/dorms) "MS" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; + icon_state = "W"; pixel_x = -1; - pixel_y = 2 + pixel_y = 1 }, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "MT" = ( @@ -9002,7 +8983,7 @@ /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) "Na" = ( -/obj/effect/landmark/start/marine/alpha, +/obj/effect/landmark/start/marine/medic/alpha, /obj/effect/landmark/late_join/alpha, /obj/effect/landmark/late_join, /turf/open/floor/almayer/cargo_arrow/east, @@ -9018,54 +8999,50 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"Nc" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer/cargo_arrow/east, +"Nd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/prep_hallway) +"Nf" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Nj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"Nf" = ( +"Nl" = ( +/obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/engineering) -"Nj" = ( -/obj/effect/decal/cleanable/dirt, /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"Nk" = ( -/obj/structure/ship_ammo/rocket/napalm, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) -"Nl" = ( -/obj/structure/machinery/medical_pod/autodoc{ - dir = 1; - pixel_y = 6 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) +/turf/open/floor/almayer/mono, +/area/golden_arrow/cryo_cells) "Nm" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 27 +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; - pixel_y = 27 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/golden_arrow/hangar) +"Nn" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - layer = 3.6; - pixel_y = 18 +/obj/structure/sign/safety/ammunition{ + pixel_x = -18 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/hangar) +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "weapons_conny"; + name = "\improper Squad One Weapons Locker"; + pixel_y = -4 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonarmory) "No" = ( /obj/effect/attach_point/fuel/midway{ pixel_x = -32 @@ -9079,21 +9056,22 @@ /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"Nw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/railing{ - id = "apcbayrailing2" - }, -/turf/open/floor/almayer/black/north, +"Nr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/uscm/directional/up_down/north, /area/golden_arrow/hangar) "Nx" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer/mono, -/area/golden_arrow/supply) +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/platoonprep) "Ny" = ( /obj/structure/surface/table/almayer, /obj/item/notepad/black, @@ -9111,28 +9089,17 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"NB" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"NE" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 27 +"ND" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; - pixel_y = 27 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plate, +/area/golden_arrow/briefing) "NF" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/heavyduty{ @@ -9146,38 +9113,26 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "NL" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "equipment_conny"; + name = "\improper Squad One Equipment Locker" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/briefing) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonarmory) "NM" = ( /turf/closed/shuttle/midway/transparent{ icon_state = "32"; name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"NN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/hangar) -"NP" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 27 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; - pixel_y = 27 +"NO" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "equipment_conny"; + name = "\improper Squad One Equipment Locker" }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonarmory) "NQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -9186,15 +9141,24 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/shared_office) +"NS" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) "NT" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"NV" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/cryo{ - name = "hypersleep semiotic"; - pixel_x = 15; - pixel_y = -26 +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/area/golden_arrow/hangar) "NX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, @@ -9216,9 +9180,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) -"NY" = ( -/turf/open/floor/almayer/uscm/directional/up_down/east, -/area/golden_arrow/hangar) "NZ" = ( /obj/structure/prop/invuln/lattice_prop{ icon_state = "lattice1"; @@ -9255,18 +9216,15 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/engineering) -"Od" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster{ - desc = "This poster features Audrey Rainwater standing in a jacuzzi. She was the July 2182 centerfold in House Bunny Gentleman's Magazine. Don't ask how you know that."; - icon_state = "poster16"; - layer = 3.3; - name = "'Miss July' Pinup"; - pixel_y = 29; - serial_number = 16 +"Oe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing1" + }, +/turf/open/floor/almayer/black/north, +/area/golden_arrow/hangar) "Of" = ( /obj/structure/surface/rack, /obj/effect/decal/cleanable/dirt, @@ -9301,6 +9259,19 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"Om" = ( +/obj/structure/sign/banners/united_americas_flag{ + pixel_x = -30; + pixel_y = 31 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/dinnerware, +/obj/item/ashtray/glass{ + pixel_x = -3; + pixel_y = 13 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "Oo" = ( /obj/structure/bed{ can_buckle = 0 @@ -9323,40 +9294,25 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"Or" = ( -/obj/item/reagent_container/food/drinks/milk{ - pixel_y = 10 - }, -/obj/item/reagent_container/food/drinks/milk{ - pixel_x = 6; - pixel_y = 8 - }, -/obj/item/reagent_container/food/drinks/milk{ - pixel_x = 5 - }, -/obj/item/reagent_container/food/drinks/milk, -/obj/structure/closet/secure_closet{ - icon_broken = "fridgebroken"; - icon_closed = "fridge"; - icon_locked = "fridge1"; - icon_off = "fridge1"; - icon_opened = "fridgeopen"; - icon_state = "fridge1"; - name = "beverage fridge" +"Op" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" }, /turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/area/golden_arrow/hangar) "Os" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; + icon_state = "W"; + pixel_x = -1; pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/cryo_cells) "Ot" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/cable/heavyduty{ @@ -9365,10 +9321,16 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonarmory) "Ow" = ( -/obj/effect/decal/cleanable/dirt, +/obj/structure/ship_ammo/rocket/widowmaker, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"Ox" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Oy" = ( @@ -9388,6 +9350,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonprep) +"OC" = ( +/obj/structure/machinery/floodlight/landing/floor{ + pixel_x = 3 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "OD" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -9400,11 +9368,18 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "OE" = ( -/obj/effect/landmark/start/marine/tl/alpha, -/obj/effect/landmark/late_join/alpha, -/obj/effect/landmark/late_join, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/cryo_cells) +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "OF" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -9417,17 +9392,22 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "OG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 +/obj/structure/machinery/light{ + dir = 8 }, -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"OH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/structure/largecrate/supply/supplies/flares{ + layer = 3.1 + }, +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) @@ -9463,54 +9443,20 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"OR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "OS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"OT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/hangar) -"OV" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delaythree, +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"OY" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/supply) "Pa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/case/double, -/obj/item/storage/box/cups{ - pixel_x = -1; - pixel_y = 16 +/obj/structure/machinery/cm_vending/sorted/medical/no_access{ + density = 0; + pixel_y = 24 }, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/test_floor5, +/area/golden_arrow/medical) "Pc" = ( /obj/structure/barricade/handrail{ dir = 8 @@ -9542,19 +9488,16 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/golden_arrow/hangar) -"Pf" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "Pg" = ( -/obj/structure/largecrate/supply/ammo/m41amk1, -/obj/structure/largecrate/supply/ammo/m41amk1{ - pixel_y = 10 +/obj/structure/bed/chair{ + dir = 1 }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/hangar) +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/briefing) "Pi" = ( /obj/structure/cargo_container/wy/left{ pixel_y = 5 @@ -9562,24 +9505,39 @@ /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"Pk" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) +"Pm" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"Pn" = ( +/obj/structure/machinery/medical_pod/autodoc{ + dir = 1; + pixel_y = 6 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) "Pp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/largecrate/random/mini/small_case/c{ - pixel_x = -11; - pixel_y = 9 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Pq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "apcbayrailing1" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/black/west, +/area/golden_arrow/hangar) "Pr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -9606,6 +9564,15 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonarmory) +"Pt" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing1" + }, +/turf/open/floor/almayer/black/north, +/area/golden_arrow/hangar) "Pu" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -9613,45 +9580,53 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/shared_office) -"Py" = ( -/obj/structure/machinery/vending/coffee{ - pixel_x = 14; - pixel_y = 13 - }, -/obj/structure/machinery/vending/snack/packaged{ - pixel_x = -7; - pixel_y = 14 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) -"PB" = ( +"Pv" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/structure/machinery/photocopier{ + pixel_y = 4 }, +/obj/structure/machinery/power/apc/almayer/north, /obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"PC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "0-2" }, -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/almayer, +/area/golden_arrow/platoon_commander_rooms) +"Pw" = ( +/obj/structure/largecrate/supply/supplies/flares{ + layer = 2.9; + pixel_x = -7 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"PE" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"Px" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/door/poddoor/railing{ + id = "apcbayrailing1" }, +/turf/open/floor/almayer/black/north, +/area/golden_arrow/hangar) +"Py" = ( +/obj/structure/machinery/landinglight/ds1, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"PG" = ( -/obj/effect/decal/cleanable/dirt, +"Pz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 1; + pixel_y = -26 + }, /turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/prep_hallway) +"PC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) "PH" = ( /obj/structure/surface/table/almayer, @@ -9693,8 +9668,11 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/golden_arrow/hangar) -"PM" = ( -/turf/open/floor/almayer/dark_sterile, +"PL" = ( +/obj/effect/landmark/start/marine/tl/alpha, +/obj/effect/landmark/late_join/alpha, +/obj/effect/landmark/late_join, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/cryo_cells) "PN" = ( /obj/effect/decal/warning_stripes{ @@ -9710,15 +9688,8 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "PO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/platoonarmory) +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "PP" = ( /obj/structure/machinery/firealarm{ dir = 8; @@ -9727,7 +9698,15 @@ /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) "PQ" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "PR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -9740,31 +9719,14 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/dorms) "PU" = ( -/obj/structure/closet/secure_closet{ - icon_broken = "fridgebroken"; - icon_closed = "fridge"; - icon_locked = "fridge1"; - icon_off = "fridge1"; - icon_opened = "fridgeopen"; - icon_state = "fridge1"; - name = "beverage fridge" - }, -/obj/item/reagent_container/food/drinks/bottle/orangejuice{ - pixel_x = 8; - pixel_y = -7 - }, -/obj/item/reagent_container/food/drinks/bottle/orangejuice{ - pixel_y = -1 - }, -/obj/item/reagent_container/food/drinks/bottle/orangejuice{ - pixel_x = -2; - pixel_y = -4 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/item/reagent_container/food/drinks/bottle/orangejuice{ - pixel_y = -9 +/obj/structure/cable{ + icon_state = "1-4" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "PV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/prop/dam/crane/cargo{ @@ -9791,47 +9753,32 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"Qb" = ( -/obj/structure/sign/safety/rewire{ - pixel_x = 32 - }, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/supply) "Qc" = ( -/obj/structure/platform_decoration{ +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ dir = 4 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"Qd" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 4 +"Qe" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "weapons_conny"; + name = "\improper Squad Two Weapons Locker"; + pixel_y = -4 }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonarmory) +"Qf" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"Qf" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/largecrate/supply/supplies/flares{ - layer = 3.1 - }, -/obj/structure/machinery/light{ - dir = 8 + icon_state = "N"; + pixel_y = 2 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/cryo_cells) "Qg" = ( /obj/structure/bed/chair{ dir = 4 @@ -9848,13 +9795,6 @@ /obj/structure/bed/chair, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Ql" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "Qm" = ( /obj/structure/bed/chair/comfy{ dir = 1 @@ -9904,17 +9844,13 @@ "QE" = ( /turf/open/shuttle/elevator/grating, /area/golden_arrow/supply) -"QI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, +"QF" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 4 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "QJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -9981,15 +9917,11 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) "QQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/cargo_container/wy/mid{ - opacity = 0; - pixel_y = -17 +/obj/structure/surface/table/almayer, +/obj/structure/largecrate/random/secure{ + pixel_y = 10 }, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "QS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -10009,28 +9941,18 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) "QT" = ( -/obj/structure/cargo_container/wy/right{ - opacity = 0; - pixel_y = -17 - }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "S" }, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "N"; + pixel_y = 1 }, -/obj/item/device/flashlight/lamp/on{ - layer = 4.2; - pixel_x = 3; - pixel_y = 19 +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"QU" = ( -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "QW" = ( /turf/open/floor/almayer, /area/golden_arrow/briefing) @@ -10040,13 +9962,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"QZ" = ( -/obj/structure/machinery/vending/cigarette{ - pixel_x = 4; - pixel_y = 14 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) "Ra" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/dartboard{ @@ -10073,10 +9988,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"Rg" = ( -/obj/structure/largecrate/supply/generator, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) "Rj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cargo_container/wy/right{ @@ -10084,26 +9995,15 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Rk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"Rl" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, +"Rm" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "S"; + pixel_y = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/hangar) "Rn" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -10129,15 +10029,22 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) -"Rq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 +"Rp" = ( +/obj/structure/machinery/power/apc/almayer/west, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"Rt" = ( +/obj/structure/closet/secure_closet/marine_personal{ + job = "Smartgunner"; + pixel_x = 8 + }, +/obj/structure/closet/secure_closet/marine_personal{ + job = "Squad Sergeant"; + pixel_x = -7 }, -/obj/effect/decal/strata_decals/grime/grime4, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Rr" = ( +/area/golden_arrow/cryo_cells) +"Rv" = ( /obj/structure/sign/safety/bulkhead_door{ pixel_y = 27 }, @@ -10145,57 +10052,22 @@ pixel_x = 14; pixel_y = 27 }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/hangar) -"Rs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/briefing) -"Rt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/uscm/north, -/area/golden_arrow/hangar) -"Rv" = ( /obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/small_case{ + pixel_y = 11 }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) "Rx" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 21 - }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer/cargo, -/area/golden_arrow/briefing) +/area/golden_arrow/hangar) "Ry" = ( -/obj/structure/cable{ - layer = 2.45; - pixel_x = 7; - pixel_y = 1 - }, -/obj/structure/prop{ - color = "#b30000"; - icon = 'icons/obj/pipes/power_cond_white.dmi'; - icon_state = "0-8"; - name = "cable"; - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/obj/structure/machinery/floodlight/landing, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Rz" = ( /obj/structure/machinery/shower{ @@ -10212,20 +10084,23 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonprep) -"RB" = ( -/obj/structure/platform_decoration{ +"RC" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/obj/structure/machinery/light{ dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/cryo_cells) +"RE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/golden_arrow/hangar) -"RC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "RF" = ( /obj/structure/bed/chair{ dir = 4 @@ -10244,32 +10119,19 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) -"RJ" = ( -/obj/effect/decal/strata_decals/grime/grime1{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "RK" = ( -/obj/item/storage/box/guncase/flamer/special{ - layer = 3.1; - pixel_y = 10 - }, -/obj/structure/surface/rack, -/obj/item/storage/box/guncase/shotguncombat, -/obj/item/ammo_box/magazine/m4a3{ - layer = 3; - pixel_y = -5; - pixel_x = -2 - }, -/obj/item/ammo_box/magazine/vp70{ - layer = 3 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/hangar) +"RL" = ( +/obj/structure/machinery/power/apc/almayer/north, /turf/open/floor/almayer, -/area/golden_arrow/platoonarmory) +/area/golden_arrow/synthcloset) "RM" = ( /obj/structure/shuttle/part/dropship2/transparent/engine_right_cap{ name = "\improper Tripoli" @@ -10302,17 +10164,6 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"RP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "equipment_conny"; - name = "\improper Squad One Equipment Locker" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonarmory) "RR" = ( /obj/effect/decal/siding, /turf/open/floor/plating, @@ -10324,25 +10175,33 @@ /turf/open/floor/plating, /area/golden_arrow/hangar) "RU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 2 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"RV" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 32 }, -/obj/structure/pipes/vents/scrubber{ - dir = 4 +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/supply) +"RX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) -"RW" = ( -/obj/effect/decal/strata_decals/grime/grime4, -/obj/effect/decal/strata_decals/grime/grime2{ - dir = 1 +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "apc1blastdoor"; + name = "\improper Vehicle Bay One Blast Door" }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "RY" = ( /obj/structure/largecrate/random/secure, /obj/effect/decal/cleanable/dirt, @@ -10367,16 +10226,17 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) "Sa" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor{ - name = "\improper Emergency Infirmary"; - req_one_access = null +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/largecrate/random/case/double, +/obj/item/toy/beach_ball/holoball{ + pixel_x = -2; + pixel_y = 15 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "Sb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ @@ -10384,6 +10244,23 @@ }, /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) +"Sd" = ( +/obj/structure/machinery/door/airlock/almayer/secure{ + dir = 1; + name = "\improper Assembly Room"; + req_access = list(); + req_one_access_txt = "19;12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/briefing) "Sf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -10391,26 +10268,28 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Sh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +"Sg" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "Bathroom" }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - name = "\improper Storage Bay One Blast Door" +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) +/area/golden_arrow/cryo_cells) "Si" = ( /turf/closed/shuttle/elevator{ dir = 5 }, /area/golden_arrow/supply) "Sk" = ( -/obj/structure/machinery/door/airlock/hatch/cockpit{ - locked = 1 +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/box{ + pixel_y = 9 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Sl" = ( /obj/structure/shuttle/part/dropship2/transparent/engine_left_cap{ @@ -10419,6 +10298,47 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating, /area/golden_arrow/hangar) +"Sm" = ( +/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/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname/golden_arrow{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"So" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/largecrate/random/case{ + pixel_y = 5 + }, +/obj/structure/largecrate/random/case/double{ + pixel_y = 15 + }, +/obj/structure/largecrate/random/case{ + pixel_y = -5 + }, +/obj/structure/largecrate/random/mini/small_case{ + layer = 3.1; + pixel_x = 8; + pixel_y = 14 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Sp" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -10429,10 +10349,6 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"Sr" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/platoonprep) "Ss" = ( /obj/structure/bed/chair{ buckling_y = 10; @@ -10442,18 +10358,22 @@ /obj/structure/machinery/light, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"St" = ( -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/engineering) "Su" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/obj/structure/machinery/door/poddoor/railing{ - id = "apcbayrailing1" +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/turf/open/floor/almayer/black/north, +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/hangar) +"Sv" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 21 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "Sw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -10468,24 +10388,26 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) -"SA" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"SC" = ( +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, +/obj/effect/decal/cleanable/dirt, /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "SW-out" }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/blackcorner/west, /area/golden_arrow/hangar) -"SB" = ( +"SD" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/medical) "SE" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/cable{ @@ -10494,34 +10416,40 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/dorms) "SF" = ( -/obj/structure/machinery/camera/autoname/golden_arrow{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/turf/open/floor/almayer/cargo_arrow, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "SG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, +/obj/structure/closet/coffin/woodencrate, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, +/obj/item/ammo_magazine/rifle/m4ra/pve, /obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-8" +/obj/item/weapon/gun/rifle/m4ra/pve{ + pixel_y = 8 }, -/turf/open/floor/almayer/cargo_arrow/west, -/area/golden_arrow/shared_office) -"SI" = ( -/turf/open/floor/almayer/uscm/directional/up_down/southeast, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoonprep) "SJ" = ( -/obj/structure/closet/secure_closet/marine_personal{ - job = "Smartgunner"; - pixel_x = -7 +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) +"SK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/structure/closet/secure_closet/marine_personal{ - job = "Squad Sergeant"; - pixel_x = 8 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/almayer/plate, +/turf/open/floor/almayer/mono, /area/golden_arrow/cryo_cells) "SM" = ( /obj/effect/decal/warning_stripes{ @@ -10559,15 +10487,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"SP" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/golden_arrow/hangar) "SQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -10622,39 +10541,10 @@ /turf/open/floor/almayer, /area/golden_arrow/platoonprep) "Te" = ( -/obj/structure/machinery/floodlight/landing/floor, -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Th" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) -"Ti" = ( -/obj/structure/machinery/power/smes/buildable, /obj/effect/decal/cleanable/dirt, -/obj/item/storage/toolbox/electrical{ - pixel_y = 10 - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/engineering) -"Tj" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/toy/plush/therapy/blue{ - pixel_x = 6; - pixel_y = 9 - }, -/obj/item/toy/plush/therapy/random_color, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "Tk" = ( /obj/structure/machinery/prop{ density = 1; @@ -10667,18 +10557,12 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "Tl" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-4" +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer/plate, /area/golden_arrow/briefing) @@ -10695,66 +10579,52 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "Tn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/golden_arrow/hangar) -"To" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/effect/decal/cleanable/cobweb2, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/engineering) -"Tr" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/landinglight/ds1{ dir = 1 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) +"Tr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Tt" = ( /obj/structure/shuttle/part/dropship1/transparent/inner_right_weapons{ name = "\improper Tripoli" }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"Tu" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/cryo_cells) "Tv" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/soap{ - pixel_x = -5; - pixel_y = -5 - }, -/obj/item/tool/soap{ - pixel_x = 7; - pixel_y = 12 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/item/tool/soap/weyland_yutani{ - pixel_x = -7; - pixel_y = 6 +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/open/floor/almayer, +/turf/open/floor/almayer/cargo_arrow/east, /area/golden_arrow/cryo_cells) -"Tx" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 38 +"Tw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; - pixel_y = 38 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/sign/safety/ammunition{ - pixel_y = 26 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/prep_hallway) +"Tx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Ty" = ( /obj/structure/surface/table/almayer, @@ -10777,8 +10647,30 @@ /turf/open/floor/almayer, /area/golden_arrow/engineering) "Tz" = ( -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/hangar) +/obj/structure/machinery/autodoc_console{ + dir = 1; + pixel_y = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/sign/safety/autodoc{ + pixel_x = -17 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -29 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "TB" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -10790,13 +10682,21 @@ /turf/closed/wall/almayer/outer, /area/golden_arrow/platoon_commander_rooms) "TE" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/cable{ + icon_state = "0-8"; + layer = 2.36 }, +/turf/open/floor/almayer, +/area/golden_arrow/platoonarmory) +"TH" = ( /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/cryo_cells) "TI" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -10829,54 +10729,31 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "TM" = ( -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) -"TO" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "weapons_conny"; - name = "\improper Squad Two Weapons Locker"; - pixel_y = -4 +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/test_floor4, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/cryo_cells) +"TN" = ( +/turf/open/floor/almayer/cargo_arrow/west, /area/golden_arrow/platoonarmory) -"TR" = ( +"TO" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; + icon_state = "S"; pixel_y = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/north, /area/golden_arrow/hangar) "TT" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/cigbutt/cigarbutt{ - pixel_x = -3; - pixel_y = 25; - randpixel = 0 - }, -/obj/item/ashtray/plastic{ - icon_state = "ashtray_full_bl"; - pixel_x = 9; - pixel_y = 6 - }, -/obj/item/trash/cigbutt{ - pixel_x = 4; - pixel_y = 5; - randpixel = 0 - }, -/obj/item/prop/helmetgarb/gunoil{ - layer = 3.3; - pixel_x = 9; - pixel_y = 23 - }, -/obj/item/storage/fancy/cigar/matchbook{ - pixel_x = -2; - pixel_y = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoonprep) +/obj/structure/largecrate/supply/floodlights, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "TU" = ( /obj/structure/machinery/light{ dir = 8 @@ -10884,9 +10761,23 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) "TV" = ( -/obj/structure/machinery/power/apc/almayer/north, -/obj/structure/cable{ - icon_state = "0-2" +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "bay1door"; + name = "\improper Weapons Bay One Blast Door" + }, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"TX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 4 }, /turf/open/floor/almayer/plate, /area/golden_arrow/cryo_cells) @@ -10909,16 +10800,103 @@ /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) "Ud" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "E"; + pixel_x = 1 + }, +/obj/item/tool/wet_sign{ + pixel_x = -14; + pixel_y = 14 + }, +/obj/item/tool/wet_sign{ + pixel_x = -17; + pixel_y = 10 + }, +/obj/item/tool/wet_sign{ + pixel_x = -13; + pixel_y = 6 + }, +/obj/item/tool/wet_sign{ + pixel_x = -15; + pixel_y = 2 + }, +/obj/item/tool/wet_sign{ + pixel_x = -13; + pixel_y = -2 + }, +/obj/item/tool/wet_sign{ + pixel_x = 1; + pixel_y = 16 + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) +"Ue" = ( +/obj/item/reagent_container/food/drinks/milk{ + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/milk{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/reagent_container/food/drinks/milk{ + pixel_x = 5 + }, +/obj/item/reagent_container/food/drinks/milk, +/obj/structure/closet/secure_closet{ + icon_broken = "fridgebroken"; + icon_closed = "fridge"; + icon_locked = "fridge1"; + icon_off = "fridge1"; + icon_opened = "fridgeopen"; + icon_state = "fridge1"; + name = "beverage fridge" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"Uh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/storage/box/guncase/shotgunpump{ + pixel_y = 17 + }, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/item/ammo_magazine/shotgun/buckshot{ + pixel_y = 6; + pixel_x = 6 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoonprep) +"Ui" = ( +/obj/structure/cable{ + layer = 2.45; + pixel_x = 7; pixel_y = 1 }, -/obj/structure/machinery/firealarm{ +/obj/structure/prop{ + color = "#b30000"; + icon = 'icons/obj/pipes/power_cond_white.dmi'; + icon_state = "0-8"; + name = "cable"; + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/golden_arrow/hangar) +"Ul" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor/almayer{ dir = 4; - pixel_x = 21 + name = "\improper Storage Bay Blast Door" }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) "Um" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -10940,21 +10918,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) -"Uq" = ( -/obj/structure/machinery/landinglight/ds1{ - dir = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Uv" = ( -/obj/structure/ship_ammo/minirocket, -/obj/effect/decal/cleanable/dirt, -/obj/structure/ship_ammo/minirocket{ - layer = 3.1; - pixel_y = 9 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/golden_arrow/hangar) "Uw" = ( /obj/structure/machinery/autolathe, /obj/item/stack/sheet/mineral/phoron/small_stack{ @@ -10968,14 +10931,6 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"Uy" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/prep_hallway) -"UD" = ( -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/cargo_arrow/north, -/area/golden_arrow/supply) "UH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -10988,16 +10943,16 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"UJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/uscm/directional/up_down/north, -/area/golden_arrow/hangar) "UK" = ( /obj/structure/machinery/camera/autoname/golden_arrow{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) +"UL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo_arrow/north, +/area/golden_arrow/hangar) "UN" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/cable/heavyduty{ @@ -11005,16 +10960,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/prep_hallway) -"UO" = ( -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/engineering) "UP" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/obj/structure/machinery/floodlight/landing/floor{ + pixel_x = -2 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "UQ" = ( /obj/structure/surface/table/almayer, /obj/structure/bedsheetbin{ @@ -11022,6 +10973,19 @@ }, /turf/open/floor/almayer, /area/golden_arrow/dorms) +"UR" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/sign/safety/ladder{ + pixel_x = -17; + pixel_y = -15 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) "US" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -11030,6 +10994,9 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"UT" = ( +/turf/open/floor/almayer/uscm/directional/up_down, +/area/golden_arrow/hangar) "UW" = ( /obj/item/storage/toolbox/mechanical{ pixel_x = 2; @@ -11037,40 +11004,13 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"UX" = ( -/obj/structure/prop{ - color = "#b30000"; - icon = 'icons/obj/pipes/power_cond_white.dmi'; - icon_state = "8-9"; - layer = 2.9; - name = "cable"; - pixel_x = 4; - pixel_y = -15 - }, -/obj/structure/prop{ - color = "#b30000"; - icon = 'icons/obj/pipes/power_cond_white.dmi'; - icon_state = "1-4"; - name = "cable"; - pixel_x = -9 - }, -/obj/structure/prop{ - color = "#b30000"; - icon = 'icons/obj/pipes/power_cond_white.dmi'; - icon_state = "8-10"; - name = "cable"; - pixel_x = 21 +"Vb" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_x = 3; + pixel_y = -7 }, /turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/golden_arrow/hangar) -"Vc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1; - pixel_y = 1 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) "Ve" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -11082,11 +11022,8 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "Vg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) +/turf/open/floor/almayer/cargo_arrow/west, +/area/golden_arrow/engineering) "Vh" = ( /obj/structure/machinery/light{ dir = 4 @@ -11102,6 +11039,12 @@ /obj/structure/foamed_metal, /turf/open/floor/plating, /area/golden_arrow/cryo_cells) +"Vm" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Vn" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/shuttle/dropship/flight/remote_control{ @@ -11112,31 +11055,15 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"Vp" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) "Vq" = ( -/obj/structure/fence, -/obj/structure/machinery/door/poddoor/almayer/open{ - closed_layer = 3.3; - dir = 4; - id = "squadblastdoor"; - layer = 3.3; - name = "First Platoon Ready Bay Blast Door"; - open_layer = 3.3 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 +/obj/item/tool/screwdriver{ + icon_state = "screwdriver3"; + layer = 3.03; + pixel_x = -4; + pixel_y = 7 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonarmory) +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/golden_arrow/hangar) "Vs" = ( /obj/structure/surface/table/almayer, /obj/structure/barricade/handrail{ @@ -11159,9 +11086,13 @@ /turf/open/floor/almayer, /area/golden_arrow/platoonprep) "Vt" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/east, -/area/golden_arrow/dorms) +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8; + pixel_x = -3 + }, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "Vu" = ( /obj/structure/surface/table/almayer, /obj/item/storage/bible{ @@ -11202,59 +11133,92 @@ /area/golden_arrow/hangar) "Vx" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "E"; + pixel_x = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/largecrate/supply/supplies/sandbags{ + layer = 4.2; + pixel_y = 7 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"VA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "VB" = ( /turf/closed/shuttle/elevator/freight, /area/golden_arrow/supply) +"VC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/hangar) "VD" = ( /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"VG" = ( -/obj/structure/machinery/door/poddoor/almayer, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/prep_hallway) +"VF" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "VI" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 2; - name = "\improper Hangar Lockdown Blast Door" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, /turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) -"VJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) +/area/golden_arrow/cryo_cells) "VK" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) -"VL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/guncase/shotgunpump{ - pixel_y = 17 - }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_y = 6; - pixel_x = -4 - }, -/obj/item/ammo_magazine/shotgun/buckshot{ - pixel_y = 6; - pixel_x = 6 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/platoonprep) "VM" = ( /obj/structure/cable/heavyduty{ icon_state = "1-2" }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"VO" = ( +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/golden_arrow/hangar) +"VQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/largecrate/random/case/small{ + layer = 3.1; + pixel_x = 3; + pixel_y = 35 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"VR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "VV" = ( /obj/structure/sign/safety/storage{ pixel_x = 9; @@ -11262,26 +11226,18 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"VW" = ( -/obj/structure/machinery/gear{ - id = "supply_elevator_gear" +"VX" = ( +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/platoonprep) +"VY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, -/turf/open/floor/almayer/blackcorner/west, -/area/golden_arrow/hangar) -"VX" = ( -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/largecrate/random/case/double, -/obj/item/toy/beach_ball/holoball{ - pixel_x = -2; - pixel_y = 15 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "VZ" = ( /obj/structure/window/framed/almayer, @@ -11291,27 +11247,27 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "Wb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/surgical{ - pixel_x = 30 +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"Wc" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 8; + name = "\improper Chemistry Subsection"; + req_one_access = list(); + req_one_access_txt = "8;12" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/synthcloset) -"Wc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/secure{ - dir = 8; - name = "\improper Shared Office"; - req_access = list(); - req_one_access_txt = "12;32" - }, /obj/structure/cable{ icon_state = "4-8" }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/shared_office) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "We" = ( /obj/structure/bed{ can_buckle = 0 @@ -11338,22 +11294,32 @@ "Wh" = ( /turf/closed/wall/almayer/outer, /area/golden_arrow/cryo_cells) -"Wi" = ( -/obj/structure/machinery/medical_pod/bodyscanner{ - pixel_y = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) "Wj" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/obj/structure/prop{ + color = "#b30000"; + icon = 'icons/obj/pipes/power_cond_white.dmi'; + icon_state = "8-9"; + layer = 2.9; + name = "cable"; + pixel_x = 4; + pixel_y = -15 }, -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/prop{ + color = "#b30000"; + icon = 'icons/obj/pipes/power_cond_white.dmi'; + icon_state = "1-4"; + name = "cable"; + pixel_x = -9 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/cryo_cells) +/obj/structure/prop{ + color = "#b30000"; + icon = 'icons/obj/pipes/power_cond_white.dmi'; + icon_state = "8-10"; + name = "cable"; + pixel_x = 21 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/golden_arrow/hangar) "Wn" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/light{ @@ -11425,14 +11391,16 @@ /turf/open/floor/almayer, /area/golden_arrow/dorms) "Wy" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/power/apc/almayer/east, -/obj/structure/cable{ - icon_state = "0-8"; - layer = 2.36 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, /turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/area/golden_arrow/cryo_cells) "WA" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -11479,30 +11447,24 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"WE" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/golden_arrow/hangar) "WF" = ( /turf/closed/shuttle/midway{ icon_state = "62"; name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"WH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "WJ" = ( -/obj/structure/machinery/light{ +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, -/turf/open/floor/almayer/mono, -/area/golden_arrow/supply) +/turf/open/floor/almayer/cargo, +/area/golden_arrow/briefing) "WL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -11510,20 +11472,43 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "WM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Prep Lockers" }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - name = "\improper Storage Bay Blast Door" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 }, /turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonprep) +"WN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "WO" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"WP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) +"WQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "WR" = ( /obj/structure/toilet{ dir = 1 @@ -11557,16 +11542,9 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"WV" = ( -/obj/structure/machinery/power/apc/almayer/west, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) "WW" = ( -/obj/structure/bed/chair/office/light{ - dir = 4 - }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/cryo_cells) "WY" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -11581,6 +11559,9 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"Xa" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/golden_arrow/hangar) "Xb" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/pipes/standard/simple/hidden/supply, @@ -11590,6 +11571,10 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) +"Xc" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer/cargo, +/area/golden_arrow/cryo_cells) "Xd" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -11602,17 +11587,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/hangar) -"Xf" = ( -/obj/structure/surface/table/almayer, -/obj/structure/largecrate/random/case{ - pixel_y = 11 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Xg" = ( -/obj/structure/machinery/cm_vending/gear/medic_chemical, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) "Xi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -11626,26 +11600,44 @@ }, /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/platoonprep) -"Xq" = ( -/obj/structure/machinery/floodlight/landing/floor{ - pixel_x = -2 +"Xl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/obj/structure/machinery/landinglight/ds1{ - dir = 4 +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/cable{ + icon_state = "4-8" }, +/turf/open/floor/almayer/mono, +/area/golden_arrow/cryo_cells) +"Xq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Xs" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "apcbayrailing2" +/obj/structure/machinery/door_control/brbutton{ + id = "apc2blastdoor"; + name = "vehicle bay blast door control"; + pixel_y = 28 }, -/turf/open/floor/almayer/black, +/obj/structure/machinery/door_control/brbutton{ + id = "apcbayrailing2"; + name = "vehicle bay railing control"; + pixel_x = 13; + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Xt" = ( -/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "equipment_conny"; + name = "\improper Squad Two Equipment Locker" + }, /turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) +/area/golden_arrow/platoonarmory) "Xv" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -11685,6 +11677,23 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/briefing) +"XA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/platoonprep) +"XB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "XC" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -11727,20 +11736,27 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"XG" = ( +/obj/structure/prop/almayer/computers/sensor_computer1, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "XH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/surface/table/reinforced/prison, +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/box/bodybags{ + pixel_x = -5; + pixel_y = 11 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/item/storage/box/bodybags{ + pixel_x = -2; + pixel_y = 3 }, -/obj/item/stool{ - pixel_x = -1; - pixel_y = 12 +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 10; + pixel_y = 18 }, -/turf/open/floor/almayer/plating/northeast, -/area/golden_arrow/engineering) +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "XI" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -11755,14 +11771,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/synthcloset) -"XJ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) "XK" = ( /turf/closed/shuttle/midway/transparent{ icon_state = "26"; @@ -11792,17 +11800,6 @@ }, /turf/closed/wall/almayer, /area/golden_arrow/medical) -"XP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) "XS" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/cable/heavyduty{ @@ -11817,30 +11814,17 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) -"XV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 - }, -/obj/structure/machinery/door/airlock/almayer/secure{ - name = "\improper Platoon Commander's Quarters"; - req_access = list(); - req_one_access_txt = "19;12" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoon_commander_rooms) -"XW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/largecrate/random/secure{ - pixel_y = 10 +"XX" = ( +/obj/structure/machinery/door/poddoor/almayer, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/prep_hallway) +"XY" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/supply) "Ya" = ( /obj/structure/prop{ can_buckle = 1; @@ -11852,6 +11836,16 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"Yb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime2{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "Yc" = ( /obj/structure/closet/secure_closet, /obj/structure/machinery/prop{ @@ -11866,9 +11860,11 @@ /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) "Yd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer/cargo, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Yf" = ( /obj/structure/pipes/vents/pump{ @@ -11901,36 +11897,39 @@ /obj/structure/stairs/perspective, /turf/open/floor/almayer, /area/golden_arrow/briefing) -"Yl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/random/case/small, -/obj/structure/machinery/light{ - dir = 1 +"Ym" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 }, -/turf/open/floor/almayer/cargo, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) -"Ym" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 38 +"Yp" = ( +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, -/obj/structure/sign/safety/hazard{ - pixel_x = 14; - pixel_y = 38 +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/obj/structure/sign/safety/ammunition{ - pixel_y = 26 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/cargo_arrow/west, +/turf/open/floor/almayer/blackcorner, /area/golden_arrow/hangar) -"Yp" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood{ - density = 0; - pixel_y = 24; - req_access = list() +"Yq" = ( +/obj/structure/machinery/gear{ + id = "supply_elevator_gear" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor5, -/area/golden_arrow/medical) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer/blackcorner, +/area/golden_arrow/hangar) "Yr" = ( /turf/open/floor/almayer, /area/golden_arrow/platoonprep) @@ -11942,14 +11941,17 @@ /turf/closed/wall/almayer/outer, /area/golden_arrow/synthcloset) "Yy" = ( -/obj/item/device/flashlight/lamp/tripod/grey, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"Yz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/landinglight/ds1/delaytwo{ +/obj/effect/decal/strata_decals/grime/grime1{ dir = 8 }, +/obj/structure/sign/safety/storage{ + pixel_x = 33 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow, +/area/golden_arrow/prep_hallway) +"Yz" = ( +/obj/item/device/flashlight/lamp/tripod/grey, /turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "YA" = ( @@ -11958,6 +11960,18 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"YC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/hangar) +"YE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "YF" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/phone_base{ @@ -11977,6 +11991,14 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoon_commander_rooms) +"YG" = ( +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "YH" = ( /obj/structure/machinery/shower{ dir = 8 @@ -11988,15 +12010,13 @@ /turf/open/floor/plating/plating_catwalk, /area/golden_arrow/cryo_cells) "YI" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "squadarmory"; + name = "\improper Gear Lockers" }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/golden_arrow/hangar) +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/platoonprep) "YJ" = ( /turf/closed/shuttle/midway{ icon_state = "104"; @@ -12015,14 +12035,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/platoonprep) -"YO" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "squadarmory"; - name = "\improper Gear Lockers" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonprep) "YP" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -12035,6 +12047,16 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/golden_arrow/hangar) +"YR" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/machinery/computer/cryopod{ + pixel_x = 6; + pixel_y = -2 + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "YS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 8 @@ -12081,12 +12103,8 @@ /turf/open/floor/almayer, /area/golden_arrow/prep_hallway) "YX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/cargo_arrow/north, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/cargo, /area/golden_arrow/hangar) "YY" = ( /turf/closed/wall/almayer, @@ -12095,23 +12113,12 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/shared_office) -"Za" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Prep Lockers" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonprep) "Zb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer/cargo_arrow, -/area/golden_arrow/prep_hallway) +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) "Zc" = ( /obj/structure/bed/bedroll{ layer = 3.1; @@ -12151,8 +12158,20 @@ /turf/open/floor/almayer, /area/golden_arrow/cryo_cells) "Zf" = ( -/obj/structure/machinery/landinglight/ds1/delayone, -/turf/open/floor/almayer/plate, +/obj/item/prop/almayer/comp_open{ + pixel_x = 40; + pixel_y = 4 + }, +/obj/structure/prop{ + color = "#b30000"; + icon = 'icons/obj/pipes/power_cond_white.dmi'; + icon_state = "4-5"; + layer = 2.8; + name = "cable"; + pixel_x = 5; + pixel_y = 2 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/golden_arrow/hangar) "Zh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ @@ -12186,12 +12205,20 @@ name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"Zm" = ( -/obj/structure/machinery/door/poddoor/almayer/locked{ - dir = 4; - name = "\improper Second Platoon Ready Bay Blast Door" +"Zl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1 }, -/turf/open/floor/almayer/test_floor4, +/obj/effect/decal/strata_decals/grime/grime1{ + dir = 4 + }, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/open/floor/almayer/plate, /area/golden_arrow/hangar) "Zo" = ( /obj/effect/decal/cleanable/dirt, @@ -12207,19 +12234,6 @@ }, /turf/open/floor/almayer, /area/golden_arrow/engineering) -"Zr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/cryo_cells) "Zs" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -12249,38 +12263,49 @@ name = "\improper Tripoli" }, /area/golden_arrow/hangar) -"Zx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 +"Zw" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = -3; + pixel_y = 25; + randpixel = 0 }, -/obj/structure/cable/heavyduty{ - icon_state = "4-8" +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 9; + pixel_y = 6 }, -/obj/structure/machinery/door/poddoor/almayer/open{ - closed_layer = 3.3; - dir = 4; - id = "squadblastdoor"; - layer = 3.3; - name = "First Platoon Ready Bay Blast Door"; - open_layer = 3.3 +/obj/item/trash/cigbutt{ + pixel_x = 4; + pixel_y = 5; + randpixel = 0 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - layer = 1.9 +/obj/item/prop/helmetgarb/gunoil{ + layer = 3.3; + pixel_x = 9; + pixel_y = 23 }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/platoonarmory) -"Zy" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/item/storage/fancy/cigar/matchbook{ + pixel_x = -2; + pixel_y = 8 }, -/obj/structure/cable{ - icon_state = "1-2" +/turf/open/floor/almayer/plate, +/area/golden_arrow/platoonprep) +"Zx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/briefing) +/turf/open/floor/almayer/plate, +/area/golden_arrow/cryo_cells) +"Zy" = ( +/turf/open/floor/almayer/uscm/directional/up_down/northwest, +/area/golden_arrow/hangar) "Zz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/oil, @@ -12289,27 +12314,15 @@ }, /turf/open/floor/plating, /area/golden_arrow/hangar) -"ZB" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - name = "\improper Storage Bay One Blast Door" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/hangar) "ZC" = ( -/obj/structure/machinery/medical_pod/autodoc{ - pixel_y = 6 - }, /obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/medical) -"ZD" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer/plating/northeast, +/area/golden_arrow/engineering) "ZE" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -12317,6 +12330,13 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/golden_arrow/shared_office) +"ZG" = ( +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/hangar) +"ZH" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer/dark_sterile, +/area/golden_arrow/medical) "ZI" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -12325,16 +12345,9 @@ /turf/open/floor/almayer, /area/golden_arrow/hangar) "ZM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) +/obj/structure/machinery/power/smes/buildable, +/turf/open/floor/almayer/test_floor4, +/area/golden_arrow/engineering) "ZN" = ( /obj/structure/cable{ icon_state = "4-8" @@ -12351,32 +12364,23 @@ }, /turf/open/floor/almayer, /area/golden_arrow/hangar) -"ZP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer/cargo/southwest, -/area/golden_arrow/hangar) -"ZQ" = ( -/obj/structure/machinery/door/airlock/multi_tile/elevator/research{ - name = "\improper Supply Elevator Hatch" - }, -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/supply) "ZR" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/roller{ - pixel_y = 17 +/obj/structure/cargo_container/kelland/right{ + opacity = 0 }, -/obj/item/roller{ - pixel_y = 23 +/obj/structure/cargo_container/kelland/right{ + opacity = 0; + pixel_y = 22 }, -/obj/item/storage/firstaid/regular{ - pixel_x = -2; - pixel_y = 1 +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, -/turf/open/floor/almayer/dark_sterile, -/area/golden_arrow/medical) +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/golden_arrow/hangar) "ZT" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/cable/heavyduty{ @@ -12396,22 +12400,19 @@ /turf/open/floor/plating, /area/golden_arrow/hangar) "ZV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/effect/decal/strata_decals/grime/grime2, +/obj/structure/machinery/power/apc/almayer/north, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer/plate, -/area/golden_arrow/hangar) -"ZW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer/cargo, -/area/golden_arrow/hangar) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/golden_arrow/prep_hallway) "ZX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/vending/walkman{ @@ -12426,9 +12427,9 @@ /obj/item/trash/barcardine, /turf/open/floor/almayer, /area/golden_arrow/dorms) -"ZY" = ( -/turf/open/floor/almayer/test_floor4, -/area/golden_arrow/supply) +"ZZ" = ( +/turf/open/floor/almayer/cargo_arrow/east, +/area/golden_arrow/engineering) (1,1,1) = {" EG @@ -16593,29 +16594,29 @@ EG EG EG Wh -PC +BI AK kL AK kL -pA +nB AK kL AK kL -KY +aR zx -Zr +JS AK kL AK kL -yd +xD AK kL AK kL -RU +TX Wh EG EG @@ -16745,29 +16746,29 @@ EG EG EG Wh -uQ -gf -IG -zo -gf -CC -gf -IG -zo -gf -rB -sm -hz -OE -wk -Na -Na -KI -OE -wk +gX +yN Na +pw +yN +Qf +yN Na -Pq +pw +yN +bh +Ad +nw +PL +dB +rE +rE +RU +PL +dB +rE +rE +tq Wh EG EG @@ -16897,29 +16898,29 @@ EG EG EG Wh -pP -cL -Vc -Vc -cL +LE MS -cL -Vc -Vc -yl +LG +LG +MS +Zx +MS +LG +LG +oT LF -UP -uT -bV -dd -bV -yO -cH -bV -bV -dd -bV -XP +KZ +Fc +me +lc +me +Os +Sm +me +me +lc +me +Wy Wh EG EG @@ -17049,7 +17050,7 @@ EG EG EG Wh -ec +Go Bk og Bk @@ -17059,7 +17060,7 @@ Bk Bk og yQ -NT +jG bx bx bx @@ -17201,7 +17202,7 @@ EG EG EG Wh -TV +Bb Sb du NA @@ -17211,13 +17212,13 @@ NA NA kw yQ -ec +Go bx ZX We bx We -mK +rs bx LC RY @@ -17353,17 +17354,17 @@ EG EG EG Wh -ec -ec +Go +Go hq -ec -Gm -AE -um -ec +Go +Sv +YR +JU +Go Og -Vg -ec +Zb +Go bx oo mk @@ -17506,15 +17507,15 @@ EG EG Wh og -ec -xU -ec +Go +TM +Go og og og -Od -FG -Me +cL +Fv +CH og bx SQ @@ -17657,17 +17658,17 @@ EG EG EG Wh -SJ -ec +eV +Go bm -ec -aM +Go +gG og -aM -ec +gG +Go bm -cX -SJ +PC +eV bx vf Xy @@ -17961,17 +17962,17 @@ EG EG EG Wh -Bo +fL NA YS Bk -ql +ru og -ql +ru NA YS NA -Bo +fL bx ut bp @@ -18076,7 +18077,7 @@ IC IC IC ua -kx +eQ Zq IC IC @@ -18265,22 +18266,22 @@ Wh Wh Wh Wh -Fb -cX -gy -pY -aM +Rt +PC +SK +wT +gG og -aM -pY -gy -ec -Fb +gG +wT +SK +Go +Rt bx Ln KE -aV -Vt +FX +bJ We bx ET @@ -18414,25 +18415,25 @@ EG EG EG Wh -si -oc +wK +RC og og og -ce -jF +uT +yO og og og -PG -BR +TH +Tv og og bx bx bx -pw -dt +Gf +aT bx bx bx @@ -18530,11 +18531,11 @@ EG IC av PR -hV -DG -DG -DG -rW +CW +ax +ax +ax +ls PR Ss IC @@ -18566,33 +18567,33 @@ EG EG EG Wh -wO -mm -ve -GX -BM -Jw -Ev -Rk -gd -ec -pY -Dd -Fz +nU +wR +Mc +JZ +Sg +Xl +zv +Hq +Pm +Go +wT +Nl +un cO cO Rz og -Jj -st +Tw +nk EL UK PP EL Fk -Uy -VG -hA +Nd +bi +xk Cm uE oB @@ -18682,11 +18683,11 @@ EG IC pK yW -hi +qj yS yS yS -KZ +Dm rb Zi IC @@ -18718,8 +18719,8 @@ EG EG EG Wh -Mg -RW +Ap +Jz WR og og @@ -18733,7 +18734,7 @@ jW Bk Bk Bk -cX +PC og zj mZ @@ -18742,9 +18743,9 @@ UN mZ Ao vQ -Hr -vB -LK +rW +XX +AP UN gR oB @@ -18834,11 +18835,11 @@ IC IC GL Qs -eH +wA yS yS yS -lW +cS gt DA IC @@ -18871,10 +18872,10 @@ EG EG Wh fI -PM +ri WR og -CS +on Ze Np Wq @@ -18883,9 +18884,9 @@ DI As Em dZ -Tv +Mb FZ -HG +Jw og jg Cm @@ -18980,17 +18981,17 @@ EG EG EG IC -bo -WV -pS +iH +Rp +Li DA DA lU -ri -Kj -zE -Kj -kD +pH +tW +Eq +tW +AA PR pr Ty @@ -19023,10 +19024,10 @@ EG EG Wh fI -PM +ri WR og -CS +on jW Bk DI @@ -19037,14 +19038,14 @@ bm Bk Bk NA -ec +Go og -oZ +ZV kQ Hp -CV -Tj -Xg +QF +fG +zn CE CE aI @@ -19132,11 +19133,11 @@ EG EG EG IC -yL -gT -AI -AI -LB +Ud +LR +ZC +ZC +Jc Zo LQ oP @@ -19178,15 +19179,15 @@ Wh Wh Wh Wh -Gl +ty bm Bk Uc Uc db hS -PB -Fz +Er +un YH YH zq @@ -19194,10 +19195,10 @@ og QP Cm Hp -jr -Cs -WW -nU +rB +ZH +iL +IK CE aI EG @@ -19284,10 +19285,10 @@ EG EG EG IC -Du +ZM Co wd -Du +ZM DA po jP @@ -19330,14 +19331,14 @@ EG EG EG Wh -Or +Ue bm NA Bk Bk Bk hS -FI +yG og og og @@ -19346,10 +19347,10 @@ og Iz EL CE -ix -Im -wM -uu +yj +PU +Vt +fQ CE aI EG @@ -19436,18 +19437,18 @@ EG EG EG IC -Ti +fO GQ DP -GO +NS IC IC IC IC IC IC -UO -Nf +ZZ +nN IC IC IC @@ -19482,15 +19483,15 @@ EG EG EG Wh -PU +ha bm NA mO Ro Qm hL -fz -ec +bL +Go og pF UK @@ -19499,7 +19500,7 @@ YU Cm CE CE -dK +Wc CE CE CE @@ -19588,14 +19589,14 @@ EG EG EG IC -To +zc mc Lh -GO +NS IC Yv -ih -je +gY +Bj Yv IC vK @@ -19634,7 +19635,7 @@ EG EG EG Wh -Gl +ty pB HK tB @@ -19642,19 +19643,19 @@ gU gp Nb uK -ge -nf -ok +rn +bu +dH IJ rY QS Cm Hp -Fj -xo -Wi -Ix -Js +XH +tf +qy +QT +Ld aI EG EG @@ -19746,12 +19747,12 @@ IC IC IC Yv -md +RL ro -vM +gf IC -vi -tq +eA +ks IC EG EG @@ -19786,7 +19787,7 @@ EG EG EG Wh -CS +on Bk Bk Kk @@ -19794,19 +19795,19 @@ Hy Da Bk Bk -sB -dI -hA +WW +VI +xk QP EL DD EL Hp -ZR -xo -nQ -pi -rn +tZ +tf +pO +Fj +xM aI aI EG @@ -19938,7 +19939,7 @@ EG EG EG Wh -CS +on Bk NA mO @@ -19946,20 +19947,20 @@ gW Qm Bk Bk -cX +PC zx Cm xB Yu df -Zb -Sa -Th -Ju -AW -xx -iP -mB +tQ +nc +Bq +ed +dk +AO +KN +Tz aI EG EG @@ -20050,7 +20051,7 @@ EG EG Yv xZ -zh +dK gr oY IC @@ -20098,20 +20099,20 @@ BD Qm Bk NA -cX +PC zx if WC Cm Cm -zd -sV -wa -hj -VJ -Ft -GB -ZC +xC +SD +jq +yC +kJ +CS +GS +lx aI EG EG @@ -20202,9 +20203,9 @@ EG EG Yv qi -Wb +cz Br -Bv +mM IC Fi wj @@ -20243,14 +20244,14 @@ EG EG Wh og -xW -fQ -ec +Om +Bu +Go EY -cX -qy -cX -bh +PC +lm +PC +RE og jD QP @@ -20258,11 +20259,11 @@ EL CE CE CE -qf -jy -jr -Is -Ik +Pa +JA +rB +BM +pP CE aI EG @@ -20397,9 +20398,9 @@ Wh Wh Wh Wh -sC -nL -pe +Bx +kH +rt og og og @@ -20410,12 +20411,12 @@ LI CE nb XN -Lv -bH -xG -jB -Di -Nl +dD +Fd +Pk +aL +wM +Pn aI EG EG @@ -20507,7 +20508,7 @@ EG EG IC IC -uG +Mq pr pq pr @@ -20548,26 +20549,26 @@ EG EG EG Wh -Ae -PM -Es -PM -tI -Ei +Ci +ri +mQ +ri +id +qp og -DW +BE Bf RZ rk CE nb CE -Yp -Ud -xL -AF -ju -Fh +ad +fu +pv +nF +uU +oz aI EG EG @@ -20658,23 +20659,23 @@ EG EG EG IC -fU -xk -kx +XG +VR +eQ IC -kx -Nf +eQ +nN IC EG EG EG EG EG -AS -AS -AS -AS -AS +hz +hz +hz +hz +hz EG EG EG @@ -20700,14 +20701,14 @@ EG EG EG Wh -Py -PM -Es -PM -PM -PM +Im +ri +mQ +ri +ri +ri og -Tu +Xc TB LV YW @@ -20810,8 +20811,8 @@ EG EG EG IC -GD -XH +ot +Hb wF IC wV @@ -20822,11 +20823,11 @@ EG EG EG EG -AS +hz gb -AS -AS -AS +hz +hz +hz EG EG EG @@ -20852,12 +20853,12 @@ EG EG EG Wh -QZ -el -Wj -wo -ck -lX +Kb +gT +dU +eb +qC +Jr og Dq Ms @@ -20963,22 +20964,22 @@ EG EG IC IC -fO -dU +hT +tk IC -St -St +Vg +Vg IC EG EG EG EG EG -AS -AS -AS -AS -AS +hz +hz +hz +hz +hz EG EG EG @@ -21019,10 +21020,10 @@ aI aI aI IH -WJ +AX hN hN -WJ +AX Lo hl EG @@ -21151,26 +21152,26 @@ EG EG EG DQ -nJ -hB +dG +xe Ir -Lj -nG +si +sf Ir -ia -rx -VL -yv +gD +ma +Uh +SG Ir Vi og Cm Iz bF -yp -EO -UD -ZQ +gV +Hr +qV +xn hN Lf aG @@ -21303,26 +21304,26 @@ EG EG DQ DQ -gV -YO +uP +YI Ir -YO -YO +YI +YI Ir -YO -YO -YO -YO +YI +YI +YI +YI Ir Ir Ir MT Iz Ca -Uy -EO -OY -ZY +Nd +Hr +up +XY QE Lf Lf @@ -21471,10 +21472,10 @@ Ir ra Iz bF -Uy -EO -OY -ZY +Nd +Hr +up +XY QE Lf aG @@ -21618,15 +21619,15 @@ qD Vh Xb sb -Sr -Za -it +ox +dI +hF ER bF -dW -EO -Qb -ZY +Yy +Hr +RV +XY QE Lf aG @@ -21752,11 +21753,11 @@ zs jK Dj IV -Tl -vL -vL -vL -Rs +vC +Dh +Dh +Dh +Ih YY qx Tb @@ -21770,19 +21771,19 @@ JE Ir Vs bI -ru -DS -hA +BW +km +xk ji mr TD TD TD qK -dj +HQ hN QE -Nx +Kw Lo hl EG @@ -21904,13 +21905,13 @@ zs uZ QW oH -jc -Ku -NL -Zy -gY -GN -ws +ju +CO +Pg +WJ +vi +Sd +Nx Td wU Ir @@ -22056,13 +22057,13 @@ zs TY QW DO -Rl -bi -rq -wT -Hd +Mz +zI +Tl +Bt +lt YY -gD +yM bI NX Ir @@ -22074,9 +22075,9 @@ JE Ir dc ww -ru -ax -hA +BW +cH +xk Oh Cm eW @@ -22205,14 +22206,14 @@ EG EG EG zs -yY +KX Xz Ny -xh -vL -vL -vL -lf +xU +Dh +Dh +Dh +ND YY hG XM @@ -22226,15 +22227,15 @@ RA Oz cx GH -fD -DS -hA +VX +km +xk FN -yy +Pz eW Ay eW -tW +Pv mz eW TD @@ -22360,15 +22361,15 @@ zs Jt Iu Yj -Qd -vL -Rx -oC -Hj +ap +Dh +aO +gI +uV YY Yr -KX -EW +XA +Ic rI FM Yr @@ -22377,12 +22378,12 @@ YL RH Wf Yr -kk +hH Yr eW Hw Hw -XV +dy eW eW eW @@ -22519,22 +22520,22 @@ YY YY YY VZ -Dm -yP +Bo +WM VZ Ir -eT -TT -kE -oz +hK +Zw +IR +qO do YK -Wc +iM YK eW Yi tx -yJ +bO tl JI iW @@ -22671,8 +22672,8 @@ bk bk da wQ -aR -vI +KM +TN Ps bk bk @@ -22681,7 +22682,7 @@ YK YK do Lx -SG +KY Fg eW YF @@ -22819,14 +22820,14 @@ EG EG EG HZ -RK -kN +LP +Nn pI Ot Ck Ot Ba -BI +NO JR do NQ @@ -22841,7 +22842,7 @@ uk fK Cc MZ -aQ +eK pU QA QK @@ -22972,17 +22973,17 @@ EG EG HZ CX -sj +Ml qk Cv au Cv qk -Bx +NL iF do Vu -gO +oV pl wJ Pu @@ -23124,13 +23125,13 @@ EG EG HZ CX -sj +Ml HY wQ ga wQ Yg -RP +pV HE do rP @@ -23144,23 +23145,23 @@ dz dz dz dz -Nk +vH oy -Nk +vH kb -Nk +vH TU -Nk +vH dz AY dz -vh +oc oy -fs +Ow kb -gj +aM TU -fs +Ow dz dz dz @@ -23286,43 +23287,43 @@ gn bk kb Zc -oT -Qf -SB +hr +OH +KH vx -wI -ZM -IS +sB +sP +kN dz AY dz -TM +PO ki -TM +PO kb -TM +PO jY -xd +pS dz AY dz -TM +PO jY -TM +PO kb -TM +PO jY -xd +pS dz AY dz -LE -gI -SB +lK +kk +KH VD -JZ -gI -ct +dV +kk +tm dz EG EG @@ -23428,23 +23429,23 @@ EG EG HZ zk -Be +ag QJ Cv ga wQ oI -dH +Xt bZ kb cy -QQ -Tz -XJ +pA +mK +YE jY -Ql -lr -Bi +WP +JX +TT dz AY dz @@ -23468,13 +23469,13 @@ pz dz AY dz -bD -BB -jR +dd +At +pJ VD -Ql -lr -MO +WP +JX +wl dz EG EG @@ -23580,53 +23581,53 @@ EG EG HZ CX -TO +Qe qk wQ MG Cv qk -dH +Xt ja kb dz -QT -FL -ej +uQ +rj +Cj kG -rf -SA -SA +Kr +xQ +xQ dz AY dz jM -De +iY VD -Uv +GZ VD -De +iY jI dz AY dz xV -De +iY jY -De +iY VD -De +iY OD dz AY dz -tR -vH -aw +yI +Mx +IN kG -rf -vH -vH +Kr +Mx +Mx dz EG EG @@ -23731,54 +23732,54 @@ EG EG EG HZ -RK -yD +LP +Lb Jx Ot aP Ot mI -fC +AE JM kb im -FK -Pg -GJ +HI +Et +yi LX -Vx -BY -MO +gS +Io +wl dz AY dz za -De +iY VD -EF +fr jY -De +iY cR dz AY dz za -De +iY jY -Uv +GZ Xe -Uv +GZ tt dz AY dz -gN -Tz -nr +ko +mK +BR RG -Vx -lr -TM +gS +JX +PO dz EG EG @@ -23885,7 +23886,7 @@ EG HZ HZ kn -Dr +TE ur rl IX @@ -23894,13 +23895,13 @@ fZ bk kb dz -iL -yj -fT +ZR +Vx +fW Gg -pp -ed -wW +VY +Al +Jn dz AY dz @@ -23924,13 +23925,13 @@ YT dz AY dz -xE -vT -ZV +So +VQ +PQ sz -vC -SA -wW +HB +xQ +Jn dz EG EG @@ -24037,61 +24038,61 @@ EG EG EG HZ -AP -sD -PO -sD -wv +fo +Ei +Lj +Ei +fJ bk kb kb dz dz -Nc -dy -kC -dy -dy +nL +kt +ez +kt +kt dz dz AY dz dz -Nc -dy -kC -dy -dy +nL +kt +ez +kt +kt dz dz dz dz dz -Nc -dy -kC -zc -zc +nL +kt +ez +YC +YC dz dz AY dz dz -zc -zc -kC -dy -dy +YC +YC +ez +kt +kt dz dz EG EG dz -dy -dy -kC -dy -dy +kt +kt +ez +kt +kt dz EG EG @@ -24189,61 +24190,61 @@ EG EG EG HZ -Vq -Vq -Zx -Vq -Vq +Jl +Jl +Hu +Jl +Jl bk TJ -of +UR Iv dz -ZB -ZB -Sh -ZB -ZB +dW +dW +ck +dW +dW dz AY AY AY dz -vJ -vJ -Ee -vJ -vJ +TV +TV +Ac +TV +TV dz -VX +Sa jj -kR +la dz -tw -tw -se -tw -tw +EC +EC +Ly +EC +EC dz AY AY AY dz -eX -eX -kA -eX -eX +IP +IP +yd +IP +IP dz EG EG EG dz -Zm -Zm -Ar -Zm -Zm +oG +oG +ec +oG +oG dz EG EG @@ -24341,61 +24342,61 @@ dz dz dz dz -NP -lN -ln -lN -rX +Kq +hm +Su +hm +gy kb nT XF nT dz -Rr -bY -hT -lN -eK +AR +zd +sD +hm +CZ dz dz dz dz dz -Tx -bY -Bd -lN -lN +BG +zd +lP +hm +hm dz -Hq +SJ Cp -ZW +Rx dz -Ym -lN -hT -lN -bY +kC +hm +sD +hm +zd dz dz dz dz dz -NE -bY -hT -lN -tY +kO +zd +sD +hm +bU dz dz dz dz dz -NE -lN -qb -bY -tY +kO +hm +Lk +zd +bU dz dz dz @@ -24481,74 +24482,74 @@ EG EG EG EG -EG -EG -EG -EG -dz -dz -ca -TE -qP -PE -Fc -jA -dT -QI -or -sU -sU -OS -dT -hk -dT -mQ -dT -dT -hk -Rq -dT -DZ -Pf -PE -Pf -xv -dT -dT -hk -dT -dT -Os -TM -xc -TM -eR -dT -dT -hk -dT -dT +EG +EG +EG +EG +dz +dz +GC +YG +Wb +hw OG -Pf -qP -Pf -xv -dT -dT -hk -HX -HX -DZ -RJ -PE -ag -xv -dT -dT -hk -dT -HX -TR +lW +tD +qb +zV +qu +qu +eU +tD +FH +tD +WQ +tD +tD +FH +xd +tD +Hh +dP +hw +dP +Pp +tD +tD +FH +tD +tD +vB +PO +xc +PO +yV +tD +tD +FH +tD +tD +Zl +dP +Wb +dP +Pp +tD +tD +FH +qd +qd +Hh +ue +hw +Ht +Pp +tD +tD +FH +tD +qd +qo kb dz EG @@ -24644,12 +24645,12 @@ qL Wa RF Wa -Lw +ya zD Wp -Ht -ib -ib +fz +hZ +hZ AL bq QN @@ -24671,9 +24672,9 @@ Sw Wa Wa os -xd +pS Cp -BX +cX qh sY sY @@ -24700,8 +24701,8 @@ Xd bg sY SM -qP -qP +Wb +Wb dz dz EG @@ -24796,12 +24797,12 @@ pN OJ cE Wa -GE +dv Wa os -qp +gN OL -qP +Wb fY VD hv @@ -24823,9 +24824,9 @@ vq ES zD Ja -GR +VC Ek -xM +YX TI ES ES @@ -24853,7 +24854,7 @@ vq Id vo DM -la +gd kb dz dz @@ -24939,21 +24940,21 @@ dz ni Pi NJ -gX -bJ -YX +MI +AT +Ae Wa aB Wa sO cE Wa -GE +dv cE os -qp +gN KO -qP +Wb TK ys Xe @@ -25005,10 +25006,10 @@ WT WT JO FE -jO -tN -bJ -Tz +mq +qR +AT +mK gC EG EG @@ -25091,21 +25092,21 @@ dz ni wG Hi -gX -wl -YX +MI +Kd +Ae cE va Ya Wa Wa Wa -GE +dv WA gs -DR -mb -pJ +el +EB +iv QO PN PN @@ -25157,10 +25158,10 @@ sY sY rv RG -nF -lr -bJ -Tz +ME +JX +AT +mK gC EG EG @@ -25243,40 +25244,40 @@ dz ni PW cW -gX -wl -YX +MI +Kd +Ae Wa Rj Ra Wa cE Wa -Ow +xG OQ -iO -Go -Jz -Mx -Rv -vU -Jz -xt -Rv -vU -ko -Xq -yq -vU -Jz -xt -Rv -Go -Jz -xt -yq -Go -sE +pe +mF +GB +hh +OS +IT +GB +sV +OS +IT +rw +Fb +bY +IT +GB +sV +OS +mF +GB +sV +bY +mF +fy cB Wa Wa @@ -25284,35 +25285,35 @@ oW Wa cE nH -LY -qP -Ac -qP -qP -qP -qP -Ac -qP -qP -qP -tM -qP -Ac -Ac -Ac -qP -qP -qP -qP -Ac -qP -LY +Mo +Wb +Nj +Wb +Wb +Wb +Wb +Nj +Wb +Wb +Wb +UP +Wb +Nj +Nj +Nj +Wb +Wb +Wb +Wb +Nj +Wb +Mo Ve gZ -JD -xg -sw -RC +pm +LS +qX +UL Ce EG EG @@ -25395,18 +25396,18 @@ dz Wn lj lj -OT -iY -lP +RK +az +Rm DM cE cE Qj Wa Wa -Ow +xG OQ -Zf +JN yX yX yX @@ -25428,7 +25429,7 @@ yX yX yX yX -Uq +uc jN Wa Wa @@ -25436,7 +25437,7 @@ LO Wa Wa os -qP +Wb bX Sq Sq @@ -25458,13 +25459,13 @@ Sq Sq MM Ep -qP +Wb Ve RG -nF -lr -bJ -Tz +ME +JX +AT +mK gC EG EG @@ -25547,18 +25548,18 @@ dz JJ Wa Wa -NN -bJ -KL -dl +ow +AT +Ey +fn zD WO lj JW zD -jZ +kD OQ -lb +Py yX yX yX @@ -25580,7 +25581,7 @@ yX yX yX yX -pn +vY jN cE Tk @@ -25588,7 +25589,7 @@ Vn Wa cE os -Ac +Nj RR yX PV @@ -25610,13 +25611,13 @@ mv yX yX gu -Gu +xh jp Ky -ka -lr -bJ -Tz +OE +JX +AT +mK gC EG EG @@ -25702,15 +25703,15 @@ dz dz dz dz -SP +oL Wa VD jY VD oR -aT +Xq OQ -OV +kZ yX yX yX @@ -25732,7 +25733,7 @@ yX yX yX yX -zi +ay cB cE Wa @@ -25740,7 +25741,7 @@ MH Wa Wa os -Ac +Nj RR yX yX @@ -25762,10 +25763,10 @@ hX Rc yX kz -wq +bw HP Md -xq +SF dz dz dz @@ -25851,18 +25852,18 @@ Wa cE cE Wa -NN -VI -YX -ZP +ow +Dk +Ae +kd Wa cE Wa Wa Wa -GE +dv OQ -cs +qY yX yX yX @@ -25884,15 +25885,15 @@ yX yX yX yX -nz +FO sM jY -zU -Jc -zU +wI +GY +wI VD os -Ac +Nj RR yX yX @@ -25900,9 +25901,9 @@ yX yX Tt kU -wK -Kx -lI +vX +iV +Kt lo Pd Pd @@ -25914,13 +25915,13 @@ HO cY yX Lm -Ac +Nj Zs FE -jO -lr -VI -KL +mq +JX +Dk +Ey Wa cE Wa @@ -26003,18 +26004,18 @@ Wa cE cE Wa -NN -BE -YX -ZP +ow +xX +Ae +kd Wa cE Wa Wa cE -GE +dv OQ -Zf +JN yX yX yX @@ -26036,15 +26037,15 @@ yX yX yX yX -Tr +Tn cB -zU -eA -yu -SI -zU +wI +to +UT +In +wI nH -qP +Wb RR yX DN @@ -26052,27 +26053,27 @@ gL Zj BT iA -mi -rR -ay -RB -PQ -fv -Jr -PQ -Kt +vA +Vb +yz +Nm +Xa +lX +Lp +Xa +rq Rc yX yX yX Lm -qP +Wb we RG -nF -lr -VI -KL +ME +JX +Dk +Ey Wa cE cE @@ -26155,18 +26156,18 @@ Wa oR XS XS -Cf -NB -Cz +wc +vj +Eb xJ zF GW zF zF VM -qY +Ox lE -CH +ze yX yX yX @@ -26188,43 +26189,43 @@ yX yX yX yX -Te +iN jN -Jc -ff -Rt -NY -Jc +GY +ob +lS +tG +GY nH -LY +Mo RR yX aF Dp -Fm -zN -Sk -bM -Bn +wN +Hz +Fy +pi +Zf Aw -YI -PQ -PQ -PQ -PQ -uP +CB +Xa +Xa +Xa +Xa +Gh yX yX yX yX Lm -LY +Mo we gZ -JD -xg -rC -dG +pm +LS +gM +TO lj lj DY @@ -26307,18 +26308,18 @@ Wa Wa cE cE -NN -VI -KL -ZP +ow +Dk +Ey +kd Wa rJ Wa Wa cE -GE +dv OQ -kp +mG yX yX yX @@ -26340,15 +26341,15 @@ yX yX yX yX -zi +ay jN -zU -Ki -UJ -bz -zU +wI +Zy +Nr +st +wI os -qP +Wb RR yX Vw @@ -26356,27 +26357,27 @@ kl CQ JH Mn -UX -Ry -so -Qc -PQ -ha -PQ -PQ -uP +Wj +Ui +Hx +ug +Xa +Jq +Xa +Xa +Gh yX yX yX yX Lm -qP +Wb Ve RG -nF -BY -VI -KL +ME +Io +Dk +Ey cE Wa Wa @@ -26459,18 +26460,18 @@ cE cE cE Wa -NN -VI -YX -ZP +ow +Dk +Ae +kd Wa ZO Wa Wa Wa -GE +dv OQ -cs +qY yX yX yX @@ -26492,15 +26493,15 @@ yX yX yX yX -gv +NT cB VD -zU -Jc -zU +wI +GY +wI VD nH -qP +Wb RR yX yX @@ -26508,9 +26509,9 @@ yX yX Pe FQ -Bt -WE -rc +Vq +Fm +VO mg jl jl @@ -26522,13 +26523,13 @@ hu oJ yX Lm -qP +Wb jp Ky -ka -BY -VI -KL +OE +Io +Dk +Ey Wa Wa Wa @@ -26614,15 +26615,15 @@ dz dz dz dz -SP +oL cE HW VD jY xY -jZ +kD OQ -Am +uL yX yX yX @@ -26644,7 +26645,7 @@ yX yX yX yX -Uq +uc cB Wa Wa @@ -26652,7 +26653,7 @@ qv Wa Wa os -qP +Wb RR yX yX @@ -26674,10 +26675,10 @@ jS sF yX Lm -Ac +Nj GU Md -xq +SF dz dz dz @@ -26763,18 +26764,18 @@ dz Gp Wa Wa -NN -bJ -KL -Tn +ow +AT +Ey +Ev Xd OF sY Xd sY -rz +Fa OQ -sP +so yX yX yX @@ -26796,7 +26797,7 @@ yX yX yX yX -Uq +uc cB Wa Wa @@ -26804,7 +26805,7 @@ tg Wa Wa os -qP +Wb RR Rc yX @@ -26826,13 +26827,13 @@ kf yX yX gu -qP +Wb Zs FE -oG -lr -bJ -Tz +CY +JX +AT +mK gC EG EG @@ -26915,18 +26916,18 @@ dz CJ US MX -LG -sw -lP +nu +qX +Rm eJ -eB -oq -Mc -Xt -xd -mw +kA +BY +Ry +Aj +pS +Bd OQ -kp +mG yX yX yX @@ -26948,7 +26949,7 @@ yX yX yX yX -pn +vY jN Wa Wa @@ -26956,7 +26957,7 @@ nh Wa cE os -qP +Wb mU Ch Ch @@ -26978,13 +26979,13 @@ Ch Ch Ch Zz -qP +Wb Ve RG -nF -BY -bJ -Tz +ME +Io +AT +mK gC EG EG @@ -27067,40 +27068,40 @@ dz ni iE ni -gX -bJ -KL +MI +AT +Ey os -Er -zZ +Pw +BP VD -kK -xd -mw +Dw +pS +Bd OQ -ME -ig -yk -JX -LN -ig -Ml -Ew -LN -ig -yk -eQ -iB -Yz -nC -kd -iB -Yz -yk -kd -iB -ig -Fy +Yd +Ym +qT +iX +XB +Ym +mW +FG +XB +Ym +qT +Ju +zE +zp +NV +rz +zE +zp +qT +rz +zE +Ym +of cB Wa Wa @@ -27108,35 +27109,35 @@ PH cE Wa os -LY -qP -Ac -Ac -qP -Ac -qP -qP -qP -qP -qP -iK -qP -qP -Ac -qP -qP -qP -Yy -qP -Ac -qP -LY +Mo +Wb +Nj +Nj +Wb +Nj +Wb +Wb +Wb +Wb +Wb +OC +Wb +Wb +Nj +Wb +Wb +Wb +Yz +Wb +Nj +Wb +Mo Ve gZ -JD -xg -sw -RC +pm +LS +qX +UL gC EG EG @@ -27219,16 +27220,16 @@ dz ni ni ni -gX -wl -YX +MI +Kd +Ae os -Rg -Nj +ph +jr By -Ci -TM -mw +ZG +PO +Bd Rn YA YA @@ -27285,10 +27286,10 @@ YA YA tS RG -nF -BY -bJ -Tz +ME +Io +AT +mK gC EG EG @@ -27371,16 +27372,16 @@ dz ni ni ni -gX -wl -YX +MI +Kd +Ae os -cV -kO +uJ +je Jb -Ci -TM -mw +ZG +PO +Bd zy zF zF @@ -27437,10 +27438,10 @@ sY sY Tm Ky -ka -SF -bJ -Tz +OE +hB +AT +mK gC EG EG @@ -27527,12 +27528,12 @@ wY dz dz sZ -zu -oq -Mc -Ci -xd -ez +mm +BY +Ry +ZG +pS +LW zD ES qQ @@ -27559,9 +27560,9 @@ kG ES zD uI -xM +YX Ek -xM +YX TI ES ES @@ -27589,7 +27590,7 @@ kG ES aX WL -BN +Tx kb dz dz @@ -27684,7 +27685,7 @@ Ob YA YA YA -ms +AB Wa Wa Sw @@ -27711,9 +27712,9 @@ Ws Wa Wa nH -cP +it Cp -Yd +Te dR WT Xv @@ -27740,7 +27741,7 @@ WT Ky WT bn -qP +Wb dE dz dz @@ -27831,68 +27832,68 @@ EG EG dz dz -Ac -Wy -qP -IP -Fa -Io -wR -wR -wZ -OR -wR -Bm -zb -Ac -na -Io -OR -OR -wZ -OR -OR -Bm -KF -IP -Fa -zK -OR -OR -wZ -OR -OR -wp -ma +Nj +MO +Wb +aK +Qc +jm +IU +IU +zT +FT +IU +fD +Yb +Nj +VF +jm +FT +FT +zT +FT +FT +fD +VA +aK +Qc +Kl +FT +FT +zT +FT +FT +qa +ac vz -xd -zM -KH -OR -wZ -OR -OR -Kd -iU -qP -na -WH -OR -OR -wZ -OR -OR -xe -Ac -Hl -qP -bK -OR -OR -wZ -OR -OR -Kd +pS +bo +Fr +FT +zT +FT +FT +Op +vJ +Wb +VF +dg +FT +FT +zT +FT +FT +gc +Nj +GX +Wb +sL +FT +FT +zT +FT +FT +Op kb dz EG @@ -27989,61 +27990,61 @@ dz dz dz dz -NE -zc -Jv -zc -tY +kO +YC +Di +YC +bU dz dz dz dz dz -NE -zc -kC -dy -tY +kO +YC +ez +kt +bU dz dz dz dz dz -NE -dy -kC -dy -eK +kO +kt +ez +kt +CZ dz -Pa +Ag kY -QU +pM dz -Nm -fd -kC -cq -tY +rp +yn +ez +zW +bU dz dz dz dz dz -lx -zc -kC -dy -tY +Rv +YC +ez +kt +bU dz dz dz dz dz -NE -dy -kC -zc -tY +kO +kt +ez +YC +bU dz dz dz @@ -28141,61 +28142,61 @@ EG EG EG dz -zv -zv -Vp -zv -zv +zh +zh +pD +zh +zh dz EG EG EG dz -xf -xf -WM -xf -xf +pG +pG +Ul +pG +pG dz EG EG EG dz -id -id -fW -id -id +re +re +RX +re +re dz -Yl +vT iC -zQ +js dz -jq -jq -Mp -jq -jq +ti +ti +ln +ti +ti dz EG EG EG dz -zv -zv -Vp -zv -zv +zh +zh +pD +zh +zh dz EG EG EG dz -zv -zv -Vp -zv -zv +zh +zh +pD +zh +zh dz EG EG @@ -28293,61 +28294,61 @@ EG EG EG dz -bY -bY -Bd -bY -bY +zd +zd +lP +zd +zd dz EG EG EG dz -bY -bY -Bd -bY -bY +zd +zd +lP +zd +zd dz EG dz dz dz -iT -bY -Bd -bY -bY +mi +zd +lP +zd +zd dz dz dz dz dz -dk -lN -Bd -lN -lN +fU +hm +lP +hm +hm dz dz dz EG dz -bY -bY -Bd -bY -bY +zd +zd +lP +zd +zd dz EG EG EG dz -bY -bY -Bd -bY -bY +zd +zd +lP +zd +zd dz EG EG @@ -28463,25 +28464,25 @@ AC dz EG dz -pQ -jA -HX -HX -hk -HX -dT -TR -Ac +qf +lW +qd +qd +FH +qd +tD +qo +Nj dz -qV -js -HX -dT -hk -HX -dT -DZ -Ac +Xs +Dr +qd +tD +FH +qd +tD +Hh +Nj dz EG dz @@ -28615,25 +28616,25 @@ EG EG EG dz -qP -Hu -tc -tc -dJ -Jg -tc -nw -Ac +Wb +Yq +dl +dl +an +zO +dl +tz +Nj dz -Ac -ze -fr -qT -yZ -fr -fr -nw -Ac +Nj +Yp +hI +ek +cs +hI +hI +tz +Nj dz EG EG @@ -28767,25 +28768,25 @@ EG EG EG dz -ZD -AB +Tr +AS ki VD VD jY jY -Su -Bp +Oe +lC dz -sL -pj +jV +hj VD VD VD VD jY -Nw -me +Ip +Be dz EG EG @@ -28919,25 +28920,25 @@ EG EG EG dz -ux -AB +lG +AS jY -Ac -qP -qP +Nj +Wb +Wb jY -Su -Ac +Oe +Nj dz -Ac -pj +Nj +hj VD -qP -Ac -qP +Wb +Nj +Wb Xe -Nw -Xf +Ip +JP dz EG EG @@ -29071,25 +29072,25 @@ EG EG EG dz -XW -AB +QQ +AS VD -Ac -qP -qP +Nj +Wb +Wb VD -Su -go +Oe +ID dz -Ac -pj +Nj +hj VD -qP -Ac -qP +Wb +Nj +Wb jY -Nw -Pp +Ip +GD dz EG EG @@ -29223,25 +29224,25 @@ EG EG EG dz -pD -qe +Jg +dj VD -Ac -Dg -Ac +Nj +Bi +Nj VD -HI -Ac +Pt +Nj dz -Ac -uc +Nj +GN Xe -Ac -qP -qP +Nj +Wb +Wb jY -IK -qP +Dd +Wb dz EG EG @@ -29375,25 +29376,25 @@ EG EG EG dz -EX -tF +wZ +GO VD -Ac -qP -qP +Nj +Wb +Wb ew -eL -Ac +eB +Nj dz -Ic -Xs +zA +bS VD -Ac -qP -qP +Nj +Wb +Wb jY -dr -qP +Ew +Wb dz EG EG @@ -29527,25 +29528,25 @@ EG EG EG dz -Ac -tF +Nj +GO VD -qP -qP -qP +Wb +Wb +Wb VD -rp -Ac +Px +Nj dz -mG -Xs +Sk +bS VD -qP -qP -qP +Wb +Wb +Wb jY -Ct -qP +IW +Wb dz EG EG @@ -29679,25 +29680,25 @@ EG EG EG dz -ox -tF +Vm +GO VD VD jY VD jY -iD -Bp +wp +lC dz -Hc -Xs +fd +bS VD VD VD jY jY -dr -Iy +Ew +vU dz EG EG @@ -29831,25 +29832,25 @@ EG EG EG dz -Ac -VW -dn -CR -CR -CR -BK -Mb -Ac +Nj +xo +qA +dL +dL +dL +Pq +nt +Nj dz -Ac -Et -In -tH -tH -tH -tH -iV -Ac +Nj +SC +ge +jA +jA +jA +jA +md +Nj dz EG EG @@ -29983,25 +29984,25 @@ EG EG EG dz -pZ -qP -qP -Ac -qP -Ac -Ac -Ac -Ac +Nf +Wb +Wb +Nj +Wb +Nj +Nj +Nj +Nj dz -qA -Ac -Ac -Ac -qP -qP -Ac -Ac -Ac +WN +Nj +Nj +Nj +Wb +Wb +Nj +Nj +Nj dz EG EG diff --git a/maps/shuttles/dropship_cyclone.dmm b/maps/shuttles/dropship_cyclone.dmm index 9e1c87b58e..0a8607ad53 100644 --- a/maps/shuttles/dropship_cyclone.dmm +++ b/maps/shuttles/dropship_cyclone.dmm @@ -4,12 +4,36 @@ icon_state = "86b" }, /area/shuttle/cyclone) +"aD" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 26; + pixel_x = 10 + }, +/obj/structure/extinguisher_cabinet/lifeboat{ + pixel_y = 27; + pixel_x = -2 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/cyclone) "aP" = ( /obj/structure/shuttle/part/cyclone/transparent{ icon_state = "3" }, /turf/template_noop, /area/shuttle/cyclone) +"aX" = ( +/obj/structure/shuttle/part/cyclone/transparent/nosecone{ + icon_state = "102" + }, +/turf/template_noop, +/area/shuttle/cyclone) +"ba" = ( +/obj/docking_port/mobile/marine_dropship/cyclone, +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/shuttle/cyclone) "bw" = ( /obj/structure/shuttle/part/cyclone/transparent{ icon_state = "90" @@ -23,22 +47,26 @@ }, /turf/template_noop, /area/shuttle/cyclone) -"cm" = ( +"cR" = ( +/turf/closed/shuttle/cyclone/transparent{ + icon_state = "39" + }, +/area/shuttle/cyclone) +"cW" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, +/obj/structure/machinery/light/double{ + dir = 4 + }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/cyclone) -"cy" = ( -/obj/structure/stairs/perspective, -/obj/structure/platform{ - dir = 8 +"dx" = ( +/obj/effect/attach_point/fuel/cyclone{ + dir = 1 }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/shuttle/cyclone) -"cR" = ( /turf/closed/shuttle/cyclone/transparent{ - icon_state = "39" + icon_state = "32" }, /area/shuttle/cyclone) "dN" = ( @@ -46,15 +74,18 @@ icon_state = "42" }, /area/shuttle/cyclone) -"eu" = ( +"ef" = ( /obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/structure/machinery/light/double{ dir = 8 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/cyclone) +"el" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/cyclone) +"eQ" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/cyclone) "eT" = ( /obj/structure/shuttle/part/cyclone/transparent, /turf/template_noop, @@ -77,28 +108,15 @@ /obj/effect/attach_point/electronics/cyclone, /turf/template_noop, /area/shuttle/cyclone) -"fV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = -1 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, -/area/shuttle/cyclone) -"gn" = ( -/obj/docking_port/mobile/marine_dropship/cyclone, -/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +"fF" = ( +/turf/open/shuttle/dropship/light_grey_bottom_right, /area/shuttle/cyclone) -"ha" = ( -/obj/effect/attach_point/fuel/cyclone{ - dir = 1 - }, -/turf/closed/shuttle/cyclone/transparent{ - icon_state = "32" +"gx" = ( +/obj/structure/machinery/camera/autoname/golden_arrow/cyclone{ + dir = 4; + pixel_x = -23 }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/cyclone) "hd" = ( /turf/closed/shuttle/cyclone/transparent{ @@ -123,50 +141,26 @@ }, /turf/template_noop, /area/shuttle/cyclone) -"ia" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full"; - pixel_y = 22 - }, -/obj/structure/machinery/computer/dropship_weapons/cyclone/small{ - pixel_y = 8; - pixel_x = 8 - }, -/obj/structure/bed/chair/vehicle/dropship_cockpit/copilot{ - dir = 1; - pixel_x = 8; - layer = 5 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/cyclone) "iO" = ( /obj/structure/shuttle/part/cyclone/transparent{ icon_state = "8" }, /turf/template_noop, /area/shuttle/cyclone) -"lc" = ( -/obj/structure/machinery/light/double{ +"lm" = ( +/obj/structure/bed/chair/dropship/passenger{ dir = 4 }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/obj/structure/machinery/light/double{ + dir = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/cyclone) "lV" = ( /turf/closed/shuttle/cyclone{ icon_state = "18" }, /area/shuttle/cyclone) -"ml" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 26; - pixel_x = -10 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/cyclone) "mI" = ( /turf/closed/shuttle/cyclone{ icon_state = "67" @@ -178,10 +172,17 @@ }, /turf/template_noop, /area/shuttle/cyclone) -"nj" = ( -/turf/open/shuttle/dropship/light_grey_top_left, +"nQ" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname/golden_arrow/cyclone{ + dir = 8; + pixel_x = 23 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/cyclone) -"nH" = ( +"ob" = ( /obj/structure/stairs/perspective, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/cyclone) @@ -190,16 +191,29 @@ icon_state = "23" }, /area/shuttle/cyclone) -"oX" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 +"oP" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full"; + pixel_y = 22 }, -/obj/structure/machinery/camera/autoname/golden_arrow/cyclone{ - dir = 8; - pixel_x = 23 +/obj/structure/machinery/computer/dropship_weapons/cyclone/small{ + pixel_y = 8; + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle/dropship_cockpit/copilot{ + dir = 1; + pixel_x = 8; + layer = 5 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/cyclone) +"oZ" = ( +/obj/structure/shuttle/part/cyclone/transparent/nosecone{ + icon_state = "100" + }, +/turf/template_noop, +/area/shuttle/cyclone) "pb" = ( /turf/closed/shuttle/cyclone{ icon_state = "62" @@ -214,17 +228,22 @@ }, /turf/template_noop, /area/shuttle/cyclone) +"py" = ( +/turf/open/shuttle/dropship/light_grey_top_left, +/area/shuttle/cyclone) "pz" = ( /obj/structure/shuttle/part/cyclone/transparent{ icon_state = "66" }, /turf/template_noop, /area/shuttle/cyclone) -"qj" = ( -/obj/structure/machinery/light/double{ - dir = 8 +"pJ" = ( +/obj/effect/attach_point/fuel/cyclone{ + dir = 1 + }, +/turf/closed/shuttle/cyclone/transparent{ + icon_state = "28" }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/cyclone) "qs" = ( /turf/closed/shuttle/cyclone{ @@ -241,6 +260,9 @@ icon_state = "48" }, /area/shuttle/cyclone) +"rf" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/shuttle/cyclone) "ro" = ( /obj/structure/shuttle/part/cyclone/transparent{ icon_state = "99a" @@ -262,12 +284,16 @@ icon_state = "37" }, /area/shuttle/cyclone) -"sR" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 +"ta" = ( +/obj/structure/bed/chair/dropship/passenger/folded{ + pixel_y = 8; + buckling_y = 8 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/cyclone) +"tu" = ( +/turf/open/shuttle/dropship/light_grey_top_right, +/area/shuttle/cyclone) "tU" = ( /turf/closed/shuttle/cyclone{ icon_state = "24" @@ -302,6 +328,27 @@ icon_state = "35" }, /area/shuttle/cyclone) +"xD" = ( +/obj/structure/machinery/computer/shuttle/dropship/flight/small{ + pixel_y = 16; + pixel_x = 6 + }, +/obj/structure/phone_base{ + dir = 4; + pixel_x = -19; + pixel_y = 12; + layer = 3.1; + phone_category = "Dropship"; + name = "Cyclone telephone receiver"; + phone_id = "Cyclone" + }, +/obj/structure/bed/chair/vehicle/dropship_cockpit/pilot{ + dir = 1; + pixel_x = 6; + pixel_y = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/cyclone) "xY" = ( /obj/structure/shuttle/part/cyclone/transparent{ icon_state = "85" @@ -309,24 +356,28 @@ /obj/effect/attach_point/weapon/cyclone/left_fore, /turf/template_noop, /area/shuttle/cyclone) -"yA" = ( -/obj/structure/shuttle/part/cyclone/transparent{ - icon_state = "101" - }, -/turf/template_noop, -/area/shuttle/cyclone) -"yP" = ( -/obj/structure/stairs/perspective, -/obj/structure/platform{ - dir = 4 +"yy" = ( +/obj/structure/machinery/door/airlock/hatch/cockpit/two{ + dir = 1 }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/cyclone) "zz" = ( /turf/closed/shuttle/cyclone/transparent{ icon_state = "80" }, /area/shuttle/cyclone) +"zC" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 26; + pixel_x = -10 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/cyclone) "zG" = ( /turf/closed/shuttle/cyclone{ icon_state = "31" @@ -337,27 +388,6 @@ icon_state = "38" }, /area/shuttle/cyclone) -"zL" = ( -/obj/structure/shuttle/part/cyclone/transparent{ - icon_state = "102" - }, -/turf/template_noop, -/area/shuttle/cyclone) -"Ak" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds2{ - id = "aft_door"; - name = "\improper Cyclone cargo door" - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, -/area/shuttle/cyclone) "Ax" = ( /obj/structure/shuttle/part/dropship2/lower_right_wall{ name = "\improper Cyclone" @@ -377,19 +407,8 @@ icon_state = "89a" }, /area/shuttle/cyclone) -"BU" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 26; - pixel_x = 10 - }, -/obj/structure/extinguisher_cabinet/lifeboat{ - pixel_y = 27; - pixel_x = -2 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +"BI" = ( +/turf/open/shuttle/dropship/light_grey_bottom_left, /area/shuttle/cyclone) "Cb" = ( /obj/structure/shuttle/part/cyclone/transparent{ @@ -415,38 +434,22 @@ }, /turf/template_noop, /area/shuttle/cyclone) -"Dl" = ( -/obj/structure/machinery/camera/autoname/golden_arrow/cyclone{ - dir = 4; - pixel_x = -23 +"Ea" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 2 }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = -1 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/shuttle/cyclone) "EP" = ( /turf/closed/shuttle/cyclone{ icon_state = "75" }, /area/shuttle/cyclone) -"Fz" = ( -/obj/effect/attach_point/fuel/cyclone{ - dir = 1 - }, -/turf/closed/shuttle/cyclone/transparent{ - icon_state = "28" - }, -/area/shuttle/cyclone) -"FD" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/structure/machinery/light/double{ - dir = 4 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/cyclone) -"FV" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, -/area/shuttle/cyclone) "GE" = ( /turf/closed/shuttle/cyclone{ icon_state = "43" @@ -462,11 +465,10 @@ icon_state = "69" }, /area/shuttle/cyclone) -"Iz" = ( -/obj/structure/machinery/door/airlock/hatch/cockpit/two{ - dir = 1 +"HS" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, -/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/cyclone) "IP" = ( @@ -487,16 +489,6 @@ icon_state = "81" }, /area/shuttle/cyclone) -"KQ" = ( -/obj/structure/bed/chair/dropship/passenger/folded{ - pixel_y = 8; - buckling_y = 8 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/cyclone) -"KU" = ( -/turf/open/shuttle/dropship/light_grey_bottom_right, -/area/shuttle/cyclone) "MU" = ( /obj/structure/shuttle/part/cyclone/transparent{ icon_state = "84" @@ -504,29 +496,27 @@ /obj/effect/attach_point/electronics/cyclone, /turf/template_noop, /area/shuttle/cyclone) -"Ob" = ( -/turf/open/shuttle/dropship/light_grey_top_right, +"NS" = ( +/obj/structure/stairs/perspective, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/cyclone) -"Pg" = ( -/obj/structure/machinery/computer/shuttle/dropship/flight/small{ - pixel_y = 16; - pixel_x = 6 +"Oi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = -1 }, -/obj/structure/phone_base{ - dir = 4; - pixel_x = -19; - pixel_y = 12; - layer = 3.1; - phone_category = "Dropship"; - name = "Cyclone telephone receiver"; - phone_id = "Cyclone" +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 2 }, -/obj/structure/bed/chair/vehicle/dropship_cockpit/pilot{ - dir = 1; - pixel_x = 6; - pixel_y = 8 +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds2{ + id = "aft_door"; + name = "\improper Cyclone cargo door" }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/shuttle/cyclone) "QN" = ( /obj/structure/shuttle/part/cyclone/transparent{ @@ -535,30 +525,32 @@ /obj/effect/attach_point/weapon/cyclone/right_wing, /turf/template_noop, /area/shuttle/cyclone) -"RR" = ( -/obj/structure/shuttle/part/cyclone/transparent{ - icon_state = "100" +"QS" = ( +/obj/structure/machinery/light/double{ + dir = 8 }, -/turf/template_noop, -/area/shuttle/cyclone) -"Sk" = ( /turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/cyclone) +"Rj" = ( +/obj/structure/shuttle/part/cyclone/gunpod_prop, +/turf/template_noop, +/area/shuttle/cyclone) "Sl" = ( /turf/closed/shuttle/cyclone{ icon_state = "77" }, /area/shuttle/cyclone) -"Ty" = ( -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/cyclone) "Uo" = ( /turf/closed/shuttle/cyclone{ icon_state = "64" }, /area/shuttle/cyclone) -"Vu" = ( -/turf/open/shuttle/dropship/light_grey_bottom_left, +"VV" = ( +/obj/structure/stairs/perspective, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/cyclone) "Wr" = ( /turf/closed/shuttle/cyclone/transparent{ @@ -575,6 +567,12 @@ icon_state = "22" }, /area/shuttle/cyclone) +"XH" = ( +/obj/structure/machinery/light/double{ + dir = 4 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/cyclone) "XU" = ( /turf/closed/shuttle/cyclone/transparent{ icon_state = "97a" @@ -614,7 +612,7 @@ IP wk fo vH -Fz +pJ Wv Da wk @@ -644,10 +642,10 @@ wk wk xY Sl -BU -sR -eu -sR +aD +HS +lm +HS qs YL fr @@ -657,56 +655,56 @@ Cf aP "} (4,1,1) = {" -RR +oZ cj ag vt ZU -nj -Sk -Sk -Vu -cy -Sk -Dl -qj -Ak +py +eQ +eQ +BI +VV +eQ +gx +QS +Oi wk wk "} (5,1,1) = {" -yA +Rj XU -Pg -ia -Iz -FV -KQ -KQ -gn -nH -Ty -Ty -Ty -fV +xD +oP +yy +rf +ta +ta +ba +ob +el +el +el +Ea wk wk "} (6,1,1) = {" -zL +aX ro XY Bt zz -Ob -Sk -Sk -KU -yP -Sk -Sk -lc -fV +tu +eQ +eQ +fF +NS +eQ +eQ +XH +Ea wk wk "} @@ -716,10 +714,10 @@ wk wk bw Kv -ml -oX -FD -cm +zC +nQ +cW +ef qX sA zG @@ -740,7 +738,7 @@ Uo GE Ax zH -ha +dx Wr Da wk diff --git a/maps/shuttles/dropship_midway.dmm b/maps/shuttles/dropship_midway.dmm index 2468a6f3f3..6b41a6f9c0 100644 --- a/maps/shuttles/dropship_midway.dmm +++ b/maps/shuttles/dropship_midway.dmm @@ -4,24 +4,32 @@ icon_state = "34" }, /area/shuttle/midway) +"aP" = ( +/obj/structure/stairs/perspective, +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/midway) "bm" = ( /obj/structure/shuttle/part/midway/transparent{ icon_state = "21" }, /turf/template_noop, /area/shuttle/midway) -"bs" = ( -/turf/open/shuttle/dropship/light_grey_top_left, -/area/shuttle/midway) -"dr" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/structure/machinery/light/double{ - dir = 8 +"cK" = ( +/obj/effect/attach_point/crew_weapon/midway{ + attach_id = 7 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/midway) +"dd" = ( +/turf/open/shuttle/dropship/light_grey_bottom_right, +/area/shuttle/midway) "dB" = ( /obj/structure/shuttle/part/midway/transparent{ icon_state = "7" @@ -44,11 +52,22 @@ }, /turf/template_noop, /area/shuttle/midway) -"go" = ( -/obj/structure/shuttle/part/midway/transparent{ - icon_state = "102" +"eS" = ( +/obj/effect/attach_point/fuel/midway{ + pixel_x = -32; + attach_id = 11; + dir = 1 + }, +/turf/closed/shuttle/midway/transparent{ + icon_state = "33" }, -/turf/template_noop, +/area/shuttle/midway) +"fF" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/midway) "gw" = ( /obj/structure/shuttle/part/midway/transparent{ @@ -82,44 +101,14 @@ icon_state = "27" }, /area/shuttle/midway) -"im" = ( -/turf/open/shuttle/dropship/light_grey_bottom_left, -/area/shuttle/midway) -"iv" = ( +"kL" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 8 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/midway) -"je" = ( -/obj/structure/machinery/camera/autoname/golden_arrow/midway{ - dir = 4; - pixel_x = -23 - }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/shuttle/midway) -"jy" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 26; - pixel_x = 10 - }, -/obj/structure/extinguisher_cabinet/lifeboat{ - pixel_y = 27; - pixel_x = -2 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/midway) -"jW" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/shuttle/midway) -"kC" = ( -/obj/structure/platform{ - dir = 1 + pixel_x = -10 }, -/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/midway) "ls" = ( @@ -138,6 +127,12 @@ }, /turf/template_noop, /area/shuttle/midway) +"mA" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/midway) "mE" = ( /obj/structure/shuttle/part/midway/transparent, /turf/template_noop, @@ -148,26 +143,31 @@ }, /turf/template_noop, /area/shuttle/midway) -"mL" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 8 +"od" = ( +/turf/closed/shuttle/midway/transparent{ + icon_state = "89b" }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/midway) -"mR" = ( +"oy" = ( /obj/structure/bed/chair/dropship/passenger/folded{ pixel_y = 8; buckling_y = 8 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/midway) -"od" = ( -/turf/closed/shuttle/midway/transparent{ - icon_state = "89b" +"oB" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/midway) +"oG" = ( +/obj/structure/shuttle/part/midway/gunpod_prop, +/turf/template_noop, /area/shuttle/midway) "ro" = ( /turf/closed/shuttle/midway/transparent{ @@ -194,15 +194,6 @@ icon_state = "31" }, /area/shuttle/midway) -"tf" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 26; - pixel_x = -10 - }, -/turf/closed/shuttle/midway/transparent{ - icon_state = "97a" - }, -/area/shuttle/midway) "ti" = ( /turf/closed/shuttle/midway/transparent{ icon_state = "86b" @@ -214,19 +205,62 @@ }, /turf/template_noop, /area/shuttle/midway) +"tT" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/obj/structure/machinery/light/double{ + dir = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/midway) "ul" = ( /obj/structure/shuttle/part/midway/transparent{ icon_state = "40" }, /turf/template_noop, /area/shuttle/midway) +"us" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds4{ + id = "aft_door" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/shuttle/midway) +"ut" = ( +/obj/structure/shuttle/part/midway/transparent/nosecone{ + icon_state = "102" + }, +/turf/template_noop, +/area/shuttle/midway) "ux" = ( /turf/closed/shuttle/midway/transparent{ icon_state = "89a" }, /area/shuttle/midway) -"vJ" = ( -/turf/open/shuttle/dropship/light_grey_bottom_right, +"vD" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full"; + pixel_y = 22 + }, +/obj/structure/machinery/computer/dropship_weapons/midway/small{ + pixel_y = 8; + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle/dropship_cockpit/copilot{ + dir = 1; + pixel_x = 8; + layer = 5 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/midway) "vN" = ( /turf/closed/shuttle/midway/transparent{ @@ -243,16 +277,6 @@ icon_state = "62" }, /area/shuttle/midway) -"xy" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 26; - pixel_x = -10 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/midway) "ym" = ( /turf/closed/shuttle/midway{ icon_state = "69" @@ -263,6 +287,12 @@ icon_state = "54" }, /area/shuttle/midway) +"yH" = ( +/obj/structure/shuttle/part/midway/transparent/nosecone{ + icon_state = "100" + }, +/turf/template_noop, +/area/shuttle/midway) "yN" = ( /obj/structure/shuttle/part/midway/transparent{ icon_state = "4" @@ -281,6 +311,17 @@ icon_state = "23" }, /area/shuttle/midway) +"zG" = ( +/obj/structure/machinery/light/double{ + dir = 8 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/midway) +"Aa" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/machinery/door/airlock/hatch/cockpit/four, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/midway) "Aw" = ( /obj/structure/shuttle/part/midway/transparent{ icon_state = "91" @@ -288,6 +329,9 @@ /obj/effect/attach_point/electronics/midway, /turf/template_noop, /area/shuttle/midway) +"Bk" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/shuttle/midway) "Bn" = ( /turf/closed/shuttle/midway{ icon_state = "30" @@ -309,26 +353,19 @@ }, /turf/template_noop, /area/shuttle/midway) -"Cc" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +"Ci" = ( +/turf/open/shuttle/dropship/light_grey_top_left, /area/shuttle/midway) -"Cm" = ( -/obj/effect/attach_point/fuel/midway{ - attach_id = 10; - dir = 1 - }, -/turf/closed/shuttle/midway/transparent{ - icon_state = "28" +"CX" = ( +/obj/structure/stairs/perspective, +/obj/structure/platform{ + dir = 4; + layer = 2.7 }, -/area/shuttle/midway) -"Cr" = ( -/obj/structure/shuttle/part/midway/transparent{ - icon_state = "100" +/obj/structure/platform{ + dir = 8 }, -/turf/template_noop, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/midway) "Db" = ( /turf/closed/shuttle/midway/transparent{ @@ -341,52 +378,22 @@ }, /turf/template_noop, /area/shuttle/midway) -"Ds" = ( -/obj/structure/stairs/perspective, -/obj/structure/platform{ +"DO" = ( +/obj/structure/machinery/light{ dir = 4; - layer = 2.7 + pixel_x = 14 }, -/obj/structure/platform{ - dir = 8 +/obj/structure/machinery/light/double{ + dir = 4 }, /turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/midway) -"DH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = -1 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, -/area/shuttle/midway) "Ed" = ( /turf/closed/shuttle/midway{ icon_state = "25" }, /area/shuttle/midway) -"EN" = ( -/obj/structure/bed/chair/vehicle/dropship_cockpit/pilot{ - dir = 1; - pixel_x = 6; - pixel_y = 8 - }, -/obj/structure/machinery/computer/shuttle/dropship/flight/small{ - pixel_y = 16; - pixel_x = 6 - }, -/obj/structure/phone_base{ - dir = 4; - pixel_x = -19; - pixel_y = 12; - layer = 3.1; - phone_category = "Dropship"; - name = "Midway telephone receiver"; - phone_id = "Midway" - }, +"Fd" = ( /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/midway) "Fu" = ( @@ -401,23 +408,17 @@ }, /turf/template_noop, /area/shuttle/midway) -"Gh" = ( -/turf/open/shuttle/dropship/light_grey_top_right, -/area/shuttle/midway) -"Go" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full"; - pixel_y = 22 +"Gk" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, -/obj/structure/machinery/computer/dropship_weapons/midway/small{ - pixel_y = 8; - pixel_x = 8 +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 26; + pixel_x = 10 }, -/obj/structure/bed/chair/vehicle/dropship_cockpit/copilot{ - dir = 1; - pixel_x = 8; - layer = 5 +/obj/structure/extinguisher_cabinet/lifeboat{ + pixel_y = 27; + pixel_x = -2 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/midway) @@ -432,31 +433,18 @@ }, /turf/template_noop, /area/shuttle/midway) -"HY" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds4{ - id = "aft_door" - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, -/area/shuttle/midway) -"Id" = ( -/obj/effect/attach_point/crew_weapon/midway{ - attach_id = 7 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/midway) "Ji" = ( /turf/closed/shuttle/midway{ icon_state = "64" }, /area/shuttle/midway) +"Jn" = ( +/obj/structure/machinery/camera/autoname/golden_arrow/midway{ + dir = 4; + pixel_x = -23 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/midway) "Jq" = ( /turf/closed/shuttle/midway{ icon_state = "72" @@ -468,30 +456,21 @@ }, /turf/template_noop, /area/shuttle/midway) -"Kv" = ( -/obj/structure/machinery/light{ - dir = 4; - pixel_x = 14 - }, -/obj/structure/machinery/light/double{ - dir = 4 - }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/shuttle/midway) "Kw" = ( /turf/template_noop, /area/template_noop) +"Ln" = ( +/obj/effect/attach_point/crew_weapon/midway{ + attach_id = 7 + }, +/obj/docking_port/mobile/marine_dropship/midway, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/midway) "Lr" = ( /turf/closed/shuttle/midway{ icon_state = "48" }, /area/shuttle/midway) -"LY" = ( -/obj/structure/shuttle/part/midway/transparent{ - icon_state = "101" - }, -/turf/template_noop, -/area/shuttle/midway) "LZ" = ( /obj/structure/shuttle/part/midway/transparent{ icon_state = "84" @@ -506,28 +485,29 @@ /obj/effect/attach_point/weapon/midway/left_fore, /turf/template_noop, /area/shuttle/midway) -"Mz" = ( -/obj/structure/stairs/perspective, -/obj/structure/platform{ - dir = 8; - layer = 2.7 - }, -/obj/structure/platform{ +"NK" = ( +/obj/structure/platform_decoration{ dir = 4 }, +/obj/structure/platform_decoration{ + dir = 8 + }, /turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/midway) -"ME" = ( -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/midway) "Pc" = ( /turf/closed/shuttle/midway/transparent{ icon_state = "78" }, /area/shuttle/midway) -"PP" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/machinery/door/airlock/hatch/cockpit/four, +"PG" = ( +/turf/closed/shuttle/midway/transparent{ + icon_state = "97a" + }, +/area/shuttle/midway) +"PW" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/midway) "Qk" = ( @@ -539,34 +519,26 @@ }, /turf/template_noop, /area/shuttle/midway) -"QK" = ( -/obj/structure/machinery/light/double{ - dir = 8 - }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/shuttle/midway) -"Rm" = ( -/obj/effect/attach_point/crew_weapon/midway{ - attach_id = 7 - }, -/obj/docking_port/mobile/marine_dropship/midway, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/midway) "SZ" = ( /obj/structure/shuttle/part/midway/transparent{ icon_state = "5" }, /turf/template_noop, /area/shuttle/midway) -"Tl" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 +"Tf" = ( +/obj/effect/attach_point/fuel/midway{ + attach_id = 10; + dir = 1 }, -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +/turf/closed/shuttle/midway/transparent{ + icon_state = "28" }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/midway) +"TE" = ( +/turf/open/shuttle/dropship/light_grey_bottom_left, +/area/shuttle/midway) +"Uj" = ( +/turf/open/shuttle/dropship/light_grey_top_right, /area/shuttle/midway) "UI" = ( /obj/structure/shuttle/part/midway/transparent{ @@ -575,6 +547,27 @@ /obj/effect/attach_point/weapon/midway/right_fore, /turf/template_noop, /area/shuttle/midway) +"Vi" = ( +/obj/structure/bed/chair/vehicle/dropship_cockpit/pilot{ + dir = 1; + pixel_x = 6; + pixel_y = 8 + }, +/obj/structure/machinery/computer/shuttle/dropship/flight/small{ + pixel_y = 16; + pixel_x = 6 + }, +/obj/structure/phone_base{ + dir = 4; + pixel_x = -19; + pixel_y = 12; + layer = 3.1; + phone_category = "Dropship"; + name = "Midway telephone receiver"; + phone_id = "Midway" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/midway) "Vu" = ( /turf/closed/shuttle/midway{ icon_state = "67" @@ -585,18 +578,19 @@ icon_state = "73" }, /area/shuttle/midway) -"WN" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, -/area/shuttle/midway) -"XH" = ( -/obj/effect/attach_point/fuel/midway{ - pixel_x = -32; - attach_id = 11; - dir = 1 +"WF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 2 }, -/turf/closed/shuttle/midway/transparent{ - icon_state = "33" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = -1 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/shuttle/midway) +"XS" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/midway) "Yr" = ( /turf/closed/shuttle/midway{ @@ -632,7 +626,7 @@ yO Kw ul af -Cm +Tf dD BU Kw @@ -662,10 +656,10 @@ Kw Kw Mw Yr -jy -Cc -dr -Cc +Gk +mA +tT +mA BI dE Bn @@ -675,56 +669,56 @@ dB Hz "} (4,1,1) = {" -Cr +yH hL ti vN Pc -bs -jW -im -Ds -mL -jW -je -QK -HY +Ci +XS +TE +CX +NK +XS +Jn +zG +us Kw Kw "} (5,1,1) = {" -LY -tf -EN -Go -PP -WN -mR -WN -Rm -kC -ME -Id -ME -DH +oG +PG +Vi +vD +Aa +Bk +oy +Bk +Ln +fF +Fd +cK +Fd +WF Kw Kw "} (6,1,1) = {" -go +ut Gf od ux ro -Gh -jW -vJ -Mz -mL -jW -jW -Kv -DH +Uj +XS +dd +aP +NK +XS +XS +DO +WF Kw Kw "} @@ -734,10 +728,10 @@ Kw Kw UI rq -xy -iv -Tl -iv +kL +PW +oB +PW Lr yB sl @@ -776,7 +770,7 @@ hO Kw mG ZZ -XH +eS if bm Kw diff --git a/maps/shuttles/dropship_tornado.dmm b/maps/shuttles/dropship_tornado.dmm index e239ea1fae..e648ef4cfb 100644 --- a/maps/shuttles/dropship_tornado.dmm +++ b/maps/shuttles/dropship_tornado.dmm @@ -5,11 +5,6 @@ }, /turf/template_noop, /area/shuttle/tornado) -"av" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "75" - }, -/area/shuttle/tornado) "aw" = ( /obj/structure/shuttle/part/tornado{ icon_state = "5" @@ -22,24 +17,19 @@ }, /turf/template_noop, /area/shuttle/tornado) +"aO" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +/area/shuttle/tornado) "bf" = ( /obj/structure/shuttle/part/typhoon/transparent{ icon_state = "3" }, /turf/template_noop, /area/shuttle/tornado) -"bm" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "64" - }, -/area/shuttle/tornado) -"bp" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 26; - pixel_x = -10 +"bE" = ( +/obj/structure/bed/chair/dropship/passenger/folded{ + pixel_y = 8; + buckling_y = 8 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) @@ -49,13 +39,29 @@ }, /turf/template_noop, /area/shuttle/tornado) +"cg" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "30" + }, +/area/shuttle/tornado) "ck" = ( /obj/structure/shuttle/part/tornado/transparent{ icon_state = "35" }, /turf/template_noop, /area/shuttle/tornado) -"cX" = ( +"cx" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"cP" = ( +/obj/structure/shuttle/part/tornado/gunpod_prop, +/turf/template_noop, +/area/shuttle/tornado) +"cW" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full"; can_block_movement = 0 @@ -65,23 +71,42 @@ }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"db" = ( -/obj/structure/bed/chair/dropship/passenger/folded{ - pixel_y = 8; - buckling_y = 8 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tornado) "dm" = ( /obj/structure/shuttle/part/tornado/transparent{ icon_state = "38" }, /turf/template_noop, /area/shuttle/tornado) -"dW" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "25" +"du" = ( +/obj/structure/phone_base{ + dir = 4; + pixel_x = -19; + pixel_y = 12; + layer = 3.1; + phone_category = "Dropship"; + name = "Tornado telephone receiver"; + phone_id = "Tornado" }, +/obj/structure/machinery/computer/shuttle/dropship/flight/small{ + pixel_y = 16; + pixel_x = 6 + }, +/obj/structure/bed/chair/vehicle/dropship_cockpit/pilot{ + dir = 1; + pixel_x = 6; + pixel_y = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"dR" = ( +/obj/structure/shuttle/part/tornado/transparent{ + icon_state = "28" + }, +/obj/effect/attach_point/fuel/tornado{ + layer = 3.1; + dir = 1 + }, +/turf/template_noop, /area/shuttle/tornado) "eg" = ( /obj/structure/shuttle/part/tornado/transparent{ @@ -107,37 +132,10 @@ }, /turf/template_noop, /area/shuttle/tornado) -"fj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds3{ - id = "aft_door"; - name = "\improper Tornado cargo door" - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, -/area/shuttle/tornado) -"fr" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full"; - pixel_y = 22 - }, -/obj/structure/bed/chair/vehicle/dropship_cockpit/copilot{ - dir = 1; - layer = 5; - pixel_x = 8 - }, -/obj/structure/machinery/computer/dropship_weapons/tornado/small{ - pixel_y = 8; - pixel_x = 8 +"gB" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "18" }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) "gJ" = ( /obj/structure/shuttle/part/tornado{ @@ -155,20 +153,23 @@ }, /turf/template_noop, /area/shuttle/tornado) -"hB" = ( -/obj/structure/platform_decoration{ - dir = 4 +"iJ" = ( +/turf/open/shuttle/dropship/light_grey_bottom_right, +/area/shuttle/tornado) +"jH" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "89a"; + opacity = 0 }, +/area/shuttle/tornado) +"jK" = ( +/obj/effect/attach_point/crew_weapon/tornado, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"hE" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "101" +"kf" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "48" }, -/turf/template_noop, -/area/shuttle/tornado) -"jP" = ( -/turf/open/shuttle/dropship/light_grey_top_right, /area/shuttle/tornado) "kI" = ( /obj/structure/shuttle/part/tornado/transparent{ @@ -178,9 +179,15 @@ }, /turf/template_noop, /area/shuttle/tornado) -"lb" = ( +"lA" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"lE" = ( /turf/closed/shuttle/dropship3/tornado{ - icon_state = "77" + icon_state = "73" }, /area/shuttle/tornado) "lM" = ( @@ -189,25 +196,29 @@ }, /turf/template_noop, /area/shuttle/tornado) -"mb" = ( -/obj/effect/attach_point/crew_weapon/tornado, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tornado) -"mt" = ( -/obj/docking_port/mobile/marine_dropship/tornado, -/obj/structure/bed/chair/dropship/passenger/folded{ - pixel_y = 8; - buckling_y = 8 +"mp" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"ni" = ( +"mN" = ( /turf/closed/shuttle/dropship3/tornado{ - icon_state = "89a"; + icon_state = "86a"; opacity = 0 }, /area/shuttle/tornado) -"oB" = ( +"mU" = ( +/obj/structure/shuttle/part/tornado/transparent{ + icon_state = "32" + }, +/obj/effect/attach_point/fuel/tornado{ + layer = 3.1; + dir = 1 + }, +/turf/template_noop, +/area/shuttle/tornado) +"qq" = ( /obj/structure/bed/chair/dropship/passenger{ dir = 4 }, @@ -221,76 +232,95 @@ }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"pv" = ( -/turf/open/shuttle/dropship/light_grey_bottom_left, -/area/shuttle/tornado) "qF" = ( /obj/structure/shuttle/part/tornado/transparent{ icon_state = "34" }, /turf/template_noop, /area/shuttle/tornado) -"rp" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "89b"; - opacity = 0 - }, -/area/shuttle/tornado) -"sx" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "100" +"rA" = ( +/obj/structure/shuttle/part/tornado/transparent/nosecone{ + icon_state = "102" }, /turf/template_noop, /area/shuttle/tornado) -"sM" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "62" - }, -/area/shuttle/tornado) -"uk" = ( +"tv" = ( /turf/closed/shuttle/dropship3/tornado{ icon_state = "47" }, /area/shuttle/tornado) -"uG" = ( +"tD" = ( /obj/structure/bed/chair/dropship/passenger{ - dir = 8 + dir = 4 + }, +/obj/structure/machinery/camera/autoname/golden_arrow/tornado{ + dir = 4; + pixel_x = -24 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"uL" = ( -/obj/structure/phone_base{ - dir = 4; - pixel_x = -19; - pixel_y = 12; - layer = 3.1; - phone_category = "Dropship"; - name = "Tornado telephone receiver"; - phone_id = "Tornado" +"ui" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 2 }, -/obj/structure/machinery/computer/shuttle/dropship/flight/small{ - pixel_y = 16; - pixel_x = 6 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = -1 }, -/obj/structure/bed/chair/vehicle/dropship_cockpit/pilot{ - dir = 1; - pixel_x = 6; - pixel_y = 8 +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/shuttle/tornado) +"uE" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) +"uI" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "89b"; + opacity = 0 + }, +/area/shuttle/tornado) +"vc" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "97a"; + opacity = 0 + }, +/area/shuttle/tornado) +"vh" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "72" + }, +/area/shuttle/tornado) "vk" = ( /obj/structure/shuttle/part/tornado/transparent{ icon_state = "74" }, /turf/template_noop, /area/shuttle/tornado) +"vm" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "64" + }, +/area/shuttle/tornado) "vz" = ( /obj/structure/shuttle/part/tornado/transparent{ icon_state = "95a" }, /turf/template_noop, /area/shuttle/tornado) +"vQ" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 26; + pixel_x = -10 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) "vU" = ( /obj/structure/shuttle/part/tornado/transparent{ icon_state = "16" @@ -303,42 +333,20 @@ }, /turf/template_noop, /area/shuttle/tornado) -"xj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = -1 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, -/area/shuttle/tornado) -"xr" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tornado) -"xW" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full"; - can_block_movement = 0 +"xo" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "77" }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/tornado) -"yQ" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "76" +"yF" = ( +/obj/structure/machinery/camera/autoname/golden_arrow/tornado{ + pixel_y = 32 }, +/turf/open/shuttle/dropship/light_grey_top_left, /area/shuttle/tornado) -"yZ" = ( +"zn" = ( /turf/closed/shuttle/dropship3/tornado{ - icon_state = "72" + icon_state = "104" }, /area/shuttle/tornado) "zp" = ( @@ -347,9 +355,10 @@ }, /turf/template_noop, /area/shuttle/tornado) -"zQ" = ( -/obj/effect/attach_point/crew_weapon/tornado, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +"AL" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "75" + }, /area/shuttle/tornado) "Bf" = ( /obj/structure/shuttle/part/tornado{ @@ -357,8 +366,17 @@ }, /turf/template_noop, /area/shuttle/tornado) -"Bx" = ( -/turf/open/shuttle/dropship/light_grey_bottom_right, +"BF" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "76" + }, +/area/shuttle/tornado) +"BH" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/machinery/door/airlock/hatch/cockpit/three{ + dir = 1 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) "BK" = ( /obj/structure/shuttle/part/tornado/transparent{ @@ -371,96 +389,102 @@ }, /turf/template_noop, /area/shuttle/tornado) -"DX" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "28" +"FE" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, -/obj/effect/attach_point/fuel/tornado{ - layer = 3.1; - dir = 1 +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, -/turf/template_noop, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"EQ" = ( +"FI" = ( /turf/closed/shuttle/dropship3/tornado{ - icon_state = "103" + icon_state = "25" }, /area/shuttle/tornado) -"Fv" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "48" - }, +"FY" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/tornado) -"FD" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "24" +"Hy" = ( +/obj/structure/shuttle/part/tornado/transparent/nosecone{ + icon_state = "100" }, +/turf/template_noop, /area/shuttle/tornado) -"FW" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/obj/structure/machinery/camera/autoname/golden_arrow/tornado{ - dir = 4; - pixel_x = -24 +"Iy" = ( +/obj/docking_port/mobile/marine_dropship/tornado, +/obj/structure/bed/chair/dropship/passenger/folded{ + pixel_y = 8; + buckling_y = 8 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"Gl" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "31" - }, -/area/shuttle/tornado) -"HH" = ( +"IU" = ( /obj/structure/stairs/perspective{ + dir = 1; icon_state = "p_stair_full"; - can_block_movement = 0 + pixel_y = 22 }, -/obj/structure/platform{ - dir = 4 +/obj/structure/bed/chair/vehicle/dropship_cockpit/copilot{ + dir = 1; + layer = 5; + pixel_x = 8 + }, +/obj/structure/machinery/computer/dropship_weapons/tornado/small{ + pixel_y = 8; + pixel_x = 8 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"HN" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 +"Jt" = ( +/obj/structure/shuttle/part/typhoon/transparent{ + icon_state = "9" }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/turf/template_noop, /area/shuttle/tornado) -"IN" = ( +"JI" = ( /obj/structure/machinery/light/double{ - dir = 8; + dir = 4; pixel_y = -5 }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"IZ" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "32" +"KY" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "24" }, -/obj/effect/attach_point/fuel/tornado{ - layer = 3.1; - dir = 1 +/area/shuttle/tornado) +"Lu" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full"; + can_block_movement = 0 }, -/turf/template_noop, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/tornado) -"Jt" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "9" +"LA" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "62" }, -/turf/template_noop, /area/shuttle/tornado) -"KB" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +"LI" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"Mq" = ( +"LQ" = ( /turf/closed/shuttle/dropship3/tornado{ - icon_state = "86b"; - opacity = 0 + icon_state = "69" + }, +/area/shuttle/tornado) +"Nc" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "67" }, /area/shuttle/tornado) "Nd" = ( @@ -471,15 +495,10 @@ }, /turf/template_noop, /area/shuttle/tornado) -"NY" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "69" - }, -/area/shuttle/tornado) "Om" = ( /turf/template_noop, /area/space) -"Pb" = ( +"OX" = ( /obj/structure/platform_decoration{ dir = 8 }, @@ -489,11 +508,13 @@ }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"Pi" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "102" +"Po" = ( +/turf/open/shuttle/dropship/light_grey_bottom_left, +/area/shuttle/tornado) +"Pw" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "19" }, -/turf/template_noop, /area/shuttle/tornado) "Py" = ( /obj/structure/shuttle/part/tornado/transparent{ @@ -513,11 +534,8 @@ }, /turf/template_noop, /area/shuttle/tornado) -"Qv" = ( -/obj/structure/machinery/camera/autoname/golden_arrow/tornado{ - pixel_y = 32 - }, -/turf/open/shuttle/dropship/light_grey_top_left, +"Qi" = ( +/turf/open/shuttle/dropship/light_grey_top_right, /area/shuttle/tornado) "QR" = ( /obj/structure/shuttle/part/tornado/transparent{ @@ -536,64 +554,49 @@ }, /turf/template_noop, /area/shuttle/tornado) -"Sa" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "86a"; - opacity = 0 - }, -/area/shuttle/tornado) -"SX" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/machinery/door/airlock/hatch/cockpit/three{ - dir = 1 - }, +"Rm" = ( /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"Tz" = ( +"RK" = ( /turf/closed/shuttle/dropship3/tornado{ - icon_state = "73" + icon_state = "103" }, /area/shuttle/tornado) -"TF" = ( -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tornado) -"TM" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/shuttle/tornado) -"TN" = ( -/obj/structure/shuttle/part/tornado/transparent{ - icon_state = "22" +"Sd" = ( +/turf/closed/shuttle/dropship3/tornado{ + icon_state = "86b"; + opacity = 0 }, -/turf/template_noop, /area/shuttle/tornado) -"UF" = ( +"Sf" = ( /turf/closed/shuttle/dropship3/tornado{ - icon_state = "104" + icon_state = "83" }, /area/shuttle/tornado) -"Vb" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +"SM" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full"; + can_block_movement = 0 }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 +/obj/structure/platform{ + dir = 4 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"Vj" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, -/area/shuttle/tornado) -"Ws" = ( +"Ti" = ( /turf/closed/shuttle/dropship3/tornado{ - icon_state = "97a"; - opacity = 0 + icon_state = "31" }, /area/shuttle/tornado) -"Wt" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "18" +"TN" = ( +/obj/structure/shuttle/part/tornado/transparent{ + icon_state = "22" }, +/turf/template_noop, +/area/shuttle/tornado) +"UT" = ( +/obj/effect/attach_point/crew_weapon/tornado, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/tornado) "Wv" = ( /obj/structure/shuttle/part/tornado/transparent{ @@ -607,25 +610,20 @@ }, /turf/template_noop, /area/shuttle/tornado) -"XL" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "83" - }, -/area/shuttle/tornado) -"Yg" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "30" +"Ys" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = -1 }, -/area/shuttle/tornado) -"Ym" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "19" +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 2 }, -/area/shuttle/tornado) -"Zi" = ( -/turf/closed/shuttle/dropship3/tornado{ - icon_state = "67" +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds3{ + id = "aft_door"; + name = "\improper Tornado cargo door" }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/shuttle/tornado) (1,1,1) = {" @@ -639,7 +637,7 @@ Om Om kI qF -DX +dR TN et Om @@ -673,14 +671,14 @@ Om Om Om kI -av -yZ -Zi -Zi -sM -Wt -Yg -FD +AL +vh +Nc +Nc +LA +gB +cg +KY Jt Nd Wv @@ -693,79 +691,79 @@ Om Om Om Nd -yQ -oB -xr -HN -FW -HN -xr -HN -uk -Wt -Yg -FD -EQ +BF +qq +FE +LI +tD +LI +FE +LI +tv +gB +cg +KY +RK bf "} (5,1,1) = {" -sx +Hy vz -Mq -Sa -lb -Qv -TM -TM -TM -TM -TM -pv -cX -hB -IN -TF -fj +Sd +mN +xo +yF +FY +FY +FY +FY +FY +Po +cW +lA +uE +Rm +Ys Om "} (6,1,1) = {" -hE -Ws -uL -fr -SX -Vj -mb -db -mt -db -mb -Vj -xW -TM -zQ -TM -xj +cP +vc +du +IU +BH +aO +jK +bE +Iy +bE +jK +aO +Lu +FY +UT +FY +ui Om "} (7,1,1) = {" -Pi +rA Rk -rp -ni -lb -jP -TM -TM -TM -TM -TM -Bx -HH -Pb -KB -TF -xj +uI +jH +xo +Qi +FY +FY +FY +FY +FY +iJ +SM +OX +cx +Rm +ui Om "} (8,1,1) = {" @@ -773,19 +771,19 @@ Om Om Om kI -yQ -bp -Vb -uG -uG -uG -Vb -uG -Fv -Ym -Gl -dW -UF +BF +vQ +JI +mp +mp +mp +JI +mp +kf +Pw +Ti +FI +zn eq "} (9,1,1) = {" @@ -793,14 +791,14 @@ Om Om Om Nd -XL -Tz -NY -NY -bm -Ym -Gl -dW +Sf +lE +LQ +LQ +vm +Pw +Ti +FI lM kI Qe @@ -819,7 +817,7 @@ Qf Qf QR dm -IZ +mU zp vU Nd diff --git a/maps/shuttles/dropship_tripoli.dmm b/maps/shuttles/dropship_tripoli.dmm index fccc967d80..a4811da57d 100644 --- a/maps/shuttles/dropship_tripoli.dmm +++ b/maps/shuttles/dropship_tripoli.dmm @@ -1,54 +1,66 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aP" = ( -/obj/structure/phone_base{ - dir = 4; - pixel_x = -19; - pixel_y = 12; - layer = 3.1; - phone_category = "Dropship"; - name = "Tripoli telephone receiver"; - phone_id = "Tripoli" - }, -/obj/structure/bed/chair/vehicle/dropship_cockpit/pilot{ - dir = 1; - pixel_x = 6; - pixel_y = 8 +"aB" = ( +/turf/open/shuttle/dropship/light_grey_bottom_right, +/area/shuttle/tripoli) +"aH" = ( +/obj/effect/attach_point/crew_weapon/midway, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tripoli) +"bG" = ( +/obj/effect/attach_point/fuel/tripoli{ + dir = 1 }, -/obj/structure/machinery/computer/shuttle/dropship/flight/small{ - pixel_y = 16; - pixel_x = 6 +/turf/closed/shuttle/tripoli{ + icon_state = "28" }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tripoli) "bN" = ( /turf/closed/shuttle/tripoli{ icon_state = "22" }, /area/shuttle/tripoli) -"ca" = ( -/turf/open/shuttle/dropship/light_grey_top_right, +"cb" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 26; + pixel_x = 10 + }, +/obj/structure/extinguisher_cabinet/lifeboat{ + pixel_y = 27; + pixel_x = -2 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tripoli) "cD" = ( /turf/closed/shuttle/tripoli{ icon_state = "69" }, /area/shuttle/tripoli) -"cE" = ( -/obj/structure/stairs/perspective, -/obj/structure/platform{ - dir = 4; - layer = 2.7 +"dI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 2 }, -/obj/structure/platform{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = -1 }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/shuttle/tripoli) "dN" = ( /turf/closed/shuttle/tripoli/transparent{ icon_state = "97a" }, /area/shuttle/tripoli) +"dX" = ( +/obj/structure/bed/chair/dropship/passenger/folded{ + pixel_y = 8; + buckling_y = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tripoli) "ed" = ( /turf/template_noop, /area/space) @@ -62,6 +74,17 @@ icon_state = "73" }, /area/shuttle/tripoli) +"eP" = ( +/obj/structure/stairs/perspective, +/obj/structure/platform{ + dir = 4; + layer = 2.7 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/tripoli) "fk" = ( /obj/structure/shuttle/part/tripoli{ icon_state = "61" @@ -97,28 +120,15 @@ }, /turf/template_noop, /area/shuttle/tripoli) -"iU" = ( -/turf/open/shuttle/dropship/light_grey_bottom_right, -/area/shuttle/tripoli) -"jC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = -1 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +"iS" = ( +/obj/structure/shuttle/part/tripoli/gunpod_prop, +/turf/template_noop, /area/shuttle/tripoli) -"jR" = ( -/obj/structure/machinery/light/double{ - dir = 8 +"jD" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/shuttle/tripoli) -"kS" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tripoli) "lj" = ( /obj/structure/shuttle/part/tripoli{ @@ -163,25 +173,6 @@ icon_state = "75" }, /area/shuttle/tripoli) -"pj" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tripoli) -"pm" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/shuttle/tripoli) "pw" = ( /turf/closed/shuttle/tripoli{ icon_state = "34" @@ -193,6 +184,17 @@ }, /turf/template_noop, /area/shuttle/tripoli) +"ql" = ( +/obj/structure/stairs/perspective, +/obj/structure/platform{ + dir = 8; + layer = 2.7 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/tripoli) "qo" = ( /obj/structure/shuttle/part/tripoli{ icon_state = "74" @@ -204,16 +206,11 @@ icon_state = "104" }, /area/shuttle/tripoli) -"qW" = ( -/obj/effect/attach_point/fuel/tripoli{ - dir = 1 - }, -/turf/closed/shuttle/tripoli{ - icon_state = "28" +"qR" = ( +/obj/structure/machinery/light/double{ + dir = 8 }, -/area/shuttle/tripoli) -"ri" = ( -/turf/open/shuttle/dropship/light_grey_bottom_left, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/tripoli) "sb" = ( /obj/structure/shuttle/part/dropship2/transparent/engine_left_cap{ @@ -221,15 +218,6 @@ }, /turf/template_noop, /area/shuttle/tripoli) -"sc" = ( -/obj/structure/machinery/light/double{ - dir = 8 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tripoli) "sD" = ( /turf/closed/shuttle/tripoli{ icon_state = "42" @@ -240,41 +228,6 @@ icon_state = "24" }, /area/shuttle/tripoli) -"vi" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/machinery/door/airlock/hatch/cockpit{ - dir = 1 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tripoli) -"vl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds1{ - name = "\improper Tripoli cargo door" - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, -/area/shuttle/tripoli) -"vC" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 26; - pixel_x = 10 - }, -/obj/structure/extinguisher_cabinet/lifeboat{ - pixel_y = 27; - pixel_x = -2 - }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tripoli) "vJ" = ( /obj/structure/shuttle/part/tripoli{ icon_state = "84" @@ -282,10 +235,6 @@ /obj/effect/attach_point/electronics/tripoli, /turf/template_noop, /area/shuttle/tripoli) -"wi" = ( -/obj/effect/attach_point/crew_weapon/midway, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tripoli) "wy" = ( /obj/structure/shuttle/part/tripoli{ icon_state = "65" @@ -293,12 +242,6 @@ /obj/effect/attach_point/weapon/tripoli/right_wing, /turf/template_noop, /area/shuttle/tripoli) -"wL" = ( -/obj/structure/shuttle/part/tripoli{ - icon_state = "100" - }, -/turf/template_noop, -/area/shuttle/tripoli) "wN" = ( /obj/structure/shuttle/part/tripoli{ icon_state = "46" @@ -314,20 +257,31 @@ }, /turf/template_noop, /area/shuttle/tripoli) +"ye" = ( +/turf/open/shuttle/dropship/light_grey_top_right, +/area/shuttle/tripoli) "yB" = ( /obj/structure/shuttle/part/tripoli{ icon_state = "4" }, /turf/template_noop, /area/shuttle/tripoli) -"yF" = ( -/obj/structure/shuttle/part/tripoli{ - icon_state = "101" +"yS" = ( +/obj/effect/attach_point/crew_weapon/tripoli, +/obj/docking_port/mobile/marine_dropship/tripoli, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tripoli) +"zl" = ( +/turf/open/shuttle/dropship/light_grey_bottom_left, +/area/shuttle/tripoli) +"zu" = ( +/obj/structure/shuttle/part/tripoli/transparent/nosecone{ + icon_state = "102" }, /turf/template_noop, /area/shuttle/tripoli) -"zt" = ( -/turf/open/shuttle/dropship/light_grey_top_left, +"zB" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/shuttle/tripoli) "zC" = ( /turf/closed/shuttle/tripoli{ @@ -346,21 +300,34 @@ }, /turf/template_noop, /area/shuttle/tripoli) -"zZ" = ( -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tripoli) "Ac" = ( /turf/closed/shuttle/tripoli/transparent{ icon_state = "86b" }, /area/shuttle/tripoli) -"AC" = ( -/obj/structure/stairs/perspective, -/obj/structure/platform{ - dir = 8; - layer = 2.7 +"Bg" = ( +/obj/structure/phone_base{ + dir = 4; + pixel_x = -19; + pixel_y = 12; + layer = 3.1; + phone_category = "Dropship"; + name = "Tripoli telephone receiver"; + phone_id = "Tripoli" }, -/obj/structure/platform{ +/obj/structure/bed/chair/vehicle/dropship_cockpit/pilot{ + dir = 1; + pixel_x = 6; + pixel_y = 8 + }, +/obj/structure/machinery/computer/shuttle/dropship/flight/small{ + pixel_y = 16; + pixel_x = 6 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tripoli) +"Bz" = ( +/obj/structure/machinery/camera/autoname/golden_arrow/tripoli{ dir = 4 }, /turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, @@ -377,13 +344,35 @@ }, /turf/template_noop, /area/shuttle/tripoli) -"CR" = ( -/obj/effect/attach_point/fuel/tripoli{ - dir = 1 +"Cu" = ( +/obj/structure/machinery/camera/autoname/golden_arrow/tripoli, +/obj/structure/extinguisher_cabinet/lifeboat, +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, -/turf/closed/shuttle/tripoli{ - icon_state = "32" +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 26; + pixel_x = -10 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tripoli) +"CD" = ( +/obj/structure/machinery/light/double{ + dir = 4 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tripoli) +"CX" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tripoli) +"Dy" = ( +/obj/structure/machinery/light/double{ + dir = 4 }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/tripoli) "DG" = ( /turf/closed/shuttle/tripoli/transparent{ @@ -395,6 +384,9 @@ icon_state = "35" }, /area/shuttle/tripoli) +"Eq" = ( +/turf/open/shuttle/dropship/light_grey_top_left, +/area/shuttle/tripoli) "Ev" = ( /turf/closed/shuttle/tripoli{ icon_state = "23" @@ -405,18 +397,6 @@ icon_state = "67" }, /area/shuttle/tripoli) -"EG" = ( -/obj/structure/machinery/camera/autoname/golden_arrow/tripoli, -/obj/structure/extinguisher_cabinet/lifeboat, -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 26; - pixel_x = -10 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tripoli) "EM" = ( /turf/closed/shuttle/tripoli{ icon_state = "103" @@ -428,12 +408,6 @@ }, /turf/template_noop, /area/shuttle/tripoli) -"Fq" = ( -/obj/structure/shuttle/part/tripoli{ - icon_state = "102" - }, -/turf/template_noop, -/area/shuttle/tripoli) "Go" = ( /obj/structure/shuttle/part/tripoli{ icon_state = "2" @@ -445,42 +419,36 @@ icon_state = "80" }, /area/shuttle/tripoli) +"Jr" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/tripoli) "JC" = ( /turf/closed/shuttle/tripoli{ icon_state = "31" }, /area/shuttle/tripoli) -"JO" = ( -/obj/structure/machinery/light/double{ +"JV" = ( +/obj/structure/platform_decoration{ dir = 4 }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tripoli) -"Kg" = ( -/obj/structure/bed/chair/dropship/passenger{ +/obj/structure/platform_decoration{ dir = 8 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tripoli) -"Kk" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full"; - pixel_y = 22 - }, -/obj/structure/machinery/computer/dropship_weapons/tripoli/small{ - pixel_y = 8; - pixel_x = 8 - }, -/obj/structure/bed/chair/vehicle/dropship_cockpit/copilot{ - dir = 1; - pixel_x = 8; - layer = 5 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/tripoli) "KU" = ( /obj/structure/shuttle/part/tripoli{ @@ -488,23 +456,18 @@ }, /turf/template_noop, /area/shuttle/tripoli) -"KZ" = ( -/obj/structure/bed/chair/dropship/passenger/folded{ - pixel_y = 8; - buckling_y = 8 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tripoli) "Ly" = ( /turf/closed/shuttle/tripoli{ icon_state = "25" }, /area/shuttle/tripoli) -"MS" = ( -/obj/structure/machinery/camera/autoname/golden_arrow/tripoli{ - dir = 4 +"Mh" = ( +/obj/effect/attach_point/fuel/tripoli{ + dir = 1 + }, +/turf/closed/shuttle/tripoli{ + icon_state = "32" }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/tripoli) "NV" = ( /turf/closed/shuttle/tripoli{ @@ -516,6 +479,13 @@ icon_state = "62" }, /area/shuttle/tripoli) +"Ot" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/machinery/door/airlock/hatch/cockpit{ + dir = 1 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tripoli) "OF" = ( /turf/closed/shuttle/tripoli{ icon_state = "39" @@ -537,28 +507,41 @@ /obj/effect/attach_point/weapon/tripoli/right_fore, /turf/template_noop, /area/shuttle/tripoli) -"QS" = ( -/obj/structure/platform_decoration{ - dir = 8 +"QE" = ( +/obj/structure/platform{ + dir = 1 }, /obj/effect/decal/warning_stripes{ icon_state = "N"; pixel_y = 1 }, -/obj/structure/platform_decoration{ - dir = 4 +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tripoli) +"Rd" = ( +/obj/structure/shuttle/part/tripoli/transparent/nosecone{ + icon_state = "100" }, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/turf/template_noop, /area/shuttle/tripoli) "RD" = ( /turf/closed/shuttle/tripoli/transparent{ icon_state = "89a" }, /area/shuttle/tripoli) -"RK" = ( -/obj/effect/attach_point/crew_weapon/tripoli, -/obj/docking_port/mobile/marine_dropship/tripoli, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +"Sl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 2 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds1{ + name = "\improper Tripoli cargo door" + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/shuttle/tripoli) "Sr" = ( /turf/closed/shuttle/tripoli{ @@ -582,8 +565,14 @@ }, /turf/template_noop, /area/shuttle/tripoli) -"UI" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, +"VM" = ( +/obj/structure/machinery/light/double{ + dir = 8 + }, +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tripoli) "VP" = ( /turf/closed/shuttle/tripoli{ @@ -601,20 +590,32 @@ }, /turf/template_noop, /area/shuttle/tripoli) +"Xr" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full"; + pixel_y = 22 + }, +/obj/structure/machinery/computer/dropship_weapons/tripoli/small{ + pixel_y = 8; + pixel_x = 8 + }, +/obj/structure/bed/chair/vehicle/dropship_cockpit/copilot{ + dir = 1; + pixel_x = 8; + layer = 5 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tripoli) "XI" = ( /turf/closed/shuttle/tripoli{ icon_state = "27" }, /area/shuttle/tripoli) -"Ze" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"XT" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, -/obj/structure/blocker/forcefield/multitile_vehicles, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tripoli) "Zf" = ( @@ -622,10 +623,7 @@ icon_state = "43" }, /area/shuttle/tripoli) -"ZT" = ( -/obj/structure/machinery/light/double{ - dir = 4 - }, +"ZQ" = ( /turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, /area/shuttle/tripoli) "ZW" = ( @@ -646,7 +644,7 @@ fk ed sb pw -qW +bG bN zS ed @@ -676,10 +674,10 @@ ed ed lj ZW -vC -sc -pj -pj +cb +VM +jD +jD Sr sD eD @@ -689,56 +687,56 @@ oF Cf "} (4,1,1) = {" -wL +Rd ih Ac lv DG -zt -kS -ri -cE -QS -jR -MS -kS -vl +Eq +ZQ +zl +eP +Jr +qR +Bz +ZQ +Sl ed ed "} (5,1,1) = {" -yF +iS dN -aP -Kk -vi -UI -KZ -UI -RK -Ze -zZ -wi -zZ -jC +Bg +Xr +Ot +zB +dX +zB +yS +QE +CX +aH +CX +dI ed ed "} (6,1,1) = {" -Fq +zu WS hS RD Gt -ca -kS -iU -AC -pm -ZT -kS -kS -jC +ye +ZQ +aB +ql +JV +Dy +ZQ +ZQ +dI ed ed "} @@ -748,10 +746,10 @@ ed ed OM ZW -EG -JO -Kg -Kg +Cu +CD +XT +XT SW Zf JC @@ -772,7 +770,7 @@ VR Zf OI NV -CR +Mh mr KU ed diff --git a/maps/shuttles/dropship_typhoon.dmm b/maps/shuttles/dropship_typhoon.dmm index e5318506fa..75d46db7b1 100644 --- a/maps/shuttles/dropship_typhoon.dmm +++ b/maps/shuttles/dropship_typhoon.dmm @@ -2,6 +2,23 @@ "aX" = ( /turf/template_noop, /area/space) +"bi" = ( +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full"; + pixel_y = 22 + }, +/obj/structure/bed/chair/vehicle/dropship_cockpit/copilot{ + dir = 1; + pixel_x = 8; + layer = 5 + }, +/obj/structure/machinery/computer/dropship_weapons/typhoon/small{ + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) "bs" = ( /obj/structure/shuttle/part/tornado/transparent{ icon_state = "26" @@ -14,9 +31,6 @@ }, /turf/template_noop, /area/shuttle/tornado) -"cH" = ( -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tornado) "dV" = ( /turf/closed/shuttle/typhoon{ icon_state = "75" @@ -34,6 +48,18 @@ }, /turf/template_noop, /area/shuttle/tornado) +"fZ" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"gn" = ( +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) "gw" = ( /obj/structure/shuttle/part/tornado/transparent{ icon_state = "27" @@ -45,13 +71,6 @@ icon_state = "47" }, /area/shuttle/tornado) -"gJ" = ( -/obj/structure/machinery/camera/autoname/golden_arrow/typhoon{ - dir = 8; - pixel_x = 24 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tornado) "gN" = ( /turf/closed/shuttle/typhoon{ icon_state = "24" @@ -62,55 +81,23 @@ icon_state = "67" }, /area/shuttle/tornado) -"ix" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ - pixel_y = 25 - }, -/obj/structure/bed/chair/dropship/passenger/folded{ - dir = 4; - buckling_y = 3; - pixel_y = 3 - }, -/turf/open/shuttle/dropship/light_grey_top_right, -/area/shuttle/tornado) -"iz" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, -/area/shuttle/tornado) -"iH" = ( -/obj/structure/bed/chair/dropship/passenger/folded{ - pixel_y = 8; - buckling_y = 8 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tornado) -"ji" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/structure/platform_decoration{ +"hS" = ( +/obj/structure/bed/chair/dropship/passenger{ dir = 4 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"jt" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "102" - }, -/turf/template_noop, -/area/shuttle/tornado) -"kY" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 1 +"is" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"lm" = ( -/obj/structure/machinery/light/double{ - dir = 4; - pixel_y = -5 +"kC" = ( +/obj/structure/machinery/camera/autoname/golden_arrow/typhoon{ + dir = 8; + pixel_x = 24 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) @@ -124,6 +111,9 @@ icon_state = "48" }, /area/shuttle/tornado) +"mE" = ( +/turf/open/shuttle/dropship/light_grey_bottom_left, +/area/shuttle/tornado) "nM" = ( /turf/closed/shuttle/typhoon{ icon_state = "64" @@ -134,55 +124,66 @@ icon_state = "25" }, /area/shuttle/tornado) -"oo" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full"; - can_block_movement = 0 - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tornado) "oH" = ( /obj/structure/shuttle/part/typhoon/transparent{ icon_state = "95a" }, /turf/template_noop, /area/shuttle/tornado) -"qa" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "101" +"pQ" = ( +/obj/structure/phone_base{ + dir = 4; + pixel_x = -19; + pixel_y = 12; + layer = 3.1; + phone_category = "Dropship"; + name = "Typhoon telephone receiver"; + phone_id = "Typhoon" }, -/turf/template_noop, +/obj/structure/bed/chair/vehicle/dropship_cockpit/pilot{ + dir = 1; + pixel_x = 6; + pixel_y = 8 + }, +/obj/structure/machinery/computer/shuttle/dropship/flight/small{ + pixel_y = 16; + pixel_x = 6 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"qH" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med/limited{ + pixel_y = 25 + }, +/obj/structure/bed/chair/dropship/passenger/folded{ + dir = 4; + buckling_y = 3; + pixel_y = 3 + }, +/turf/open/shuttle/dropship/light_grey_top_right, /area/shuttle/tornado) "rb" = ( /turf/closed/shuttle/typhoon{ icon_state = "104" }, /area/shuttle/tornado) -"rN" = ( -/obj/structure/bed/portable_surgery{ - pixel_y = 5 - }, -/obj/structure/machinery/iv_drip{ - pixel_y = 26; - layer = 2.9 - }, -/obj/structure/curtain/medical, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tornado) "rO" = ( /turf/closed/shuttle/typhoon{ icon_state = "72" }, /area/shuttle/tornado) -"sC" = ( -/obj/effect/attach_point/crew_weapon/typhoon, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +"tf" = ( +/obj/structure/machinery/light/double{ + dir = 4; + pixel_y = -5 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/surgical_tray/empty, +/obj/item/reagent_container/hypospray/autoinjector/oxycodone{ + pixel_y = 9; + pixel_x = -3 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) "uS" = ( /obj/structure/shuttle/part/typhoon/transparent{ @@ -212,12 +213,13 @@ }, /turf/template_noop, /area/shuttle/tornado) -"wN" = ( -/turf/open/shuttle/dropship/light_grey_bottom_right, -/area/shuttle/tornado) -"wP" = ( +"wO" = ( +/obj/structure/machinery/light/double{ + dir = 8; + pixel_y = -5 + }, /obj/structure/bed/chair/dropship/passenger{ - dir = 8 + dir = 4 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) @@ -226,6 +228,13 @@ icon_state = "69" }, /area/shuttle/tornado) +"xP" = ( +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/machinery/door/airlock/hatch/cockpit/three{ + dir = 1 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) "yk" = ( /turf/closed/shuttle/typhoon/transparent{ icon_state = "89a" @@ -239,6 +248,23 @@ }, /turf/template_noop, /area/shuttle/tornado) +"zj" = ( +/obj/structure/machinery/computer/overwatch/toc{ + pixel_y = 14 + }, +/obj/structure/surface/table/reinforced/toc/west{ + pixel_y = -7 + }, +/obj/structure/machinery/prop/almayer/CICmap/arc{ + pixel_y = 9; + pixel_x = -9 + }, +/obj/structure/machinery/computer/railgun/toc{ + pixel_y = 14; + pixel_x = 7 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) "zS" = ( /turf/closed/shuttle/typhoon/transparent{ icon_state = "89b" @@ -250,15 +276,6 @@ }, /turf/template_noop, /area/shuttle/tornado) -"Bf" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tornado) "Bz" = ( /obj/structure/shuttle/part/tornado/transparent{ icon_state = "23" @@ -268,6 +285,10 @@ }, /turf/template_noop, /area/shuttle/tornado) +"BL" = ( +/obj/effect/attach_point/crew_weapon/typhoon, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/tornado) "BO" = ( /obj/structure/shuttle/part/tornado/transparent{ icon_state = "15" @@ -286,32 +307,32 @@ }, /turf/template_noop, /area/shuttle/tornado) +"CD" = ( +/obj/structure/bed/chair/dropship/passenger/folded{ + pixel_y = 8; + buckling_y = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) "CE" = ( /turf/closed/shuttle/typhoon/transparent{ icon_state = "86b" }, /area/shuttle/tornado) -"Dl" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "83" +"CI" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full"; + can_block_movement = 0 }, -/area/shuttle/tornado) -"Dv" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "32" +/obj/structure/platform{ + dir = 4 }, -/turf/template_noop, -/area/shuttle/tornado) -"Eh" = ( -/obj/effect/attach_point/crew_weapon/typhoon, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tornado) -"Fm" = ( -/turf/closed/shuttle/typhoon/transparent{ - icon_state = "86a" +/obj/structure/platform{ + dir = 8 }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"FC" = ( +"CW" = ( /obj/structure/machinery/light/double{ dir = 4; pixel_y = -5 @@ -321,94 +342,126 @@ }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"FO" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "100" +"Da" = ( +/obj/structure/bed/portable_surgery{ + pixel_y = 5 }, -/turf/template_noop, -/area/shuttle/tornado) -"Gv" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "70" +/obj/structure/machinery/iv_drip{ + pixel_y = 26; + layer = 2.9 }, -/turf/template_noop, +/obj/structure/curtain/medical, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"Ih" = ( -/obj/structure/platform{ - dir = 1 +"De" = ( +/obj/structure/machinery/camera/autoname/golden_arrow/typhoon{ + pixel_y = 32 }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/shuttle/tornado) -"Iw" = ( -/obj/structure/machinery/light/double{ - dir = 8; - pixel_y = -5 +/obj/structure/surface/table/reinforced/toc/east{ + pixel_y = -7 }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 +/obj/structure/machinery/computer/railgun/gatling/toc{ + pixel_y = 13; + pixel_x = -7 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/obj/structure/phone_base/toc{ + pixel_y = 13; + pixel_x = 11; + phone_id = "Typhoon Overwatch"; + phone_category = "Overwatch"; + name = "Typhoon overwatch telephone receiver" + }, +/turf/open/shuttle/dropship/light_grey_top_left, /area/shuttle/tornado) -"IT" = ( -/obj/structure/shuttle/part/typhoon/transparent{ +"Dl" = ( +/turf/closed/shuttle/typhoon{ + icon_state = "83" + }, +/area/shuttle/tornado) +"Du" = ( +/obj/docking_port/mobile/marine_dropship/typhoon, +/obj/structure/bed/chair/dropship/passenger/folded{ + pixel_y = 8; + buckling_y = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"Dv" = ( +/obj/structure/shuttle/part/typhoon/transparent{ + icon_state = "32" + }, +/turf/template_noop, +/area/shuttle/tornado) +"Fm" = ( +/turf/closed/shuttle/typhoon/transparent{ + icon_state = "86a" + }, +/area/shuttle/tornado) +"Gv" = ( +/obj/structure/shuttle/part/typhoon/transparent{ + icon_state = "70" + }, +/turf/template_noop, +/area/shuttle/tornado) +"HJ" = ( +/obj/structure/shuttle/part/typhoon/transparent{ + icon_state = "32" + }, +/obj/effect/attach_point/fuel/typhoon{ + layer = 3.1; + dir = 1 + }, +/turf/template_noop, +/area/shuttle/tornado) +"IR" = ( +/obj/structure/shuttle/part/typhoon/transparent/nosecone{ + icon_state = "100" + }, +/turf/template_noop, +/area/shuttle/tornado) +"IT" = ( +/obj/structure/shuttle/part/typhoon/transparent{ icon_state = "40"; density = 0; layer = 4.2 }, /turf/template_noop, /area/shuttle/tornado) -"IU" = ( -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tornado) "IX" = ( /obj/structure/shuttle/part/typhoon/transparent{ icon_state = "26" }, /turf/template_noop, /area/shuttle/tornado) -"IZ" = ( -/turf/open/shuttle/dropship/light_grey_bottom_left, -/area/shuttle/tornado) "Jb" = ( /obj/structure/shuttle/part/typhoon/transparent{ icon_state = "33" }, /turf/template_noop, /area/shuttle/tornado) +"Jm" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) "JT" = ( /obj/structure/shuttle/part/typhoon/transparent{ icon_state = "23" }, /turf/template_noop, /area/shuttle/tornado) -"Kp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = -1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 2 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds3{ - name = "\improper Typhoon cargo door"; - id = "aft_door" - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +"KN" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_left_to_right, /area/shuttle/tornado) -"Kw" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "28" +"KW" = ( +/obj/structure/bed/chair/dropship/passenger{ + dir = 8 }, -/obj/effect/attach_point/fuel/typhoon{ - layer = 3.1; +/obj/structure/barricade/handrail{ dir = 1 }, -/turf/template_noop, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) "KX" = ( /obj/structure/shuttle/part/typhoon/transparent{ @@ -416,7 +469,13 @@ }, /turf/template_noop, /area/shuttle/tornado) -"KY" = ( +"Lj" = ( +/obj/structure/shuttle/part/typhoon/transparent{ + icon_state = "4" + }, +/turf/template_noop, +/area/shuttle/tornado) +"LB" = ( /obj/structure/machinery/light/double{ dir = 8; pixel_y = -5 @@ -428,76 +487,62 @@ }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"Lj" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "4" - }, -/turf/template_noop, +"Mj" = ( +/obj/effect/attach_point/crew_weapon/typhoon, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"MB" = ( -/turf/closed/shuttle/typhoon/transparent{ - icon_state = "97a" - }, +"Mp" = ( +/obj/structure/shuttle/part/typhoon/gunpod_prop, +/turf/template_noop, /area/shuttle/tornado) -"NB" = ( +"Ms" = ( /obj/structure/machinery/light/double{ - dir = 8; + dir = 4; pixel_y = -5 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"Oh" = ( -/turf/closed/shuttle/typhoon{ - icon_state = "103" +"MB" = ( +/turf/closed/shuttle/typhoon/transparent{ + icon_state = "97a" }, /area/shuttle/tornado) -"Oq" = ( -/obj/structure/machinery/camera/autoname/golden_arrow/typhoon{ - dir = 4; - pixel_x = -24 +"Nf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 2 }, -/obj/structure/bed/chair/dropship/passenger{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = -1 }, -/obj/structure/barricade/handrail{ +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, +/area/shuttle/tornado) +"Oc" = ( +/obj/structure/shuttle/part/typhoon/transparent{ + icon_state = "28" + }, +/obj/effect/attach_point/fuel/typhoon{ + layer = 3.1; dir = 1 }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/turf/template_noop, /area/shuttle/tornado) -"Or" = ( +"Oh" = ( /turf/closed/shuttle/typhoon{ - icon_state = "82" + icon_state = "103" }, /area/shuttle/tornado) -"Ou" = ( -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full"; - pixel_y = 22 - }, -/obj/structure/bed/chair/vehicle/dropship_cockpit/copilot{ - dir = 1; - pixel_x = 8; - layer = 5 - }, -/obj/structure/machinery/computer/dropship_weapons/typhoon/small{ - pixel_x = 8; - pixel_y = 8 +"Or" = ( +/turf/closed/shuttle/typhoon{ + icon_state = "82" }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"OQ" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full"; - can_block_movement = 0 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/platform{ - dir = 4 +"OE" = ( +/obj/structure/shuttle/part/typhoon/transparent/nosecone{ + icon_state = "102" }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/turf/template_noop, /area/shuttle/tornado) "OV" = ( /obj/structure/shuttle/part/tornado/transparent{ @@ -505,30 +550,12 @@ }, /turf/template_noop, /area/shuttle/tornado) -"Pq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = -1 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, -/area/shuttle/tornado) "Qi" = ( /obj/structure/shuttle/part/typhoon/transparent{ icon_state = "38" }, /turf/template_noop, /area/shuttle/tornado) -"Qs" = ( -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/machinery/door/airlock/hatch/cockpit/three{ - dir = 1 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tornado) "QF" = ( /turf/closed/shuttle/typhoon{ icon_state = "62" @@ -540,6 +567,22 @@ }, /turf/template_noop, /area/shuttle/tornado) +"Re" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/tornado) +"Rg" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/obj/structure/platform_decoration{ + dir = 8 + }, +/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, +/area/shuttle/tornado) "Rw" = ( /turf/closed/shuttle/typhoon{ icon_state = "31" @@ -563,6 +606,9 @@ }, /turf/template_noop, /area/shuttle/tornado) +"Sz" = ( +/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, +/area/shuttle/tornado) "Tc" = ( /obj/structure/shuttle/part/tornado/transparent{ icon_state = "29" @@ -593,25 +639,20 @@ /obj/structure/shuttle/part/typhoon/transparent, /turf/template_noop, /area/shuttle/tornado) -"Ut" = ( -/obj/structure/machinery/camera/autoname/golden_arrow/typhoon{ - pixel_y = 32 - }, -/obj/structure/surface/table/reinforced/toc/east{ - pixel_y = -7 +"UV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = -1 }, -/obj/structure/machinery/computer/railgun/gatling/toc{ - pixel_y = 13; - pixel_x = -7 +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = 2 }, -/obj/structure/phone_base/toc{ - pixel_y = 13; - pixel_x = 11; - phone_id = "Typhoon Overwatch"; - phone_category = "Overwatch"; - name = "Typhoon overwatch telephone receiver" +/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/ds3{ + name = "\improper Typhoon cargo door"; + id = "aft_door" }, -/turf/open/shuttle/dropship/light_grey_top_left, +/turf/open/shuttle/dropship/medium_grey_single_wide_left_to_right, /area/shuttle/tornado) "VM" = ( /obj/structure/shuttle/part/typhoon/transparent{ @@ -625,75 +666,35 @@ }, /turf/template_noop, /area/shuttle/tornado) -"Wk" = ( -/obj/docking_port/mobile/marine_dropship/typhoon, -/obj/structure/bed/chair/dropship/passenger/folded{ - pixel_y = 8; - buckling_y = 8 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tornado) -"Xv" = ( -/obj/structure/phone_base{ - dir = 4; - pixel_x = -19; - pixel_y = 12; - layer = 3.1; - phone_category = "Dropship"; - name = "Typhoon telephone receiver"; - phone_id = "Typhoon" +"Wr" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full"; + can_block_movement = 0 }, -/obj/structure/bed/chair/vehicle/dropship_cockpit/pilot{ - dir = 1; - pixel_x = 6; - pixel_y = 8 +/obj/structure/platform{ + dir = 8 }, -/obj/structure/machinery/computer/shuttle/dropship/flight/small{ - pixel_y = 16; - pixel_x = 6 +/obj/structure/platform{ + dir = 4 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) -"Xw" = ( -/obj/structure/shuttle/part/typhoon/transparent{ - icon_state = "32" - }, -/obj/effect/attach_point/fuel/typhoon{ - layer = 3.1; - dir = 1 - }, -/turf/template_noop, -/area/shuttle/tornado) -"XO" = ( -/obj/structure/machinery/light/double{ +"XJ" = ( +/obj/structure/machinery/camera/autoname/golden_arrow/typhoon{ dir = 4; - pixel_y = -5 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/surgical_tray/empty, -/obj/item/reagent_container/hypospray/autoinjector/oxycodone{ - pixel_y = 9; - pixel_x = -3 - }, -/turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, -/area/shuttle/tornado) -"Ym" = ( -/obj/structure/machinery/computer/overwatch/toc{ - pixel_y = 14 - }, -/obj/structure/surface/table/reinforced/toc/west{ - pixel_y = -7 + pixel_x = -24 }, -/obj/structure/machinery/prop/almayer/CICmap/arc{ - pixel_y = 9; - pixel_x = -9 +/obj/structure/bed/chair/dropship/passenger{ + dir = 4 }, -/obj/structure/machinery/computer/railgun/toc{ - pixel_y = 14; - pixel_x = 7 +/obj/structure/barricade/handrail{ + dir = 1 }, /turf/open/shuttle/dropship/medium_grey_single_wide_up_to_down, /area/shuttle/tornado) +"Yk" = ( +/turf/open/shuttle/dropship/light_grey_bottom_right, +/area/shuttle/tornado) "YW" = ( /obj/structure/shuttle/part/typhoon/transparent{ icon_state = "71" @@ -705,9 +706,6 @@ icon_state = "30" }, /area/shuttle/tornado) -"ZD" = ( -/turf/open/shuttle/dropship/light_grey_single_wide_up_to_down, -/area/shuttle/tornado) "ZR" = ( /turf/closed/shuttle/typhoon{ icon_state = "37" @@ -725,7 +723,7 @@ aX aX IT Qi -Kw +Oc KX wI aX @@ -780,13 +778,13 @@ aX aX yE et -Ym -KY -Oq -IU -Iw -IU -Eh +zj +LB +XJ +hS +wO +hS +Mj gx wd Zk @@ -795,63 +793,63 @@ Oh uS "} (5,1,1) = {" -FO +IR oH CE Fm Or -Ut -ZD -ZD -ZD -ZD -IZ -OQ -Bf -cH -NB -cH -Kp +De +Sz +Sz +Sz +Sz +mE +Wr +Rg +gn +is +gn +UV aX "} (6,1,1) = {" -qa +Mp MB -Xv -Ou -Qs -iz -cH -cH -Wk -iH -iz -cH -Ih -ZD -sC -ZD -Pq +pQ +bi +xP +KN +gn +gn +Du +CD +KN +gn +Re +Sz +BL +Sz +Nf aX "} (7,1,1) = {" -jt +OE fJ zS yk et -ix -ZD -ZD -ZD -ZD -wN -oo -ji -gJ -lm -cH -Pq +qH +Sz +Sz +Sz +Sz +Yk +CI +fZ +kC +Ms +gn +Nf aX "} (8,1,1) = {" @@ -860,13 +858,13 @@ aX aX IT et -rN -XO -kY -wP -FC -wP -Eh +Da +tf +KW +Jm +CW +Jm +Mj lM ZR Rw @@ -905,7 +903,7 @@ Gv Gv TF Qi -Xw +HJ IX wI yE