diff --git a/code/game/machinery/vending/vendor_types/crew/engineering.dm b/code/game/machinery/vending/vendor_types/crew/engineering.dm new file mode 100644 index 000000000000..9d5a809e52f7 --- /dev/null +++ b/code/game/machinery/vending/vendor_types/crew/engineering.dm @@ -0,0 +1,74 @@ +//------------ MT CLOTHING VENDOR--------------- + +GLOBAL_LIST_INIT(cm_vending_clothing_maintenance_technician, list( + list("MAINTENANCE SET (MANDATORY)", 0, null, null, null), + list("Essential Maintenance Set", 0, /obj/effect/essentials_set/maintenance, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY), + + list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null), + list("Insulated Gloves", 0, /obj/item/clothing/gloves/yellow, MARINE_CAN_BUY_GLOVES, VENDOR_ITEM_MANDATORY), + list("Headset", 0, /obj/item/device/radio/headset/almayer/mt, MARINE_CAN_BUY_EAR, VENDOR_ITEM_MANDATORY), + list("MRE", 0, /obj/item/storage/box/MRE, MARINE_CAN_BUY_MRE, VENDOR_ITEM_MANDATORY), + list("Map", 0, /obj/item/map/current_map, MARINE_CAN_BUY_KIT, VENDOR_ITEM_MANDATORY), + + list("HELMET (CHOOSE 1)", 0, null, null, null), + list("Beret, Engineering", 0, /obj/item/clothing/head/beret/eng, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("White Hardhat", 0, /obj/item/clothing/head/hardhat/white, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("Orange Hardhat", 0, /obj/item/clothing/head/hardhat/orange, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("Blue Hardhat", 0, /obj/item/clothing/head/hardhat/dblue, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + list("Welding Helmet", 0, /obj/item/clothing/head/welding, MARINE_CAN_BUY_HELMET, VENDOR_ITEM_REGULAR), + + list("SUIT (CHOOSE 1)", 0, null, null, null), + list("Black Hazard Vest", 0, /obj/item/clothing/suit/storage/hazardvest/black, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Blue Hazard Vest", 0, /obj/item/clothing/suit/storage/hazardvest/blue, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Orange Hazard Vest", 0, /obj/item/clothing/suit/storage/hazardvest, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + list("Yellow Hazard Vest", 0, /obj/item/clothing/suit/storage/hazardvest/yellow, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR), + + list("BACKPACK (CHOOSE 1)", 0, null, null, null), + list("Technician Backpack", 0, /obj/item/storage/backpack/marine/tech, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), + list("Technician Satchel", 0, /obj/item/storage/backpack/marine/satchel/tech, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), + list("Technician Welderpack", 0, /obj/item/storage/backpack/marine/engineerpack, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), + list("Technician Welder-Satchel", 0, /obj/item/storage/backpack/marine/engineerpack/satchel, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_RECOMMENDED), + list("Technician Welder Chestrig", 0, /obj/item/storage/backpack/marine/engineerpack/welder_chestrig, MARINE_CAN_BUY_BACKPACK, VENDOR_ITEM_REGULAR), + + list("BELT (CHOOSE 1)", 0, null, null, null), + list("G8-A General Utility Pouch", 0, /obj/item/storage/backpack/general_belt, MARINE_CAN_BUY_BELT, VENDOR_ITEM_REGULAR), + list("M276 Toolbelt Rig (Full)", 0, /obj/item/storage/belt/utility/full, MARINE_CAN_BUY_BELT, VENDOR_ITEM_MANDATORY), + + list("POUCHES (CHOOSE 2)", 0, null, null, null), + list("Medium General Pouch", 0, /obj/item/storage/pouch/general/medium, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("First-Aid Pouch (Refillable Injectors)", 0, /obj/item/storage/pouch/firstaid/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("First-Aid Pouch (Splints, Gauze, Ointment)", 0, /obj/item/storage/pouch/firstaid/full/alternate, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("First-Aid Pouch (Pill Packets)", 0, /obj/item/storage/pouch/firstaid/full/pills, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Construction Pouch", 0, /obj/item/storage/pouch/construction, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_RECOMMENDED), + list("Electronics Pouch (Full)", 0, /obj/item/storage/pouch/electronics/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Tools Pouch (Full)", 0, /obj/item/storage/pouch/tools/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + list("Flare Pouch (Full)", 0, /obj/item/storage/pouch/flare/full, MARINE_CAN_BUY_POUCH, VENDOR_ITEM_REGULAR), + + list("MASK (CHOOSE 1)", 0, null, null, null), + list("Gas Mask", 0, /obj/item/clothing/mask/gas, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), + list("Heat Absorbent Coif", 0, /obj/item/clothing/mask/rebreather/scarf, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), + list("Rebreather", 0, /obj/item/clothing/mask/rebreather, MARINE_CAN_BUY_MASK, VENDOR_ITEM_REGULAR), + + list("ACCESSORIES (CHOOSE 1)", 0, null, null, null), + list("Brown Webbing Vest", 0, /obj/item/clothing/accessory/storage/black_vest/brown_vest, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_RECOMMENDED), + list("Black Webbing Vest", 0, /obj/item/clothing/accessory/storage/black_vest, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), + list("Webbing", 0, /obj/item/clothing/accessory/storage/webbing, MARINE_CAN_BUY_ACCESSORY, VENDOR_ITEM_REGULAR), + )) + +/obj/structure/machinery/cm_vending/clothing/maintenance_technician + name = "\improper ColMarTech Maintenance Technician Equipment Rack" + desc = "An automated rack hooked up to a colossal storage of Maintenance Technician standard-issue equipment." + req_access = list(ACCESS_MARINE_ENGINEERING) + vendor_role = list(JOB_MAINT_TECH) + +/obj/structure/machinery/cm_vending/clothing/maintenance_technician/get_listed_products(mob/user) + return GLOB.cm_vending_clothing_maintenance_technician + +/obj/effect/essentials_set/maintenance + spawned_gear_list = list( + /obj/item/device/lightreplacer, + /obj/item/device/demo_scanner, + /obj/item/storage/bag/trash, + /obj/item/storage/toolbox/mechanical, + /obj/item/device/flashlight, + ) diff --git a/code/modules/gear_presets/uscm_ship.dm b/code/modules/gear_presets/uscm_ship.dm index 578df21b67df..681fbd1f47ef 100644 --- a/code/modules/gear_presets/uscm_ship.dm +++ b/code/modules/gear_presets/uscm_ship.dm @@ -252,17 +252,9 @@ if (new_human.client && new_human.client.prefs && (new_human.client.prefs.backbag == 1)) back_item = /obj/item/storage/backpack/marine/tech - new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/almayer/mt(new_human), WEAR_L_EAR) new_human.equip_to_slot_or_del(new /obj/item/clothing/under/marine/officer/engi(new_human), WEAR_BODY) new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine(new_human), WEAR_FEET) - new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/yellow(new_human), WEAR_HANDS) - new_human.equip_to_slot_or_del(new /obj/item/clothing/head/welding(new_human), WEAR_HEAD) - new_human.equip_to_slot_or_del(new /obj/item/storage/belt/utility/full(new_human), WEAR_WAIST) 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_R_STORE) - new_human.equip_to_slot_or_del(new /obj/item/device/demo_scanner(new_human), WEAR_L_STORE) - new_human.equip_to_slot_or_del(new /obj/item/storage/bag/trash(new_human), WEAR_L_HAND) - new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/marine/engineerpack/welder_chestrig, (new_human), WEAR_R_HAND) /datum/equipment_preset/uscm_ship/maint/load_rank(mob/living/carbon/human/new_human) if(new_human.client) diff --git a/colonialmarines.dme b/colonialmarines.dme index 18cfc47f5ad0..cf2c064f1292 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -973,6 +973,7 @@ #include "code\game\machinery\vending\vendor_types\antag\antag_guns_snowflake.dm" #include "code\game\machinery\vending\vendor_types\antag\antag_guns_sorted.dm" #include "code\game\machinery\vending\vendor_types\crew\commanding_officer.dm" +#include "code\game\machinery\vending\vendor_types\crew\engineering.dm" #include "code\game\machinery\vending\vendor_types\crew\medical.dm" #include "code\game\machinery\vending\vendor_types\crew\mp.dm" #include "code\game\machinery\vending\vendor_types\crew\pilot_officer.dm" diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm index 4f2891030011..22845ed4e40c 100644 --- a/maps/map_files/USS_Almayer/USS_Almayer.dmm +++ b/maps/map_files/USS_Almayer/USS_Almayer.dmm @@ -133,6 +133,15 @@ allow_construction = 0 }, /area/almayer/stair_clone) +"aaG" = ( +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "aaH" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_Down1"; @@ -148,6 +157,19 @@ /obj/structure/lattice, /turf/open/space, /area/space) +"aaZ" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 + }, +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "aba" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 2; @@ -169,20 +191,10 @@ /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/lifeboat_pumps/north2) -"abj" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "abk" = ( /obj/structure/window/reinforced/toughened, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cic) -"abn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "abs" = ( /turf/closed/wall/almayer/outer, /area/almayer/lifeboat_pumps/north1) @@ -237,6 +249,15 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"abN" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "abQ" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -273,6 +294,15 @@ icon_state = "tcomms" }, /area/almayer/shipboard/weapon_room) +"aca" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "acc" = ( /obj/structure/machinery/door/airlock/almayer/security{ access_modified = 1; @@ -295,6 +325,12 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) +"ace" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "acf" = ( /turf/closed/wall/almayer/outer, /area/almayer/living/starboard_garden) @@ -551,9 +587,6 @@ icon_state = "red" }, /area/almayer/shipboard/weapon_room) -"acQ" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) "acS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -619,9 +652,13 @@ }, /area/almayer/lifeboat_pumps/north1) "ade" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) +/obj/structure/surface/table/almayer, +/obj/item/device/radio{ + pixel_x = -6; + pixel_y = 3 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "adj" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_Down1"; @@ -721,6 +758,13 @@ icon_state = "test_floor4" }, /area/almayer/living/offices/flight) +"adS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "aea" = ( /obj/structure/machinery/light{ dir = 1 @@ -821,6 +865,14 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) +"aeD" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "aeE" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -1030,6 +1082,14 @@ }, /turf/open/floor/almayer, /area/almayer/living/offices/flight) +"afA" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) "afB" = ( /obj/structure/machinery/light{ dir = 1 @@ -1193,6 +1253,15 @@ icon_state = "bluecorner" }, /area/almayer/living/offices/flight) +"agh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_umbilical) "agj" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/commandbunks) @@ -1224,27 +1293,6 @@ "agu" = ( /turf/open/floor/almayer, /area/almayer/living/officer_study) -"agv" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ - access_modified = 1; - dir = 2; - name = "\improper Requisitions Break Room"; - req_one_access_txt = "19;21" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/req) "agA" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -1419,14 +1467,6 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/engineering/starboard_atmos) -"ahL" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{ - pixel_x = 7; - pixel_y = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "ahN" = ( /obj/structure/flora/bush/ausbushes/var3/ywflowers, /turf/open/floor/grass, @@ -1546,6 +1586,14 @@ icon_state = "plate" }, /area/almayer/living/starboard_garden) +"aiI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) "aiJ" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_Down3"; @@ -1625,6 +1673,12 @@ icon_state = "redfull" }, /area/almayer/command/cic) +"ajq" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "ajs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -1739,18 +1793,6 @@ icon_state = "redcorner" }, /area/almayer/shipboard/weapon_room) -"akn" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/vehicle/powerloader{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "cargo" - }, -/area/almayer/hallways/lower/vehiclehangar) "ako" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1917,10 +1959,6 @@ }, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"alh" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) "alk" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -1933,6 +1971,12 @@ }, /turf/closed/wall/almayer/research/containment/wall/purple, /area/almayer/medical/containment/cell) +"alu" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "alw" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; @@ -2007,6 +2051,12 @@ "alX" = ( /turf/open/floor/almayer, /area/almayer/command/cic) +"alY" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/mess) "alZ" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -2026,14 +2076,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/pilotbunks) -"amc" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/upper/stern_hallway) "amd" = ( /obj/structure/machinery/vending/cola{ density = 0; @@ -2043,6 +2085,15 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) +"ame" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/lower/vehiclehangar) "amg" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) @@ -2084,14 +2135,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"amu" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) "amw" = ( /turf/open/floor/almayer{ dir = 9; @@ -2182,19 +2225,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/pilotbunks) -"ang" = ( -/obj/item/clothing/head/welding{ - pixel_y = 6 - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "anm" = ( /obj/structure/stairs{ icon_state = "ramptop" @@ -2283,6 +2313,18 @@ icon_state = "sterile_green" }, /area/almayer/medical/hydroponics) +"anE" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/obj/structure/sign/safety/rewire{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/port_aft_hallway) "anM" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, @@ -2302,18 +2344,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"anU" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Dropship Control Bubble"; - req_access = null; - req_one_access_txt = "3;22;2;19" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/offices/flight) "anV" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ @@ -2335,12 +2365,12 @@ "aoe" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/morgue) -"aog" = ( -/obj/structure/machinery/landinglight/ds2/delayone{ - dir = 8 +"aof" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "aoh" = ( /obj/structure/morgue/crematorium, /turf/open/floor/almayer{ @@ -2479,12 +2509,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/medical_science) -"aoN" = ( -/obj/structure/machinery/landinglight/ds1/delayone{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/hangar) "aoP" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -2528,6 +2552,15 @@ icon_state = "plating" }, /area/almayer/engineering/upper_engineering) +"aoZ" = ( +/obj/structure/closet, +/obj/item/clothing/under/marine, +/obj/item/clothing/suit/storage/marine, +/obj/item/clothing/head/helmet/marine, +/obj/item/clothing/head/beret/cm, +/obj/item/clothing/head/beret/cm, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "apa" = ( /obj/structure/surface/rack, /obj/item/tool/screwdriver, @@ -2611,6 +2644,9 @@ icon_state = "red" }, /area/almayer/living/starboard_garden) +"apx" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/p_bow) "apz" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -2903,13 +2939,6 @@ icon_state = "plate" }, /area/almayer/medical/medical_science) -"aqH" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "aqI" = ( /turf/open/floor/almayer{ dir = 8; @@ -2928,19 +2957,6 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"aqL" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/port_midship_hallway) "aqN" = ( /turf/open/floor/almayer{ icon_state = "plate" @@ -2994,9 +3010,6 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering) -"aqZ" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_stern) "arb" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) @@ -3288,12 +3301,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"asE" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "asF" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ access_modified = 1; @@ -3394,6 +3401,12 @@ icon_state = "plate" }, /area/almayer/medical/morgue) +"asV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "asX" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, /turf/open/floor/almayer{ @@ -3547,11 +3560,6 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering) -"atH" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "atK" = ( /turf/open/floor/almayer{ dir = 10; @@ -3600,12 +3608,6 @@ icon_state = "test_floor4" }, /area/almayer/command/cic) -"atS" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "atT" = ( /obj/structure/toilet{ dir = 1 @@ -3687,6 +3689,15 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) +"aux" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/mess) "auy" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -3833,17 +3844,6 @@ "avo" = ( /turf/closed/wall/almayer/outer, /area/almayer/powered/agent) -"avp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/almayer{ - id = "s_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_umbilical) "avs" = ( /turf/closed/wall/biodome, /area/almayer/powered/agent) @@ -4218,9 +4218,6 @@ icon_state = "plate" }, /area/almayer/command/cic) -"awE" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) "awF" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/numbertwobunks) @@ -4525,6 +4522,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) +"axT" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) "axV" = ( /obj/structure/machinery/telecomms/server/presets/command, /turf/open/floor/almayer{ @@ -4550,17 +4551,6 @@ icon_state = "tcomms" }, /area/almayer/command/telecomms) -"axY" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "aya" = ( /turf/open/floor/almayer{ dir = 4; @@ -4846,19 +4836,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/medical_science) -"aza" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "azc" = ( /obj/structure/machinery/computer/telecomms/traffic, /turf/open/floor/almayer{ @@ -4883,12 +4860,6 @@ icon_state = "orangecorner" }, /area/almayer/engineering/upper_engineering) -"azg" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "azh" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/almayer{ @@ -5260,6 +5231,15 @@ icon_state = "plate" }, /area/almayer/living/offices/flight) +"aAM" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "aAP" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -5287,15 +5267,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) -"aAU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "aAZ" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -5544,6 +5515,17 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) +"aBK" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) +"aBO" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) "aBP" = ( /obj/structure/machinery/door/airlock/almayer/maint/reinforced{ access_modified = 1; @@ -5554,15 +5536,6 @@ icon_state = "test_floor4" }, /area/almayer/living/synthcloset) -"aBQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/technology_scanner, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "aBR" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/ashtray/glass, @@ -5696,32 +5669,36 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) +"aCr" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "aCt" = ( /obj/structure/bed/sofa/south/white/right, /turf/open/floor/almayer{ icon_state = "sterile_green" }, /area/almayer/medical/medical_science) -"aCu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) "aCw" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/medical/morgue) -"aCA" = ( -/obj/structure/largecrate/random/barrel/white, +"aCy" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"aCB" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/maint/hull/lower/l_a_p) "aCC" = ( /turf/open/floor/almayer{ icon_state = "sterile_green" @@ -5758,14 +5735,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/containment) -"aCX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "aCZ" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -5804,6 +5773,16 @@ icon_state = "orangecorner" }, /area/almayer/engineering/upper_engineering) +"aDf" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "aDh" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -5944,6 +5923,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering) +"aDG" = ( +/obj/structure/machinery/door_control{ + id = "panicroomback"; + name = "\improper Safe Room"; + pixel_x = 25; + req_one_access_txt = "3" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "aDH" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -6034,6 +6024,21 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) +"aDY" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/item/storage/belt/utility/full{ + pixel_y = 8 + }, +/obj/item/storage/belt/utility/full, +/obj/item/clothing/suit/storage/hazardvest/black, +/obj/item/tool/crowbar, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "aEe" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -6078,15 +6083,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"aEr" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "aEA" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -6117,6 +6113,14 @@ icon_state = "silver" }, /area/almayer/command/cic) +"aEE" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "aEG" = ( /obj/structure/bed/chair{ dir = 8 @@ -6168,6 +6172,22 @@ "aET" = ( /turf/closed/wall/almayer, /area/almayer/living/captain_mess) +"aEU" = ( +/obj/structure/stairs{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/port_midship_hallway) "aEW" = ( /turf/closed/wall/almayer, /area/almayer/living/numbertwobunks) @@ -6318,6 +6338,20 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering) +"aFx" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/glass{ + amount = 20; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/dart, +/obj/item/weapon/dart, +/obj/item/weapon/dart, +/obj/item/weapon/dart/green, +/obj/item/weapon/dart/green, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "aFy" = ( /obj/structure/bed/chair{ dir = 8 @@ -6358,15 +6392,12 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering) -"aFG" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "vehicle1door"; - name = "Vehicle Bay One" - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"aFE" = ( +/obj/structure/toilet{ + dir = 1 }, -/area/almayer/hallways/lower/vehiclehangar) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "aFI" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -6389,13 +6420,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) -"aGa" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "aGb" = ( /obj/structure/ladder{ height = 2; @@ -6418,6 +6442,11 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_four) +"aGh" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "aGj" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 2; @@ -6428,12 +6457,6 @@ icon_state = "test_floor4" }, /area/almayer/command/cichallway) -"aGm" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/u_m_p) "aGn" = ( /obj/structure/barricade/handrail, /turf/open/floor/almayer{ @@ -6691,6 +6714,19 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering) +"aHx" = ( +/obj/structure/ladder/fragile_almayer{ + height = 2; + id = "kitchen" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 24 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "aHK" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -6734,6 +6770,13 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) +"aHV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "aHX" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -6769,11 +6812,6 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) -"aIh" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) "aIl" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -6844,13 +6882,6 @@ /obj/structure/flora/bush/ausbushes/ppflowers, /turf/open/floor/grass, /area/almayer/living/starboard_garden) -"aIy" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_umbilical) "aIB" = ( /obj/structure/flora/bush/ausbushes/var3/fullgrass, /turf/open/floor/grass, @@ -7077,6 +7108,16 @@ icon_state = "silver" }, /area/almayer/command/cichallway) +"aJB" = ( +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "aJG" = ( /obj/structure/bed/chair/office/dark{ dir = 8; @@ -7373,36 +7414,6 @@ icon_state = "dark_sterile" }, /area/almayer/living/numbertwobunks) -"aLx" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/door_control{ - id = "DeployWorkR"; - name = "Workshop Shutters"; - pixel_x = -7; - pixel_y = -26; - req_one_access_txt = "3;22;2;19;7" - }, -/obj/structure/surface/rack, -/obj/item/rappel_harness{ - pixel_y = 8 - }, -/obj/item/rappel_harness, -/obj/item/rappel_harness{ - pixel_y = -6 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "silverfull" - }, -/area/almayer/hallways/lower/repair_bay) "aLE" = ( /obj/docking_port/stationary/emergency_response/external/hangar_starboard{ dwidth = 8 @@ -7473,11 +7484,6 @@ icon_state = "mono" }, /area/almayer/medical/hydroponics) -"aMf" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_s) "aMg" = ( /obj/structure/sign/safety/intercom{ layer = 2.9; @@ -7615,10 +7621,6 @@ /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"aML" = ( -/obj/item/ammo_casing/bullet, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "aMO" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 26 @@ -7703,6 +7705,18 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha_bravo_shared) +"aNz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "aNI" = ( /obj/structure/machinery/door/airlock/almayer/marine/alpha/tl, /turf/open/floor/almayer{ @@ -7796,18 +7810,6 @@ icon_state = "cargo" }, /area/almayer/command/telecomms) -"aOw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) "aOy" = ( /obj/structure/machinery/light{ dir = 1 @@ -7967,14 +7969,18 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"aPe" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 +"aPc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "mono" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/hallways/upper/stern_hallway) +"aPd" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "aPf" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, @@ -8051,15 +8057,6 @@ icon_state = "emerald" }, /area/almayer/command/cic) -"aPC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) "aPD" = ( /obj/structure/machinery/photocopier, /turf/open/floor/almayer{ @@ -8109,19 +8106,13 @@ /obj/structure/sign/nosmoking_1, /turf/closed/wall/almayer, /area/almayer/squads/alpha) -"aPN" = ( -/obj/structure/ladder{ - height = 2; - id = "ForeStarboardMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = -17 +"aPP" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/s_bow) -"aPO" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/l_a_s) "aPS" = ( /obj/structure/machinery/power/port_gen/pacman, /turf/open/floor/almayer{ @@ -8328,14 +8319,14 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering) -"aRl" = ( -/obj/structure/machinery/door_control/cl/office/door{ - pixel_y = -20 +"aRm" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/l_a_s) "aRo" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -8360,15 +8351,6 @@ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"aRr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/upper/stern_hallway) "aRt" = ( /turf/open/floor/almayer{ dir = 8; @@ -8475,22 +8457,6 @@ }, /turf/open/floor/plating/almayer, /area/almayer/medical/upper_medical) -"aRL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "southcheckpoint"; - name = "\improper Checkpoint Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/hallways/lower/port_midship_hallway) "aRP" = ( /turf/open/floor/almayer{ dir = 1; @@ -8550,6 +8516,14 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) +"aSg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "aSk" = ( /obj/structure/machinery/power/smes/buildable, /obj/structure/machinery/light{ @@ -8559,18 +8533,6 @@ icon_state = "tcomms" }, /area/almayer/engineering/lower/engine_core) -"aSl" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/medical_science) "aSn" = ( /obj/item/stack/sheet/mineral/plastic{ amount = 15 @@ -8701,6 +8663,24 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/operating_room_two) +"aSV" = ( +/obj/structure/sign/poster/blacklight{ + pixel_y = 35 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/reagent_dispensers/beerkeg/alt_dark{ + anchored = 1; + chemical = null; + density = 0; + pixel_x = -7; + pixel_y = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "aTa" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/junction{ @@ -8709,6 +8689,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) +"aTc" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "aTf" = ( /obj/structure/platform{ dir = 8 @@ -8770,6 +8753,12 @@ icon_state = "green" }, /area/almayer/living/offices) +"aTu" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "aTv" = ( /obj/structure/machinery/cm_vending/clothing/marine/bravo{ density = 0; @@ -9128,6 +9117,13 @@ icon_state = "kitchen" }, /area/almayer/living/captain_mess) +"aVw" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "aVC" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/almayer{ @@ -9173,13 +9169,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) -"aVM" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) "aVR" = ( /obj/structure/ladder{ height = 2; @@ -9277,6 +9266,15 @@ icon_state = "red" }, /area/almayer/shipboard/brig/chief_mp_office) +"aWj" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 2; + name = "\improper Officer's Bunk" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/bridgebunks) "aWk" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -9360,6 +9358,26 @@ icon_state = "test_floor4" }, /area/almayer/lifeboat_pumps/south1) +"aWB" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "DeployWorkR"; + name = "\improper Workshop Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/repair_bay) +"aWC" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) "aWD" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -9409,11 +9427,28 @@ }, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) +"aWY" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_p) "aWZ" = ( /obj/structure/pipes/standard/simple/visible, /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/engineering/airmix) +"aXa" = ( +/obj/structure/barricade/handrail{ + dir = 8 + }, +/obj/structure/barricade/handrail, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/hallways/lower/port_midship_hallway) "aXb" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -9433,6 +9468,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"aXd" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "aXe" = ( /turf/open/floor/almayer{ dir = 1; @@ -9479,12 +9520,40 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) +"aXU" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) +"aXV" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig"; + closeOtherId = "brigmaint_n" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/s_bow) "aYd" = ( /obj/structure/dropship_equipment/medevac_system, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/hallways/hangar) +"aYf" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "aYq" = ( /turf/open/floor/almayer{ dir = 6; @@ -9545,6 +9614,10 @@ /obj/structure/safe/cl_office, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"aYN" = ( +/obj/structure/platform_decoration, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "aYQ" = ( /obj/structure/machinery/bioprinter{ stored_metal = 125 @@ -9562,12 +9635,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_two) -"aYU" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "aZe" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -9599,14 +9666,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) -"aZv" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/upper/u_m_p) "aZy" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -9634,12 +9693,19 @@ allow_construction = 0 }, /area/almayer/stair_clone/upper) -"aZI" = ( -/obj/structure/reagent_dispensers/watertank, +"aZJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "green" }, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/squads/req) "aZK" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -9731,6 +9797,20 @@ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_one) +"bak" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "bat" = ( /obj/structure/machinery/door_control{ id = "ARES Mainframe Right"; @@ -9793,14 +9873,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"baW" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) "baX" = ( /obj/structure/machinery/landinglight/ds1/delaythree{ dir = 8 @@ -9812,17 +9884,6 @@ "baZ" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/lower_medical_lobby) -"bba" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/reagent_dispensers/fueltank{ - anchored = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "bbd" = ( /obj/structure/machinery/light{ dir = 4 @@ -9883,6 +9944,16 @@ icon_state = "plating" }, /area/almayer/shipboard/starboard_point_defense) +"bbF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_umbilical) "bbS" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/starboard_point_defense) @@ -10080,6 +10151,19 @@ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_two) +"bcQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/clothing/head/soft/ferret{ + pixel_x = -7 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "bcR" = ( /obj/structure/sink{ pixel_y = 32 @@ -10412,6 +10496,12 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/operating_room_one) +"beA" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/lower/l_m_s) "beE" = ( /obj/structure/platform{ dir = 1 @@ -10497,31 +10587,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"bfb" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) -"bfd" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"bff" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "bfl" = ( /turf/open/floor/almayer{ dir = 5; @@ -10546,9 +10611,6 @@ icon_state = "redcorner" }, /area/almayer/living/cryo_cells) -"bfs" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/lower/l_f_s) "bft" = ( /obj/structure/disposalpipe/junction{ dir = 4 @@ -10641,6 +10703,11 @@ icon_state = "redcorner" }, /area/almayer/squads/alpha) +"bfG" = ( +/turf/open/floor/almayer{ + icon_state = "bluecorner" + }, +/area/almayer/hallways/upper/aft_hallway) "bfJ" = ( /obj/structure/surface/table/almayer, /obj/item/prop/almayer/handheld1, @@ -10660,9 +10727,17 @@ }, /area/almayer/hallways/hangar) "bfO" = ( -/obj/structure/pipes/vents/pump/on, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/photocopier{ + anchored = 0 + }, +/obj/structure/sign/poster/art{ + pixel_y = 32 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "bfV" = ( /obj/structure/machinery/landinglight/ds2{ dir = 8 @@ -10684,12 +10759,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"bgh" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/almayer/hallways/upper/aft_hallway) "bgj" = ( /obj/structure/machinery/landinglight/ds1{ dir = 8 @@ -10904,6 +10973,12 @@ icon_state = "red" }, /area/almayer/squads/alpha) +"bhe" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "bhf" = ( /obj/structure/machinery/light{ dir = 4 @@ -10948,14 +11023,6 @@ icon_state = "plate" }, /area/almayer/living/chapel) -"bhy" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "bhG" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -10999,35 +11066,24 @@ /turf/open/floor/almayer, /area/almayer/hallways/hangar) "bhV" = ( -/obj/structure/ladder/fragile_almayer{ - height = 2; - id = "kitchen" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 24 - }, +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_m_p) -"bhZ" = ( -/obj/structure/surface/table/almayer, -/obj/item/frame/table, -/obj/item/storage/toolbox/electrical, +/area/almayer/maint/hull/lower/l_a_s) +"bib" = ( +/obj/structure/largecrate/random/case, +/obj/structure/machinery/access_button/airlock_exterior, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/maint/hull/upper/u_a_s) -"bij" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, +"bic" = ( +/obj/structure/largecrate/machine/bodyscanner, /turf/open/floor/almayer{ - dir = 8; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_a_s) "biq" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/beaker/large, @@ -11058,6 +11114,13 @@ icon_state = "test_floor4" }, /area/almayer/medical/chemistry) +"biv" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 + }, +/obj/item/frame/rack, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "biy" = ( /obj/structure/pipes/unary/freezer, /obj/structure/machinery/power/apc/almayer{ @@ -11075,22 +11138,6 @@ "biA" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_three) -"biB" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"biC" = ( -/obj/structure/largecrate/random/case, -/obj/structure/machinery/access_button/airlock_exterior, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "biF" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/roller/surgical, @@ -11148,10 +11195,11 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/starboard_garden) -"bjg" = ( -/obj/item/trash/chips, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +"bjh" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "bjk" = ( /obj/structure/machinery/door_control{ id = "perma_lockdown_2"; @@ -11174,14 +11222,6 @@ icon_state = "plate" }, /area/almayer/squads/bravo) -"bjt" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) "bju" = ( /turf/open/floor/almayer{ dir = 1; @@ -11206,6 +11246,12 @@ icon_state = "cargo_arrow" }, /area/almayer/living/offices) +"bjH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "bjQ" = ( /obj/structure/machinery/shower{ dir = 8 @@ -11225,12 +11271,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"bkb" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/upper/aft_hallway) "bkd" = ( /obj/structure/machinery/landinglight/ds2/delaytwo{ dir = 8 @@ -11297,6 +11337,14 @@ "bkA" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/chemistry) +"bkB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/cell_charger, +/obj/item/cell/apc, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "bkE" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -11335,17 +11383,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/lockerroom) -"bkS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "bkT" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -11432,22 +11469,6 @@ icon_state = "plate" }, /area/almayer/living/offices) -"blq" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - access_modified = 1; - dir = 2; - name = "Firing Range"; - req_access = null; - req_one_access_txt = "2;4;7;9;21" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/cryo_cells) "bls" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, @@ -11488,6 +11509,9 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lockerroom) +"bma" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/s_stern) "bmb" = ( /turf/open/floor/almayer{ dir = 8; @@ -11650,18 +11674,6 @@ icon_state = "plating_striped" }, /area/almayer/squads/req) -"bmC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-y" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) "bmD" = ( /turf/open/floor/almayer{ dir = 5; @@ -11819,14 +11831,6 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/bravo) -"bnF" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/upper/u_m_p) "bnH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -11844,6 +11848,12 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_lobby) +"bnO" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) "bnR" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -11920,25 +11930,12 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_four) -"bom" = ( -/obj/structure/sign/safety/south{ - pixel_x = -17; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/hallways/lower/port_midship_hallway) "boq" = ( /obj/structure/bed/chair/comfy/alpha, /turf/open/floor/almayer{ icon_state = "redfull" }, /area/almayer/living/briefing) -"bos" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/lower/s_bow) "boy" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -11981,11 +11978,6 @@ "boL" = ( /turf/open/floor/almayer, /area/almayer/living/starboard_garden) -"boU" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) "boV" = ( /obj/structure/cargo_container/wy/left, /obj/structure/prop/almayer/minigun_crate{ @@ -12169,24 +12161,6 @@ icon_state = "cargo" }, /area/almayer/living/cryo_cells) -"bqc" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"bqg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "bqm" = ( /obj/structure/closet/boxinggloves, /turf/open/floor/almayer{ @@ -12227,6 +12201,10 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) +"bqM" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "bqN" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -12327,12 +12305,6 @@ icon_state = "test_floor5" }, /area/almayer/squads/req) -"brm" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) "brn" = ( /obj/structure/machinery/door/airlock/almayer/marine/bravo/smart, /turf/open/floor/almayer{ @@ -12343,11 +12315,6 @@ /obj/structure/supply_drop/bravo, /turf/open/floor/plating, /area/almayer/squads/req) -"brq" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_midship_hallway) "brr" = ( /obj/structure/machinery/cm_vending/clothing/medic/bravo, /turf/open/floor/almayer{ @@ -12393,6 +12360,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) +"brD" = ( +/obj/structure/closet, +/obj/item/clothing/suit/armor/riot/marine/vintage_riot, +/obj/item/clothing/head/helmet/riot/vintage_riot, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "brH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -12604,22 +12582,6 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"btn" = ( -/obj/item/device/camera{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/structure/surface/table/almayer, -/obj/item/device/camera_film{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/device/camera_film, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) "btr" = ( /obj/structure/closet/boxinggloves, /obj/structure/machinery/light, @@ -12661,6 +12623,9 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"btL" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_f_s) "btM" = ( /obj/effect/spawner/random/toolbox, /obj/structure/pipes/vents/scrubber{ @@ -12680,15 +12645,6 @@ "btO" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"btV" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "btX" = ( /obj/structure/machinery/light{ dir = 4 @@ -12828,21 +12784,24 @@ }, /area/almayer/squads/bravo) "buY" = ( -/obj/structure/stairs{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "bvb" = ( /obj/structure/machinery/light{ dir = 8 @@ -12868,6 +12827,12 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"bvm" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) "bvr" = ( /obj/structure/bed/chair/office/dark, /obj/effect/decal/warning_stripes{ @@ -12888,19 +12853,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_one) -"bvD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/hallways/lower/port_fore_hallway) "bvF" = ( /turf/open/floor/almayer{ dir = 8; @@ -13017,32 +12969,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"bwv" = ( -/obj/structure/disposalpipe/segment, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"bww" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) -"bwG" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_m_s) "bwH" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/crew/alt{ @@ -13053,21 +12979,12 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) -"bwN" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, +"bwM" = ( +/obj/structure/bed/sofa/south/grey/right, /turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"bwP" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer{ - allow_construction = 0 + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/u_f_p) "bwR" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/med_data/laptop{ @@ -13141,14 +13058,12 @@ icon_state = "redfull" }, /area/almayer/living/cryo_cells) -"bxt" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"bxw" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "bxA" = ( /obj/structure/machinery/power/apc/almayer/hardened, /obj/effect/decal/warning_stripes{ @@ -13193,29 +13108,24 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/workshop) -"bxV" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 +"bxO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "mono" }, +/area/almayer/hallways/upper/aft_hallway) +"bxQ" = ( /turf/open/floor/almayer{ dir = 1; - icon_state = "blue" + icon_state = "silvercorner" }, /area/almayer/hallways/upper/aft_hallway) -"bxY" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +"bxZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/lower/s_bow) "byb" = ( /obj/structure/barricade/handrail/medical, /turf/open/floor/almayer{ @@ -13283,15 +13193,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"byt" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "byu" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -13319,15 +13220,23 @@ icon_state = "silver" }, /area/almayer/living/cryo_cells) -"byH" = ( -/obj/structure/bed/sofa/south/white/right{ - pixel_y = 16 +"byD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"byZ" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" + dir = 8; + icon_state = "orange" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/hallways/upper/stern_hallway) "bzg" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -13428,13 +13337,6 @@ icon_state = "test_floor4" }, /area/almayer/command/securestorage) -"bAy" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = -32 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "bAH" = ( /obj/structure/largecrate/random/case, /turf/open/floor/almayer{ @@ -13529,12 +13431,6 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) -"bBc" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "bBd" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -13567,6 +13463,10 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) +"bBp" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "bBu" = ( /obj/structure/surface/rack, /turf/open/floor/almayer{ @@ -13650,6 +13550,21 @@ /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"bBO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 1; + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = -9; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "bBQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -13661,18 +13576,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"bBR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bBU" = ( -/obj/structure/sign/safety/security{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "bBY" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer{ @@ -13710,10 +13613,6 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/briefing) -"bCk" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "bCl" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -13745,18 +13644,6 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"bCv" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "bCx" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -13808,6 +13695,16 @@ }, /turf/open/floor/almayer, /area/almayer/living/cryo_cells) +"bCI" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "Saferoom Channel"; + pixel_x = 27 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "bCM" = ( /obj/structure/machinery/cryopod, /turf/open/floor/almayer{ @@ -13829,12 +13726,6 @@ icon_state = "red" }, /area/almayer/squads/alpha) -"bCR" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "bCS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -13859,11 +13750,6 @@ icon_state = "plate" }, /area/almayer/shipboard/weapon_room) -"bDi" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/upper/aft_hallway) "bDn" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/closed/wall/almayer, @@ -13879,6 +13765,16 @@ icon_state = "sterile_green" }, /area/almayer/medical/lockerroom) +"bDz" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "bDD" = ( /obj/structure/bed/chair{ dir = 8 @@ -13915,6 +13811,10 @@ icon_state = "plate" }, /area/almayer/living/cryo_cells) +"bDN" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "bDO" = ( /turf/open/floor/almayer{ icon_state = "tcomms" @@ -14049,6 +13949,10 @@ icon_state = "redcorner" }, /area/almayer/living/cryo_cells) +"bEe" = ( +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "bEg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -14074,16 +13978,14 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) -"bEk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 +"bEj" = ( +/obj/structure/bed/chair{ + dir = 4 }, /turf/open/floor/almayer{ - dir = 6; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/maint/hull/upper/u_m_s) "bEl" = ( /obj/structure/machinery/computer/supply_drop_console/limited, /turf/closed/wall/almayer, @@ -14122,6 +14024,16 @@ icon_state = "cargo" }, /area/almayer/squads/req) +"bEt" = ( +/obj/structure/noticeboard{ + pixel_x = -10; + pixel_y = 31 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/squads/req) "bEv" = ( /turf/open/floor/almayer{ dir = 1; @@ -14308,12 +14220,16 @@ icon_state = "plate" }, /area/almayer/squads/bravo) -"bET" = ( -/obj/structure/machinery/cm_vending/sorted/medical/bolted, +"bEV" = ( /turf/open/floor/almayer{ - icon_state = "sterile_green_side" + dir = 4; + icon_state = "orangecorner" }, -/area/almayer/medical/lockerroom) +/area/almayer/hallways/lower/starboard_midship_hallway) +"bEW" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "bFa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -14322,6 +14238,19 @@ icon_state = "red" }, /area/almayer/shipboard/weapon_room) +"bFf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "bFj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -14337,21 +14266,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/weapon_room) -"bFl" = ( -/obj/structure/surface/table/almayer, -/obj/item/pizzabox/meat, -/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ - pixel_x = -4; - pixel_y = -3 - }, -/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ - pixel_x = 8; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "bFp" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -14395,15 +14309,6 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"bFB" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "bFC" = ( /obj/structure/machinery/light{ dir = 1 @@ -14426,14 +14331,6 @@ /obj/docking_port/stationary/marine_dropship/almayer_hangar_1, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"bFX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_aft_hallway) "bGa" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -14630,13 +14527,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"bHg" = ( -/obj/structure/bed, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) "bHk" = ( /turf/open/floor/almayer/research/containment/floor2{ dir = 1 @@ -14681,6 +14571,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"bHC" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/item/clothing/suit/chef/classic, +/obj/item/tool/kitchen/knife/butcher, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) "bHD" = ( /obj/structure/ship_ammo/rocket/banshee, /turf/open/floor/almayer{ @@ -14705,6 +14605,13 @@ "bHP" = ( /turf/open/floor/plating/almayer, /area/almayer/shipboard/weapon_room) +"bHU" = ( +/obj/structure/sign/safety/conference_room{ + pixel_x = 14; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "bId" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -14723,11 +14630,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"bIj" = ( -/turf/open/floor/almayer{ - icon_state = "emeraldcorner" - }, -/area/almayer/hallways/lower/port_midship_hallway) "bIn" = ( /obj/structure/machinery/computer/cameras/almayer_network, /obj/structure/surface/table/almayer, @@ -14831,19 +14733,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"bIO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/port_fore_hallway) "bIU" = ( /obj/structure/disposalpipe/segment, /obj/effect/decal/warning_stripes{ @@ -14860,13 +14749,6 @@ icon_state = "orange" }, /area/almayer/squads/bravo) -"bIW" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) "bJe" = ( /obj/structure/surface/table/reinforced/black, /obj/item/explosive/grenade/high_explosive/training, @@ -14910,6 +14792,12 @@ icon_state = "test_floor4" }, /area/almayer/living/auxiliary_officer_office) +"bJr" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "bJt" = ( /turf/closed/wall/almayer, /area/almayer/living/grunt_rnr) @@ -14948,6 +14836,25 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) +"bJK" = ( +/obj/item/storage/toolbox/mechanical{ + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) +"bJN" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_midship_hallway) "bJS" = ( /obj/structure/surface/rack, /obj/item/tool/wrench, @@ -15015,14 +14922,13 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) -"bKk" = ( -/obj/item/tool/wrench{ - pixel_x = -8; - pixel_y = 10 +"bKi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "silver" }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/prop/mech/hydralic_clamp, -/turf/open/floor/almayer, /area/almayer/hallways/lower/repair_bay) "bKm" = ( /obj/structure/closet/crate/freezer{ @@ -15108,23 +15014,17 @@ icon_state = "cargo" }, /area/almayer/living/cryo_cells) -"bKJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"bKG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" }, -/area/almayer/maint/lower/cryo_cells) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "bKM" = ( /obj/effect/landmark/start/marine/medic/charlie, /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"bKP" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) "bKQ" = ( /obj/structure/bed/chair{ dir = 8 @@ -15139,39 +15039,6 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"bLc" = ( -/obj/structure/surface/rack, -/obj/item/roller, -/obj/item/roller, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/clothing/glasses/disco_fever{ - pixel_x = 5; - pixel_y = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) -"bLf" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) -"bLg" = ( -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/upper/stern_hallway) "bLh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -15394,18 +15261,16 @@ icon_state = "green" }, /area/almayer/squads/req) -"bMf" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"bMh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bMi" = ( -/obj/structure/closet/firecloset, /turf/open/floor/almayer{ - icon_state = "cargo" + dir = 4; + icon_state = "green" }, /area/almayer/hallways/upper/aft_hallway) "bMq" = ( @@ -15475,16 +15340,9 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"bME" = ( -/obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) +"bMH" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_a_p) "bMJ" = ( /obj/structure/machinery/light, /obj/structure/machinery/portable_atmospherics/canister/oxygen, @@ -15557,22 +15415,6 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) -"bMV" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_x = -8; - pixel_y = 28 - }, -/obj/structure/sign/safety/intercom{ - pixel_x = 14; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" - }, -/area/almayer/hallways/upper/aft_hallway) "bNa" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black, @@ -15587,12 +15429,6 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) -"bNc" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" - }, -/area/almayer/maint/hull/upper/u_a_s) "bNe" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -15683,14 +15519,6 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) -"bNr" = ( -/obj/structure/sign/safety/storage{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "bNs" = ( /obj/structure/bed/chair/office/light{ dir = 8 @@ -15774,16 +15602,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"bNI" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 - }, +"bNK" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/starboard_umbilical) "bNL" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -15826,15 +15651,11 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) -"bNT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) +"bOb" = ( +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "bOq" = ( /obj/structure/prop/almayer/cannon_cables, /turf/open/floor/almayer{ @@ -15850,21 +15671,23 @@ icon_state = "redcorner" }, /area/almayer/shipboard/weapon_room) -"bOw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/vehiclehangar) "bOx" = ( /obj/structure/machinery/door/airlock/almayer/marine/charlie/tl, /turf/open/floor/almayer{ icon_state = "test_floor4" }, /area/almayer/squads/charlie) +"bOy" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/s_bow) +"bOz" = ( +/obj/structure/surface/table/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) "bOC" = ( /obj/structure/sign/safety/maint{ pixel_x = 8; @@ -16206,6 +16029,25 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) +"bQd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) +"bQr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_aft_hallway) "bQt" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -16251,6 +16093,9 @@ icon_state = "red" }, /area/almayer/shipboard/weapon_room) +"bQF" = ( +/turf/closed/wall/almayer, +/area/almayer/shipboard/panic) "bQG" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black, @@ -16355,20 +16200,11 @@ icon_state = "plate" }, /area/almayer/squads/bravo) -"bRo" = ( +"bRl" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"bRt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/hallways/lower/starboard_fore_hallway) "bRP" = ( /obj/structure/machinery/body_scanconsole, /obj/structure/disposalpipe/segment{ @@ -16579,6 +16415,13 @@ }, /turf/open/floor/plating, /area/almayer/powered) +"bTr" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/maint/hull/lower/l_m_s) "bTt" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 2; @@ -16609,14 +16452,6 @@ icon_state = "bluecorner" }, /area/almayer/squads/delta) -"bTz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_umbilical) "bTA" = ( /turf/open/floor/almayer, /area/almayer/squads/delta) @@ -16629,12 +16464,6 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"bTD" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, -/area/almayer/hallways/upper/aft_hallway) "bTE" = ( /turf/open/floor/almayer{ dir = 4; @@ -16665,6 +16494,12 @@ icon_state = "blue" }, /area/almayer/squads/delta) +"bTL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "bTM" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; @@ -16743,12 +16578,12 @@ icon_state = "plate" }, /area/almayer/living/tankerbunks) -"bTW" = ( -/obj/structure/machinery/light/small, +"bTY" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/hallways/lower/starboard_aft_hallway) "bUa" = ( /obj/structure/closet, /turf/open/floor/almayer{ @@ -16863,17 +16698,21 @@ }, /area/almayer/squads/req) "bUH" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/obj/structure/machinery/door_control/cl/office/door{ + pixel_y = -20 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/hallways/upper/aft_hallway) +"bUJ" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Viewing Room" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_s) "bUN" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -16888,11 +16727,6 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) -"bUQ" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "bUT" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 26 @@ -16926,6 +16760,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) +"bVk" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "Saferoom Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "bVn" = ( /obj/structure/machinery/light{ dir = 8 @@ -16950,14 +16797,6 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"bVr" = ( -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "bVs" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -17006,6 +16845,12 @@ "bVU" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/port_point_defense) +"bVW" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) "bWc" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 2; @@ -17042,12 +16887,6 @@ icon_state = "plate" }, /area/almayer/living/starboard_garden) -"bWg" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "bWh" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 2; @@ -17058,6 +16897,12 @@ icon_state = "test_floor4" }, /area/almayer/powered) +"bWm" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "bWn" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -17097,6 +16942,15 @@ icon_state = "test_floor4" }, /area/almayer/living/chapel) +"bWD" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "bWJ" = ( /obj/structure/machinery/shower{ dir = 4 @@ -17136,14 +16990,6 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"bXh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "bXo" = ( /obj/structure/ladder{ height = 1; @@ -17198,6 +17044,13 @@ icon_state = "green" }, /area/almayer/squads/req) +"bYd" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "bYn" = ( /turf/closed/wall/almayer/outer, /area/almayer/engineering/upper_engineering/port) @@ -17254,9 +17107,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) -"bYW" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/shipboard/panic) "bYY" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -17298,18 +17148,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) -"bZf" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 - }, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "bZi" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ @@ -17330,22 +17168,18 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"bZo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"bZq" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/hallways/upper/stern_hallway) "bZr" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "plating_striped" }, /area/almayer/squads/req) +"bZu" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "bZw" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/command/combat_correspondent) @@ -17376,13 +17210,6 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"bZS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) "bZU" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -17463,19 +17290,6 @@ icon_state = "green" }, /area/almayer/squads/req) -"cap" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"caq" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "car" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 @@ -17504,6 +17318,13 @@ icon_state = "test_floor4" }, /area/almayer/living/cryo_cells) +"caL" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "caM" = ( /obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer{ @@ -17557,17 +17378,14 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_three) -"cbc" = ( -/obj/structure/platform_decoration, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +"caZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/upper/u_a_p) "cbg" = ( /obj/structure/machinery/door/airlock/almayer/command{ dir = 2; @@ -17606,6 +17424,15 @@ icon_state = "silver" }, /area/almayer/command/computerlab) +"cbo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "cbu" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ layer = 1.9 @@ -17620,25 +17447,18 @@ icon_state = "test_floor4" }, /area/almayer/medical/lower_medical_medbay) -"cbK" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/hallways/upper/aft_hallway) -"cbL" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) "cbM" = ( /obj/structure/closet/crate, /obj/item/clothing/glasses/welding, /obj/item/circuitboard, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) +"cbO" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "ccb" = ( /obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer{ @@ -17720,12 +17540,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"ccL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) "ccN" = ( /turf/open/floor/almayer{ dir = 4; @@ -17844,12 +17658,32 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha) +"cek" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cep" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "ceu" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "green" }, /area/almayer/living/starboard_garden) +"cez" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 8; + id = "vehicle_elevator_railing_aux" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "ceC" = ( /obj/structure/prop/almayer/ship_memorial, /turf/open/floor/plating/almayer, @@ -17867,17 +17701,28 @@ "ceE" = ( /turf/closed/wall/almayer, /area/almayer/command/cichallway) +"ceI" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "ceK" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"ceY" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"ceS" = ( +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/turf/open/floor/almayer{ + allow_construction = 0; + icon_state = "plate" + }, +/area/almayer/hallways/upper/aft_hallway) "ceZ" = ( /obj/structure/bed/sofa/south/grey/left, /turf/open/floor/almayer{ @@ -17895,24 +17740,6 @@ icon_state = "red" }, /area/almayer/shipboard/port_missiles) -"cfm" = ( -/obj/structure/flora/pottedplant{ - desc = "Life is underwhelming, especially when you're a potted plant."; - icon_state = "pottedplant_22"; - name = "Jerry"; - pixel_y = 8 - }, -/obj/item/clothing/glasses/sunglasses/prescription{ - pixel_x = -3; - pixel_y = -3 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "cfo" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) @@ -17953,6 +17780,67 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"cgd" = ( +/obj/item/clothing/under/blackskirt{ + desc = "A stylish skirt, in a business-black and red colour scheme."; + name = "liaison's skirt" + }, +/obj/item/clothing/under/suit_jacket/charcoal{ + desc = "A professional black suit and blue tie. A combination popular among government agents and corporate Yes-Men alike."; + name = "liaison's black suit" + }, +/obj/item/clothing/under/suit_jacket/navy{ + desc = "A navy suit and red tie, intended for the Almayer's finest. And accountants."; + name = "liaison's navy suit" + }, +/obj/item/clothing/under/suit_jacket/trainee, +/obj/item/clothing/under/liaison_suit/charcoal, +/obj/item/clothing/under/liaison_suit/blazer, +/obj/item/clothing/suit/storage/snow_suit/liaison, +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/marine/dress, +/obj/item/clothing/glasses/sunglasses/big, +/obj/item/clothing/accessory/blue, +/obj/item/clothing/accessory/red, +/obj/structure/machinery/status_display{ + pixel_x = -32 + }, +/obj/item/clothing/accessory/black, +/obj/item/clothing/accessory/green, +/obj/item/clothing/accessory/gold, +/obj/item/clothing/accessory/purple, +/obj/item/clothing/under/liaison_suit/corporate_formal, +/obj/item/clothing/under/liaison_suit/field, +/obj/item/clothing/under/liaison_suit/ivy, +/obj/item/clothing/under/liaison_suit/blue, +/obj/item/clothing/under/liaison_suit/brown, +/obj/item/clothing/under/liaison_suit/black, +/obj/item/clothing/suit/storage/jacket/marine/vest, +/obj/item/clothing/suit/storage/jacket/marine/vest/grey, +/obj/item/clothing/suit/storage/jacket/marine/vest/tan, +/obj/item/clothing/suit/storage/jacket/marine/bomber, +/obj/item/clothing/suit/storage/jacket/marine/bomber/red, +/obj/item/clothing/suit/storage/jacket/marine/bomber/grey, +/obj/item/clothing/suit/storage/jacket/marine/corporate, +/obj/item/clothing/suit/storage/jacket/marine/corporate/black, +/obj/item/clothing/suit/storage/jacket/marine/corporate/blue, +/obj/item/clothing/suit/storage/jacket/marine/corporate/brown, +/obj/item/clothing/suit/storage/jacket/marine/corporate/formal, +/obj/structure/closet/cabinet{ + storage_capacity = 35 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"cgj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) "cgl" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/shared/charlie_delta{ @@ -17965,6 +17853,13 @@ "cgo" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie_delta_shared) +"cgp" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "cgq" = ( /obj/structure/machinery/door/airlock/almayer/marine/charlie/smart, /turf/open/floor/almayer{ @@ -18039,15 +17934,11 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) "cgU" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "chb" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/sign/safety/maint{ @@ -18076,6 +17967,12 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/charlie_delta_shared) +"chi" = ( +/obj/structure/bed/stool, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "chk" = ( /obj/structure/machinery/door/airlock/almayer/marine/charlie/medic, /turf/open/floor/almayer{ @@ -18117,15 +18014,6 @@ /obj/structure/closet/secure_closet/guncabinet/red/mp_armory_shotgun, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"chC" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) "chL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -18248,16 +18136,13 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha) -"cif" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/item/tank/emergency_oxygen/double, -/turf/open/floor/almayer{ - icon_state = "plate" +"cie" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer{ + allow_construction = 0 }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/hallways/lower/starboard_fore_hallway) "cil" = ( /obj/structure/machinery/light, /obj/structure/sign/safety/waterhazard{ @@ -18309,21 +18194,6 @@ icon_state = "test_floor4" }, /area/almayer/powered) -"ciB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -15 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "ciD" = ( /obj/structure/platform_decoration{ dir = 1 @@ -18332,21 +18202,31 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north2) -"ciI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "ciN" = ( /turf/open/floor/almayer{ dir = 6; icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"ciO" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat{ + pixel_y = 15 + }, +/obj/item/clothing/head/hardhat/dblue{ + pixel_x = -7; + pixel_y = 10 + }, +/obj/item/clothing/head/hardhat{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = 7; + pixel_y = -5 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "ciQ" = ( /obj/structure/sign/safety/fire_haz{ pixel_x = 8; @@ -18354,6 +18234,29 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"ciV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/recharge_station{ + layer = 2.9 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) "cjc" = ( /obj/effect/landmark/start/marine/alpha, /obj/effect/landmark/late_join/alpha, @@ -18487,34 +18390,13 @@ icon_state = "silver" }, /area/almayer/engineering/port_atmos) -"cke" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"ckh" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +"ckq" = ( +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"ckj" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/nanopaste{ - pixel_x = -3; - pixel_y = 14 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/maint/hull/upper/u_a_s) "ckr" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -18522,6 +18404,9 @@ icon_state = "plate" }, /area/almayer/squads/delta) +"ckw" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_m_p) "ckK" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -18531,6 +18416,15 @@ icon_state = "silver" }, /area/almayer/engineering/port_atmos) +"ckO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "ckP" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ @@ -18580,15 +18474,6 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"ckZ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower/engine_core) "cle" = ( /turf/open/floor/almayer{ dir = 4; @@ -18804,13 +18689,6 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"clV" = ( -/obj/structure/machinery/computer/arcade, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/squads/req) "clW" = ( /obj/structure/machinery/cm_vending/clothing/smartgun/delta, /turf/open/floor/almayer{ @@ -18842,17 +18720,17 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"cme" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +"cmb" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "cargo" }, +/area/almayer/maint/hull/upper/u_f_s) +"cmi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/lower/port_midship_hallway) "cml" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -18893,9 +18771,6 @@ icon_state = "green" }, /area/almayer/squads/req) -"cmr" = ( -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "cmv" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_x = -30 @@ -18972,29 +18847,6 @@ icon_state = "silver" }, /area/almayer/command/securestorage) -"cmL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"cmN" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"cmV" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "cna" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -19069,6 +18921,16 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) +"cnx" = ( +/obj/structure/sign/safety/maint{ + pixel_y = 32 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "cnE" = ( /obj/structure/machinery/prop/almayer/computer{ dir = 4; @@ -19094,15 +18956,6 @@ icon_state = "test_floor4" }, /area/almayer/command/computerlab) -"cnI" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/port_umbilical) "cnM" = ( /obj/structure/window/reinforced{ dir = 4; @@ -19133,13 +18986,11 @@ }, /area/almayer/living/port_emb) "cnP" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/cryo{ + pixel_y = -26 }, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "cnR" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -19241,20 +19092,6 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"coo" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "cop" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/tankerbunks) @@ -19305,6 +19142,13 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) +"coQ" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) "coT" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -19348,12 +19192,16 @@ }, /turf/open/floor/almayer, /area/almayer/living/offices) -"cpz" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" +"cpG" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/maint/hull/lower/l_m_s) +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "cpJ" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -19375,22 +19223,56 @@ /obj/structure/window/framed/almayer/hull/hijack_bustable, /turf/open/floor/plating, /area/almayer/squads/req) -"cpQ" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 +"cpU" = ( +/obj/structure/surface/rack{ + desc = "A bunch of metal shelves stacked on top of eachother. Excellent for storage purposes, less so as cover. One of the shelf legs is damaged, resulting in the rack being propped up by what appears to be circuit boards." }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"cqd" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/obj/structure/machinery/light/small{ + dir = 4; + status = 3; + icon_state = "bulb-burned" + }, +/obj/effect/decal/cleanable/blood, +/obj/item/prop{ + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + desc = "A blood bag with a hole in it. The rats must have gotten to it first." + }, +/obj/item/prop{ + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + desc = "A blood bag with a hole in it. The rats must have gotten to it first." + }, +/obj/item/prop{ + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + desc = "A blood bag with a hole in it. The rats must have gotten to it first." + }, +/obj/item/prop{ + icon = 'icons/obj/items/circuitboards.dmi'; + icon_state = "id_mod"; + name = "circuit board"; + desc = "The words \"Cloning Pod\" are scrawled onto it. It appears to be heavily damaged."; + layer = 2.78; + pixel_y = 10; + pixel_x = 8 + }, +/obj/item/prop{ + icon = 'icons/obj/items/circuitboards.dmi'; + icon_state = "id_mod"; + name = "circuit board"; + desc = "The words \"Cloning Scanner\" are scrawled onto it. It appears to be heavily damaged."; + layer = 2.79; + pixel_y = 7; + pixel_x = 8 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" + icon_state = "sterile_green_corner" }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/medical/lower_medical_medbay) "cqm" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/folder/white{ @@ -19404,23 +19286,17 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"cqp" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "cqz" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/black, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"cqH" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 +"cqB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/stern_hallway) "cqJ" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -19447,24 +19323,20 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) +"cqX" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "cqY" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/fancy/cigar/tarbacktube, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) -"crc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_midship_hallway) "crh" = ( /obj/structure/machinery/light{ dir = 1 @@ -19474,15 +19346,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"cri" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) "crp" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/secure_data{ @@ -19493,22 +19356,41 @@ icon_state = "red" }, /area/almayer/shipboard/brig/chief_mp_office) -"crD" = ( -/turf/open/floor/almayer{ +"crr" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "greencorner" + icon_state = "pipe-c" }, -/area/almayer/squads/req) -"csd" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_p) +"crG" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"crX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/vehiclehangar) "csI" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"csT" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "csZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -19534,29 +19416,10 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/bravo) -"cth" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) -"ctp" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "cts" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"ctw" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_umbilical) "ctx" = ( /obj/structure/bed{ icon_state = "abed" @@ -19586,11 +19449,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"ctQ" = ( -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) "ctT" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; @@ -19603,15 +19461,60 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cryo) -"cui" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +"ctV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancesouth"; + name = "\improper South Hangar Podlock" }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/port_fore_hallway) +"ctW" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"ctX" = ( +/obj/structure/reagent_dispensers/fueltank/oxygentank{ + anchored = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/lower/workshop/hangar) +"cua" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"cuk" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "cuq" = ( /obj/structure/machinery/computer/arcade, /turf/open/floor/wood/ship, @@ -19637,19 +19540,6 @@ "cuC" = ( /turf/closed/wall/almayer/outer, /area/almayer/engineering/upper_engineering/starboard) -"cuI" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "cuN" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -19670,39 +19560,23 @@ icon_state = "test_floor4" }, /area/almayer/squads/alpha) -"cva" = ( -/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ - name = "\improper Armourer's Workshop"; - req_access = null - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_s) -"cvb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, +"cvp" = ( +/obj/structure/girder, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/squads/req) -"cvg" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +/area/almayer/maint/hull/upper/u_a_p) +"cvt" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"cvi" = ( -/obj/structure/machinery/vending/hydroseeds, /turf/open/floor/almayer{ + allow_construction = 0; icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"cvx" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/lower/cryo_cells) +/area/almayer/hallways/lower/starboard_midship_hallway) "cvH" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -19715,10 +19589,12 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"cvI" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) +"cvL" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) "cvZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -19728,16 +19604,13 @@ icon_state = "silver" }, /area/almayer/command/cic) -"cwi" = ( -/obj/structure/sign/safety/rewire{ +"cwe" = ( +/obj/structure/sign/safety/distribution_pipes{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "cwo" = ( /obj/structure/largecrate/random/mini/chest{ pixel_x = 4 @@ -19748,14 +19621,28 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) -"cwL" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +"cwy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer{ - icon_state = "orange" + dir = 4; + icon_state = "orangecorner" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/port_aft_hallway) +"cwC" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer{ + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/port_fore_hallway) "cwS" = ( /obj/structure/blocker/invisible_wall, /turf/open/floor/almayer/no_build{ @@ -19781,6 +19668,10 @@ icon_state = "tcomms" }, /area/almayer/command/airoom) +"cxi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "cxk" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, @@ -19791,15 +19682,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/main_office) -"cxF" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/hallways/lower/port_midship_hallway) "cyo" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/almayer{ @@ -19807,39 +19689,6 @@ icon_state = "green" }, /area/almayer/squads/req) -"cyp" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/obj/structure/plasticflaps, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/maint/hull/lower/l_a_p) -"cyv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_p) -"cyL" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/item/storage/firstaid/o2, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) -"cyR" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "cyU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -19854,37 +19703,16 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"czJ" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/intercom{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) -"czN" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "green" +"czH" = ( +/obj/structure/machinery/light, +/obj/structure/sign/safety/security{ + pixel_y = -32 }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"czR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_midship_hallway) "cAm" = ( /obj/structure/bed/chair/office/light{ @@ -19903,15 +19731,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"cAz" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "cAF" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -19924,6 +19743,19 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) +"cAY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/hallways/lower/port_fore_hallway) "cBb" = ( /obj/structure/machinery/light{ dir = 1 @@ -19974,6 +19806,12 @@ icon_state = "silver" }, /area/almayer/command/airoom) +"cBq" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) "cBs" = ( /obj/structure/bed/chair, /obj/effect/decal/warning_stripes{ @@ -19990,27 +19828,43 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/general_equipment) -"cBC" = ( +"cBz" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 2 }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"cBE" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/stack/sheet/mineral/phoron/medium_stack, +/obj/item/stack/sheet/mineral/phoron/medium_stack{ + pixel_y = 10 + }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_aft_hallway) -"cBV" = ( -/obj/structure/closet/firecloset, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/area/almayer/maint/hull/upper/u_a_p) +"cBQ" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"cBR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/lower/l_a_p) "cBZ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -20070,22 +19924,15 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"cCL" = ( -/obj/effect/landmark/crap_item, +"cCG" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"cDd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"cDb" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null - }, -/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 4 }, -/area/almayer/maint/hull/lower/p_bow) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "cDn" = ( /obj/structure/surface/table/almayer, /obj/item/ashtray/glass{ @@ -20113,15 +19960,6 @@ icon_state = "cargo" }, /area/almayer/squads/charlie) -"cDx" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_m_p) "cDC" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -20175,21 +20013,6 @@ icon_state = "plating" }, /area/almayer/command/cic) -"cEA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "cEC" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -20212,6 +20035,35 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/charlie) +"cEL" = ( +/obj/structure/sign/safety/refridgeration{ + pixel_y = -32 + }, +/obj/structure/sign/safety/medical{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) +"cER" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) +"cET" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"cFb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "cFh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -20240,18 +20092,23 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"cFH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"cFL" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"cFN" = ( +/obj/structure/machinery/cm_vending/gear/vehicle_crew, /turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" + icon_state = "cargo" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/vehiclehangar) "cFP" = ( /obj/structure/sign/safety/outpatient{ pixel_x = -17; @@ -20261,42 +20118,47 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"cGd" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_s) -"cGp" = ( -/obj/structure/machinery/cm_vending/clothing/senior_officer{ - pixel_y = 0 +"cGi" = ( +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "mono" + dir = 4; + icon_state = "red" }, -/area/almayer/medical/upper_medical) -"cGA" = ( +/area/almayer/hallways/lower/starboard_midship_hallway) +"cGk" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/upper/stern_hallway) +"cGC" = ( /obj/structure/sign/poster{ - pixel_y = -32 + pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"cGB" = ( -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/lower/l_m_s) -"cGR" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) +/area/almayer/maint/hull/upper/u_f_p) +"cGP" = ( +/obj/item/toy/deck{ + pixel_y = 12 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 32 + }, +/obj/structure/surface/table/woodentable/poor, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "cGV" = ( /turf/open/floor/almayer{ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha_bravo_shared) -"cGY" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "cHc" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/sign/safety/ladder{ @@ -20319,12 +20181,20 @@ icon_state = "plate" }, /area/almayer/squads/bravo) -"cHn" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" +"cHp" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, -/area/almayer/maint/upper/u_m_p) +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/fire_haz{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "cHu" = ( /turf/closed/wall/almayer/research/containment/wall/south, /area/almayer/medical/containment/cell/cl) @@ -20355,14 +20225,26 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"cIm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, +"cIl" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/card{ + dir = 8 + }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/shipboard/panic) +"cIq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/toy/deck, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/living/offices/flight) "cIr" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -20384,11 +20266,6 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"cIO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) "cIW" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ name = "\improper Engineering Engine Monitoring" @@ -20397,6 +20274,17 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/starboard) +"cIZ" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. Someone has written 'open on christmas' in marker on the top." + }, +/obj/item/reagent_container/food/snacks/mre_pack/xmas2, +/obj/item/reagent_container/food/snacks/mre_pack/xmas1, +/obj/item/reagent_container/food/snacks/mre_pack/xmas3, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) "cJh" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -20406,20 +20294,6 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/cells) -"cJm" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair{ - dir = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) -"cJs" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) "cJu" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -20432,19 +20306,17 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) +"cJz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) "cJE" = ( /obj/structure/sign/prop2, /turf/closed/wall/almayer, /area/almayer/shipboard/sea_office) -"cJK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "cJM" = ( /obj/structure/machinery/door_display/research_cell{ dir = 8; @@ -20487,46 +20359,18 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) -"cJV" = ( -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/upper/aft_hallway) -"cKm" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -8 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_y = 12 - }, -/obj/item/clothing/head/militia/bucket{ - pixel_x = 5; - pixel_y = -5 - }, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 8; - pixel_y = -1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "cKL" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "orangecorner" }, /area/almayer/engineering/upper_engineering/port) -"cKW" = ( +"cLk" = ( +/obj/structure/largecrate/random/case, /turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/lower/s_bow) "cLl" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -20557,6 +20401,23 @@ icon_state = "plating" }, /area/almayer/shipboard/stern_point_defense) +"cLt" = ( +/obj/structure/machinery/optable, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) +"cLx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_s) "cLA" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -20581,6 +20442,16 @@ icon_state = "cargo" }, /area/almayer/living/bridgebunks) +"cLT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) "cMb" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm{ @@ -20592,6 +20463,15 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) +"cMk" = ( +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "cMl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -20637,12 +20517,17 @@ icon_state = "orange" }, /area/almayer/living/briefing) -"cNm" = ( +"cNn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/m41a{ + pixel_y = 6 + }, +/obj/item/weapon/gun/rifle/m41a, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/maint/hull/upper/u_m_s) "cNH" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/containment{ id = "Containment Cell 4"; @@ -20658,6 +20543,22 @@ icon_state = "test_floor4" }, /area/almayer/medical/containment/cell/cl) +"cNI" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"cNJ" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/u_m_p) "cNK" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -20690,26 +20591,23 @@ }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) -"cOh" = ( -/obj/item/stool{ - pixel_x = 15; - pixel_y = 6 +"cOu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"cOy" = ( +/obj/item/trash/chips, /turf/open/floor/plating, /area/almayer/maint/lower/constr) -"cOo" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"cOC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/maint/hull/lower/l_a_p) -"cOt" = ( -/obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/hallways/lower/starboard_umbilical) "cOK" = ( /obj/structure/prop/invuln{ desc = "An inflated membrane. This one is puncture proof. Wow!"; @@ -20723,57 +20621,6 @@ icon_state = "outerhull_dir" }, /area/almayer/engineering/upper_engineering/starboard) -"cOY" = ( -/obj/item/clothing/under/blackskirt{ - desc = "A stylish skirt, in a business-black and red colour scheme."; - name = "liaison's skirt" - }, -/obj/item/clothing/under/suit_jacket/charcoal{ - desc = "A professional black suit and blue tie. A combination popular among government agents and corporate Yes-Men alike."; - name = "liaison's black suit" - }, -/obj/item/clothing/under/suit_jacket/navy{ - desc = "A navy suit and red tie, intended for the Almayer's finest. And accountants."; - name = "liaison's navy suit" - }, -/obj/item/clothing/under/suit_jacket/trainee, -/obj/item/clothing/under/liaison_suit/charcoal, -/obj/item/clothing/under/liaison_suit/blazer, -/obj/item/clothing/suit/storage/snow_suit/liaison, -/obj/item/clothing/gloves/black, -/obj/item/clothing/gloves/marine/dress, -/obj/item/clothing/glasses/sunglasses/big, -/obj/item/clothing/accessory/blue, -/obj/item/clothing/accessory/red, -/obj/structure/machinery/status_display{ - pixel_x = -32 - }, -/obj/item/clothing/accessory/black, -/obj/item/clothing/accessory/green, -/obj/item/clothing/accessory/gold, -/obj/item/clothing/accessory/purple, -/obj/item/clothing/under/liaison_suit/corporate_formal, -/obj/item/clothing/under/liaison_suit/field, -/obj/item/clothing/under/liaison_suit/ivy, -/obj/item/clothing/under/liaison_suit/blue, -/obj/item/clothing/under/liaison_suit/brown, -/obj/item/clothing/under/liaison_suit/black, -/obj/item/clothing/suit/storage/jacket/marine/vest, -/obj/item/clothing/suit/storage/jacket/marine/vest/grey, -/obj/item/clothing/suit/storage/jacket/marine/vest/tan, -/obj/item/clothing/suit/storage/jacket/marine/bomber, -/obj/item/clothing/suit/storage/jacket/marine/bomber/red, -/obj/item/clothing/suit/storage/jacket/marine/bomber/grey, -/obj/item/clothing/suit/storage/jacket/marine/corporate, -/obj/item/clothing/suit/storage/jacket/marine/corporate/black, -/obj/item/clothing/suit/storage/jacket/marine/corporate/blue, -/obj/item/clothing/suit/storage/jacket/marine/corporate/brown, -/obj/item/clothing/suit/storage/jacket/marine/corporate/formal, -/obj/structure/closet/cabinet{ - storage_capacity = 35 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) "cPg" = ( /obj/structure/sign/safety/north{ pixel_x = 32; @@ -20788,10 +20635,14 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"cPj" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/p_bow) +"cPy" = ( +/obj/item/tool/minihoe{ + pixel_x = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "cPK" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -20804,23 +20655,15 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"cPP" = ( -/obj/structure/sign/poster/pinup{ - pixel_x = -30 - }, -/obj/structure/sign/poster/hunk{ - pixel_x = -25; - pixel_y = 10 - }, -/obj/item/trash/buritto, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 +"cPV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/lower/vehiclehangar) "cQc" = ( /turf/open/floor/almayer{ dir = 1; @@ -20859,6 +20702,11 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/lobby) +"cQO" = ( +/turf/open/floor/almayer{ + icon_state = "greencorner" + }, +/area/almayer/hallways/upper/aft_hallway) "cQW" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -20915,6 +20763,15 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) +"cSi" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "cSk" = ( /obj/structure/machinery/door/window/southleft, /turf/open/floor/almayer{ @@ -20922,6 +20779,18 @@ icon_state = "silver" }, /area/almayer/command/securestorage) +"cSl" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/rods/plasteel{ + amount = 36 + }, +/obj/item/stack/catwalk{ + amount = 60; + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "cSm" = ( /obj/structure/sign/safety/ladder{ pixel_x = 8; @@ -20943,30 +20812,6 @@ icon_state = "red" }, /area/almayer/shipboard/starboard_missiles) -"cSH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"cSM" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) -"cSP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) "cSQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -20984,6 +20829,18 @@ icon_state = "plate" }, /area/almayer/living/captain_mess) +"cTb" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"cTc" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "cTf" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -20993,6 +20850,12 @@ icon_state = "cargo" }, /area/almayer/squads/req) +"cTm" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silvercorner" + }, +/area/almayer/hallways/lower/repair_bay) "cTC" = ( /obj/structure/machinery/vending/walkman, /turf/open/floor/almayer{ @@ -21000,59 +20863,24 @@ icon_state = "green" }, /area/almayer/living/offices) -"cTM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/mess) -"cTX" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/cryo_cells) -"cUl" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" +"cUf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/maint/hull/upper/s_bow) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "cVb" = ( /obj/structure/machinery/sentry_holder/almayer, /turf/open/floor/almayer{ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) -"cVf" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "cVq" = ( /obj/structure/machinery/power/apc/almayer/hardened{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/command/corporateliaison) -"cVt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_fore_hallway) "cVw" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -21073,47 +20901,12 @@ icon_state = "plate" }, /area/almayer/living/gym) -"cVT" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) "cVZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"cWb" = ( -/obj/structure/largecrate/random/case/double, +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/stern) -"cWm" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/adv/empty, -/obj/item/storage/firstaid/adv/empty, -/obj/item/storage/firstaid/adv/empty, -/obj/structure/sign/safety/med_life_support{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/lower_medical_medbay) -"cWo" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/l_m_s) "cWr" = ( /obj/structure/machinery/photocopier{ density = 0; @@ -21166,6 +20959,16 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) +"cWt" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "InnerShutter"; + name = "\improper Saferoom Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/panic) "cWv" = ( /turf/open/floor/almayer{ dir = 8; @@ -21191,17 +20994,78 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"cXd" = ( -/obj/structure/surface/rack, -/obj/item/stack/cable_coil, -/obj/item/attachable/flashlight/grip, -/obj/item/ammo_box/magazine/l42a{ - pixel_y = 14 +"cWF" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_one_access = null; + req_one_access_txt = "2;7" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_a_p) +"cWP" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/crate, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0 }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_m_s) +"cXh" = ( +/obj/structure/prop/almayer/computers/sensor_computer3, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "cXi" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -21217,12 +21081,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"cXm" = ( -/obj/structure/largecrate/supply/supplies/mre, +"cXy" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/lower/l_f_s) "cXC" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -21262,26 +21126,18 @@ }, /area/almayer/medical/upper_medical) "cXX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "cXY" = ( /obj/item/stack/catwalk, /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"cYo" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) "cYu" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -21314,9 +21170,6 @@ icon_state = "test_floor4" }, /area/almayer/lifeboat_pumps/south1) -"cZe" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_f_s) "cZh" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -21341,35 +21194,20 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"cZp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"cZo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"cZB" = ( -/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/lower/starboard_umbilical) -"cZI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"cZO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/lower/starboard_aft_hallway) +"cZw" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "cZV" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/fancy/cigarettes/wypacket, @@ -21405,15 +21243,31 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"cZX" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/lower/starboard_umbilical) +"dan" = ( +/obj/structure/ladder{ + height = 2; + id = "cicladder4" + }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/medical_science) "daz" = ( /turf/closed/wall/almayer/white/hull, /area/almayer/command/airoom) -"daF" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"daA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "dbc" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -21437,6 +21291,13 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"dbj" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/maint/hull/upper/u_a_p) "dbn" = ( /obj/structure/surface/table/almayer, /obj/item/spacecash/c200{ @@ -21496,12 +21357,18 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"dbX" = ( +"dbH" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" + icon_state = "mono" }, -/area/almayer/maint/upper/mess) +/area/almayer/hallways/lower/vehiclehangar) "dcd" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -21529,28 +21396,18 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"dcx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) "dcy" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "red" }, /area/almayer/shipboard/brig/perma) -"dcT" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 +"dcS" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 }, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"dcZ" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) +/area/almayer/hallways/lower/port_fore_hallway) "ddf" = ( /obj/structure/machinery/portable_atmospherics/canister/air, /turf/open/floor/almayer{ @@ -21563,12 +21420,6 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"ddp" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "ddw" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/sign/safety/terminal{ @@ -21578,39 +21429,31 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop/hangar) -"ddx" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "ddz" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) -"ddF" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"ddC" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_a_p) -"ddL" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) "ddM" = ( /obj/structure/disposalpipe/segment, /turf/closed/wall/almayer, /area/almayer/engineering/lower/workshop/hangar) +"ddN" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Tool Closet" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_m_s) "deg" = ( /obj/structure/platform_decoration{ dir = 1 @@ -21619,23 +21462,26 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south2) -"deq" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"deA" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -1; - pixel_y = 13 +"dej" = ( +/obj/structure/machinery/door_control{ + id = "OuterShutter"; + name = "Outer Shutter"; + pixel_x = 5; + pixel_y = -2; + req_one_access_txt = "1;3" }, -/obj/structure/sign/safety/water{ - pixel_x = -17 +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/door_control{ + id = "OfficeSafeRoom"; + name = "Office Safe Room"; + pixel_x = 5; + pixel_y = 5; + req_one_access_txt = "1;3" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/u_m_s) +/area/almayer/shipboard/panic) "deD" = ( /obj/structure/machinery/prop/almayer/CICmap{ pixel_x = -5 @@ -21643,10 +21489,6 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer, /area/almayer/command/cic) -"deF" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "deT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -21659,6 +21501,12 @@ icon_state = "emerald" }, /area/almayer/living/port_emb) +"deW" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) "dfa" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, @@ -21686,12 +21534,38 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) +"dfv" = ( +/obj/structure/closet/crate/freezer{ + desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." + }, +/obj/item/storage/beer_pack, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/item/reagent_container/food/drinks/cans/beer, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) "dfC" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"dfE" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_y = 14 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/upper_medical) "dfO" = ( /obj/structure/machinery/medical_pod/bodyscanner{ dir = 8 @@ -21734,12 +21608,17 @@ icon_state = "red" }, /area/almayer/shipboard/brig/chief_mp_office) -"dgP" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +"dgL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/upper/aft_hallway) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "dha" = ( /turf/open/floor/almayer{ icon_state = "plate" @@ -21757,6 +21636,11 @@ icon_state = "plating_striped" }, /area/almayer/shipboard/brig/execution) +"dhe" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "dho" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -21770,19 +21654,15 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"dhp" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +"dhB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/area/almayer/maint/hull/upper/u_a_p) -"dhQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/hallways/upper/aft_hallway) "dhR" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; @@ -21793,19 +21673,15 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"div" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddernortheast"; - name = "\improper North East Ladders Shutters" - }, +"diu" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 4; + icon_state = "greencorner" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/port_midship_hallway) +"diy" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/s_stern) "diz" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ id_tag = "Boat1-D4"; @@ -21816,6 +21692,12 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/port) +"diG" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/area/almayer/hallways/lower/port_midship_hallway) "diJ" = ( /obj/structure/window/reinforced{ dir = 8; @@ -21841,13 +21723,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/lobby) -"djd" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "djQ" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -21867,21 +21742,23 @@ icon_state = "plate" }, /area/almayer/shipboard/starboard_point_defense) +"djW" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "OfficeSafeRoom"; + name = "\improper Office Safe Room" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "dka" = ( /obj/structure/machinery/optable, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_four) -"dkj" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom/alamo{ - layer = 2.9 - }, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/living/offices/flight) "dkq" = ( /obj/structure/machinery/door_control{ id = "hangarentrancenorth"; @@ -21899,36 +21776,10 @@ icon_state = "red" }, /area/almayer/living/briefing) -"dkt" = ( -/obj/structure/surface/rack, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0; - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0; - pixel_x = -6; - pixel_y = -3 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0; - pixel_x = 5; - pixel_y = 9 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0; - pixel_x = 5; - pixel_y = -3 - }, -/obj/structure/noticeboard{ - desc = "The note is haphazardly attached to the cork board by what looks like a bent firing pin. 'The order has come in to perform end of life service checks on all L42A service rifles, any that are defective are to be dis-assembled and packed into a crate and sent to to the cargo hold. L42A service rifles that are in working order after servicing, are to be locked in secure cabinets ready to be off-loaded at Chinook. Scheduled end of life service for the L42A - Complete'"; - pixel_y = 29 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) +"dkv" = ( +/obj/structure/largecrate/supply/supplies/tables_racks, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "dkO" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_Down2"; @@ -21945,12 +21796,16 @@ allow_construction = 0 }, /area/almayer/stair_clone/upper) -"dkP" = ( +"dkR" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/lower/p_bow) "dkX" = ( /obj/structure/bed/chair/comfy/delta, /obj/effect/decal/cleanable/dirt, @@ -21958,18 +21813,31 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) +"dle" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "dll" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ icon_state = "orangefull" }, /area/almayer/living/briefing) -"dlT" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "mono" +"dlt" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 }, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"dlW" = ( +/obj/structure/bed/sofa/south/grey{ + pixel_y = 12 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "dmg" = ( /obj/structure/machinery/vending/coffee, /obj/structure/sign/safety/coffee{ @@ -21987,6 +21855,21 @@ icon_state = "blue" }, /area/almayer/command/cichallway) +"dmz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/machinery/light, +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ + req_access = null; + req_one_access = null; + req_one_access_txt = "7;23;27;102" + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) "dmA" = ( /turf/open/floor/almayer, /area/almayer/living/synthcloset) @@ -21998,17 +21881,6 @@ icon_state = "cargo" }, /area/almayer/squads/req) -"dmF" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/squads/req) "dmR" = ( /obj/effect/glowshroom, /obj/effect/glowshroom{ @@ -22046,12 +21918,17 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) -"dni" = ( -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 +"dnh" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/turf/open/floor/almayer, /area/almayer/hallways/upper/aft_hallway) "dnm" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/intelligence_officer, @@ -22086,13 +21963,6 @@ icon_state = "mono" }, /area/almayer/engineering/upper_engineering/starboard) -"dnP" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) "dnS" = ( /obj/structure/safe, /turf/open/floor/almayer{ @@ -22100,23 +21970,13 @@ icon_state = "silver" }, /area/almayer/command/securestorage) -"dnZ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, +"dnW" = ( +/obj/item/reagent_container/food/snacks/wrapped/barcardine, +/obj/structure/surface/rack, /turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" + icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) -"dod" = ( -/obj/structure/closet/crate/trashcart, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/maint/hull/upper/p_stern) "dof" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/engidoor{ name = "\improper Upper Engineering" @@ -22146,6 +22006,12 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"doM" = ( +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "doP" = ( /obj/structure/disposaloutlet{ density = 0; @@ -22167,6 +22033,12 @@ /obj/structure/surface/rack, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) +"doX" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "dpo" = ( /obj/structure/machinery/light{ dir = 1 @@ -22182,27 +22054,20 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north1) -"dpA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) -"dpN" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 +"dpD" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"dpM" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" +/obj/structure/sign/safety/water{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/hallways/upper/stern_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "dpO" = ( /obj/structure/machinery/cm_vending/clothing/marine/delta{ density = 0; @@ -22213,12 +22078,15 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/delta) -"dpS" = ( +"dpP" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/almayer{ dir = 4; - icon_state = "bluecorner" + icon_state = "blue" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/port_midship_hallway) "dqb" = ( /obj/structure/sign/safety/security{ pixel_x = -16 @@ -22286,16 +22154,18 @@ icon_state = "silver" }, /area/almayer/engineering/port_atmos) -"dro" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/bomb_supply, -/obj/effect/spawner/random/bomb_supply, +"drQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/lower/l_a_p) "drT" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -22316,6 +22186,20 @@ icon_state = "sterile_green" }, /area/almayer/medical/hydroponics) +"dsp" = ( +/obj/structure/sign/safety/bathunisex{ + pixel_x = -18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) +"dsq" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "dsA" = ( /obj/effect/decal/cleanable/blood, /turf/open/floor/almayer{ @@ -22323,11 +22207,6 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/execution) -"dsY" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "dtH" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -22416,14 +22295,18 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"duR" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +"duP" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/lower/engine_core) "duT" = ( /obj/structure/bed, /obj/structure/machinery/flasher{ @@ -22444,6 +22327,20 @@ icon_state = "plate" }, /area/almayer/squads/alpha) +"duX" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/panic) "dvg" = ( /obj/structure/reagent_dispensers/fueltank/custom, /obj/structure/sign/safety/chem_lab{ @@ -22454,6 +22351,14 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/chemistry) +"dvi" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "dvl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -22473,31 +22378,60 @@ icon_state = "cargo" }, /area/almayer/living/cryo_cells) +"dvx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/u_m_p) "dvD" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) -"dvZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/area/almayer/maint/hull/lower/l_m_p) +"dvH" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 4; + icon_state = "orange" }, -/area/almayer/maint/upper/mess) -"dwj" = ( -/obj/effect/step_trigger/clone_cleaner, +/area/almayer/hallways/lower/starboard_midship_hallway) +"dvK" = ( /obj/structure/machinery/light{ - dir = 4 + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/starboard_fore_hallway) +"dvN" = ( +/obj/structure/machinery/vending/coffee, +/obj/item/toy/bikehorn/rubberducky{ + desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!"; + name = "Quackers"; + pixel_x = 5; + pixel_y = 17 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "dwl" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/living/briefing) +"dwn" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "dwr" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/centrifuge{ @@ -22525,15 +22459,20 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/starboard) -"dwJ" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +"dwU" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, /turf/open/floor/almayer{ - dir = 6; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/lower/l_m_s) +"dwX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "dxu" = ( /obj/structure/sink{ dir = 1; @@ -22559,17 +22498,16 @@ allow_construction = 0 }, /area/almayer/stair_clone/upper) -"dxJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"dxH" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "orangecorner" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/upper/stern_hallway) "dxK" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -22638,15 +22576,6 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"dyq" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_umbilical) "dyx" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 2; @@ -22664,9 +22593,10 @@ icon_state = "plating" }, /area/almayer/squads/req) -"dyJ" = ( +"dyG" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "blue" }, /area/almayer/hallways/upper/aft_hallway) "dyK" = ( @@ -22687,20 +22617,64 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/general_equipment) -"dzX" = ( -/obj/structure/sign/safety/water{ - pixel_x = -17 +"dzS" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0; + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0; + pixel_x = -6; + pixel_y = -3 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0; + pixel_x = 5; + pixel_y = 9 + }, +/obj/item/ammo_magazine/rifle/l42a/ap{ + current_rounds = 0; + pixel_x = 5; + pixel_y = -3 + }, +/obj/structure/noticeboard{ + desc = "The note is haphazardly attached to the cork board by what looks like a bent firing pin. 'The order has come in to perform end of life service checks on all L42A service rifles, any that are defective are to be dis-assembled and packed into a crate and sent to to the cargo hold. L42A service rifles that are in working order after servicing, are to be locked in secure cabinets ready to be off-loaded at Chinook. Scheduled end of life service for the L42A - Complete'"; + pixel_y = 29 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) +"dzU" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) +"dzV" = ( +/obj/structure/machinery/light, +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"dAm" = ( +/area/almayer/hallways/lower/port_midship_hallway) +"dAn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/starboard_fore_hallway) "dAq" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ @@ -22713,24 +22687,6 @@ icon_state = "test_floor4" }, /area/almayer/squads/bravo) -"dAr" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 14; - pixel_y = -25 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/upper/stern_hallway) -"dAA" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "dAQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -22753,20 +22709,6 @@ icon_state = "plate" }, /area/almayer/command/cic) -"dBg" = ( -/obj/structure/stairs{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/port_midship_hallway) "dBj" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -22838,21 +22780,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"dBR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/light, -/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage{ - req_access = null; - req_one_access = null; - req_one_access_txt = "7;23;27;102" - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) "dBS" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -22863,25 +22790,23 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"dCb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, +"dBW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 + dir = 5 }, /turf/open/floor/almayer{ - dir = 8; icon_state = "silver" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/repair_bay) +"dCb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "dCe" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -22898,6 +22823,15 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cells) +"dCf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_umbilical) "dCr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -22919,13 +22853,6 @@ icon_state = "plate" }, /area/almayer/command/cichallway) -"dCz" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wrench{ - pixel_y = 2 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "dCD" = ( /obj/structure/sign/nosmoking_2{ pixel_x = 32 @@ -22943,29 +22870,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"dCM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_aft_hallway) -"dDc" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, +"dDd" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"dDo" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_m_p) "dDp" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -22989,12 +22904,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"dDJ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) "dDL" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/research/main_terminal{ @@ -23021,12 +22930,24 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"dDT" = ( -/obj/structure/largecrate/random/case/small, +"dDQ" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters, +/obj/item/tool/shovel/snow, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/stern) +/area/almayer/maint/hull/lower/l_f_s) +"dDR" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -6; + pixel_y = 7 + }, +/obj/item/tool/pen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) "dEm" = ( /obj/structure/machinery/power/apc/almayer, /obj/effect/decal/warning_stripes{ @@ -23048,16 +22969,6 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"dEo" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) -"dEp" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/cryo_cells) "dEt" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 2; @@ -23084,23 +22995,6 @@ icon_state = "cargo" }, /area/almayer/lifeboat_pumps/north2) -"dEK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"dEL" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) "dEQ" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/tabasco, @@ -23108,6 +23002,12 @@ icon_state = "redfull" }, /area/almayer/living/briefing) +"dER" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "dEX" = ( /obj/structure/closet/secure_closet/guncabinet/riot_control, /obj/item/weapon/shield/riot, @@ -23118,40 +23018,33 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"dFd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) "dFk" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "redcorner" }, /area/almayer/command/lifeboat) +"dFr" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "dFF" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21" }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"dFL" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"dFM" = ( +"dFH" = ( /obj/structure/machinery/light{ dir = 8 }, +/obj/structure/bed/chair/bolted, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/shipboard/brig/perma) "dFR" = ( /turf/open/floor/almayer{ dir = 9; @@ -23165,21 +23058,18 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/main_office) "dFW" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/cell_charger, -/obj/item/cell/apc, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/maint/hull/lower/l_f_p) -"dGg" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/upper/u_a_s) "dGl" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_AresUp"; @@ -23217,19 +23107,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"dGP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_f_s) "dGU" = ( /obj/structure/sign/poster/propaganda{ pixel_x = -27 @@ -23271,6 +23148,13 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"dHS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "dHV" = ( /obj/structure/machinery/light{ dir = 1 @@ -23305,6 +23189,15 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"dIs" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "dID" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -23336,42 +23229,29 @@ icon_state = "test_floor4" }, /area/almayer/squads/alpha) -"dJe" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/stack/sheet/mineral/phoron/medium_stack, -/obj/item/stack/sheet/mineral/phoron/medium_stack{ - pixel_y = 10 - }, +"dJm" = ( +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) -"dJy" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/area/almayer/maint/hull/lower/l_a_s) +"dJs" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "northcheckpoint"; + name = "\improper Checkpoint Shutters" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "redfull" }, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/hallways/lower/starboard_midship_hallway) "dJF" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/upper/stern_hallway) -"dJG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/maint/hull/lower/l_a_s) "dJI" = ( /obj/structure/bed/chair/comfy/bravo{ dir = 4 @@ -23389,12 +23269,18 @@ dir = 4 }, /area/almayer/medical/containment/cell/cl) -"dKD" = ( +"dKq" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/vehiclehangar) "dKK" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -23409,26 +23295,29 @@ /turf/closed/wall/almayer/outer, /area/almayer/engineering/airmix) "dKO" = ( -/obj/structure/machinery/door_control{ - id = "panicroomback"; - name = "\improper Safe Room"; - pixel_x = 25; - req_one_access_txt = "3" - }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "emeraldcorner" }, -/area/almayer/shipboard/panic) +/area/almayer/hallways/lower/port_midship_hallway) "dKS" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/area/almayer/hallways/lower/starboard_umbilical) +"dLb" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "dLc" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, @@ -23459,6 +23348,27 @@ icon_state = "plating_striped" }, /area/almayer/shipboard/sea_office) +"dLx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "dLz" = ( /obj/structure/closet/firecloset, /turf/open/floor/almayer{ @@ -23512,6 +23422,21 @@ }, /turf/open/floor/plating, /area/almayer/living/cryo_cells) +"dNw" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/aft_hallway) +"dNy" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/upper/u_f_p) "dNM" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/tabasco{ @@ -23522,13 +23447,6 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"dNW" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) "dNZ" = ( /obj/structure/machinery/light{ dir = 1 @@ -23560,53 +23478,37 @@ icon_state = "plate" }, /area/almayer/living/captain_mess) -"dOG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"dON" = ( -/obj/item/stack/cable_coil{ - pixel_x = 1; - pixel_y = 10 - }, -/obj/item/trash/pistachios, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/hallways/lower/repair_bay) -"dOW" = ( -/turf/open/floor/almayer{ - icon_state = "silver" +"dOr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/upper/aft_hallway) -"dPd" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - pixel_x = 5; - pixel_y = 10 +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"dOX" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_f_p) -"dPk" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 +/area/almayer/maint/hull/upper/u_a_s) +"dPf" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + access_modified = 1; + dir = 2; + name = "Firing Range"; + req_access = null; + req_one_access_txt = "2;4;7;9;21" }, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, -/area/almayer/hallways/lower/starboard_umbilical) -"dPl" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - dir = 4; - icon_state = "red" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/living/cryo_cells) "dPm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -23615,14 +23517,6 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"dPq" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/cardboard{ - amount = 50; - pixel_x = 4 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "dPC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -23639,11 +23533,16 @@ }, /area/almayer/engineering/lower/engine_core) "dPO" = ( -/obj/structure/bed/chair{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "dPQ" = ( /obj/structure/surface/table/almayer, /obj/item/tool/pen, @@ -23714,12 +23613,13 @@ icon_state = "orangecorner" }, /area/almayer/engineering/lower) -"dQV" = ( -/obj/structure/machinery/light{ - dir = 1 +"dRf" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/u_m_p) "dRh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -23730,19 +23630,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) -"dRo" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/bridge{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/west{ - pixel_y = 32 - }, +"dRm" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 8; + icon_state = "orange" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/upper/stern_hallway) "dRs" = ( /obj/structure/closet/emcloset, /turf/open/floor/almayer{ @@ -23758,6 +23651,20 @@ icon_state = "red" }, /area/almayer/squads/alpha) +"dRy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancenorth"; + name = "\improper North Hangar Podlock" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "dRD" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/airlock/almayer/security{ @@ -23770,6 +23677,20 @@ icon_state = "test_floor4" }, /area/almayer/living/offices/flight) +"dRE" = ( +/obj/structure/largecrate/random, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) +"dRN" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "dRP" = ( /obj/structure/bed/chair/comfy/orange, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -23787,18 +23708,24 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"dSm" = ( -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +"dRV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/lower/port_umbilical) +"dSg" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "vehicle1door"; + name = "Vehicle Bay One" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/hallways/lower/vehiclehangar) "dSp" = ( /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" @@ -23809,6 +23736,29 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"dSC" = ( +/obj/structure/largecrate/random/secure, +/obj/item/weapon/baseballbat/metal{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_y = 5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) +"dSI" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "dSJ" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -23831,16 +23781,19 @@ icon_state = "rasputin3" }, /area/almayer/powered/agent) -"dTd" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddernortheast"; - name = "\improper North East Ladders Shutters" +"dTl" = ( +/obj/structure/stairs{ + dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/port_midship_hallway) "dTn" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -23871,6 +23824,15 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"dUA" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "dUE" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -23936,21 +23898,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"dVH" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "dVO" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/emails{ @@ -23960,59 +23907,39 @@ icon_state = "plate" }, /area/almayer/living/offices) -"dVR" = ( -/obj/structure/ladder{ - height = 2; - id = "AftPortMaint" - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/u_a_p) -"dWc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "dWg" = ( /obj/effect/landmark/start/cargo, /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"dWw" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" +"dWk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/living/basketball) -"dWA" = ( -/obj/structure/sign/poster{ - pixel_y = 32 +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access_txt = "7;23;27" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/obj/structure/platform{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"dWJ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/sign/safety/terminal{ + pixel_y = 32 }, -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/sign/safety/fire_haz{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" }, -/obj/structure/machinery/light/small, +/area/almayer/hallways/lower/repair_bay) +"dWw" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "bluecorner" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/living/basketball) "dWX" = ( /obj/structure/machinery/light{ dir = 8 @@ -24021,12 +23948,18 @@ icon_state = "mono" }, /area/almayer/engineering/upper_engineering/starboard) -"dXb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"dXc" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/tool/pen, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/lower/cryo_cells) +/area/almayer/maint/hull/lower/l_a_p) "dXd" = ( /obj/item/storage/fancy/cigarettes/kpack, /obj/structure/surface/rack, @@ -24037,6 +23970,10 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) +"dXm" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "dXo" = ( /obj/structure/surface/table/almayer, /obj/item/device/taperecorder, @@ -24062,14 +23999,6 @@ icon_state = "plate" }, /area/almayer/squads/req) -"dXH" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/item/device/camera_film{ - pixel_x = 4; - pixel_y = -2 - }, -/turf/open/floor/almayer, -/area/almayer/squads/charlie_delta_shared) "dXI" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ name = "\improper Exterior Airlock"; @@ -24079,6 +24008,17 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/stern_point_defense) +"dXU" = ( +/obj/item/tool/warning_cone{ + pixel_x = -20; + pixel_y = 18 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "dXV" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = 16 @@ -24098,19 +24038,15 @@ icon_state = "blue" }, /area/almayer/living/pilotbunks) -"dYb" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +"dYa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"dYc" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/pipes/vents/pump/on, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/hallways/lower/starboard_midship_hallway) "dYu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -24128,6 +24064,13 @@ icon_state = "orange" }, /area/almayer/engineering/lower) +"dYM" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "dYR" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/reagentgrinder{ @@ -24135,30 +24078,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"dYU" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/cobweb{ - dir = 8; - plane = -6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/item/reagent_container/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner" - }, -/obj/item/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/almayer{ - dir = 4; - icon_state = "sterile_green_corner" - }, -/area/almayer/medical/lower_medical_medbay) "dYX" = ( /obj/structure/machinery/door/airlock/almayer/marine/bravo{ dir = 1 @@ -24189,28 +24108,23 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"dZP" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" +"dZT" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/almayer/hallways/upper/aft_hallway) -"dZR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/stern_hallway) -"dZZ" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/effect/spawner/random/tool, +/area/almayer/maint/hull/lower/l_m_s) +"ead" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "orangecorner" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/hallways/upper/stern_hallway) "eaf" = ( /obj/structure/machinery/cm_vending/clothing/military_police{ density = 0; @@ -24241,12 +24155,6 @@ dir = 4 }, /area/almayer/medical/containment/cell) -"ear" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/u_m_p) "eas" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24263,33 +24171,10 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) -"eaz" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "ebd" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"ebf" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. There is a note attached, it reads: Do not open, property of Pvt. Mendoza." - }, -/obj/item/storage/beer_pack, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/item/reagent_container/food/drinks/cans/beer, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "ebn" = ( /obj/structure/sign/safety/airlock{ pixel_x = 15; @@ -24324,35 +24209,36 @@ icon_state = "sterile_green_side" }, /area/almayer/shipboard/brig/surgery) -"ebI" = ( -/obj/item/clothing/shoes/red, +"ebz" = ( +/obj/structure/closet/emcloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) +"ebL" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/item/reagent_container/food/snacks/tomatomeat, +/obj/item/reagent_container/food/snacks/tomatomeat, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/lower/l_m_p) "ebN" = ( /turf/closed/wall/almayer/white/reinforced, /area/almayer/command/airoom) -"ebV" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) -"ecb" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"ecj" = ( -/obj/structure/largecrate/supply/supplies/mre, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +"ecf" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/almayer/maint/hull/lower/l_m_s) +"ecm" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/hallways/lower/starboard_umbilical) "eco" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = -17; @@ -24366,24 +24252,6 @@ "ecr" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/captain_mess) -"ecz" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/hallways/upper/aft_hallway) -"ecS" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) "ecZ" = ( /obj/structure/ladder{ height = 1; @@ -24393,12 +24261,24 @@ icon_state = "plate" }, /area/almayer/shipboard/navigation) +"ede" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "edn" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/hallways/lower/starboard_aft_hallway) +/obj/structure/sign/poster/ad{ + pixel_x = 30 + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "edo" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -24411,16 +24291,15 @@ icon_state = "sterile_green" }, /area/almayer/medical/medical_science) -"edG" = ( -/obj/structure/largecrate/random/barrel/yellow, +"edx" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_p) -"edV" = ( -/obj/structure/machinery/power/terminal, -/turf/open/floor/almayer, -/area/almayer/maint/upper/mess) +/area/almayer/maint/hull/lower/p_bow) "eed" = ( /turf/open/floor/almayer{ icon_state = "mono" @@ -24482,44 +24361,50 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"eeA" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" +"eeH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/maint/hull/upper/s_bow) -"eeC" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"eeL" = ( +/obj/structure/flora/pottedplant{ + desc = "Life is underwhelming, especially when you're a potted plant."; + icon_state = "pottedplant_22"; + name = "Jerry"; + pixel_y = 8 + }, +/obj/item/clothing/glasses/sunglasses/prescription{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/stern) -"eeR" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, +/area/almayer/maint/hull/upper/u_a_p) +"efd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/hallways/lower/port_umbilical) +"efh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_umbilical) "efj" = ( /turf/open/floor/almayer{ dir = 4; icon_state = "red" }, /area/almayer/hallways/upper/port) -"efk" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "s_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_umbilical) "efC" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -24529,11 +24414,12 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"efJ" = ( -/obj/item/tool/wet_sign, -/obj/effect/decal/cleanable/blood, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +"efE" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/stern_hallway) "efK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24545,20 +24431,11 @@ icon_state = "plate" }, /area/almayer/squads/alpha) -"efP" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck{ - pixel_y = 14 - }, -/obj/item/trash/cigbutt/ucigbutt{ - layer = 3.7; - pixel_x = 5; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) +"efN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "efT" = ( /obj/structure/machinery/atm{ pixel_y = 32 @@ -24587,6 +24464,16 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_medbay) +"egn" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_umbilical) "egp" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/platform_decoration, @@ -24606,34 +24493,17 @@ icon_state = "test_floor4" }, /area/almayer/living/chapel) -"egD" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"egQ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 +"egM" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"egW" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/upper/u_f_s) "ehc" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -24684,14 +24554,6 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/starboard) -"ehM" = ( -/obj/structure/surface/rack, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "ehR" = ( /obj/structure/window/reinforced{ dir = 4; @@ -24734,6 +24596,13 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) +"ehZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "eim" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -24788,15 +24657,16 @@ icon_state = "plate" }, /area/almayer/living/gym) -"ejj" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/tool/wrench{ - pixel_x = -2; - pixel_y = -1 +"eje" = ( +/obj/structure/closet, +/obj/item/reagent_container/food/drinks/bottle/sake, +/obj/item/newspaper, +/obj/item/clothing/gloves/yellow, +/obj/item/stack/tile/carpet{ + amount = 20 }, -/obj/item/tool/wrench{ - pixel_x = 2; - pixel_y = 7 +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" @@ -24824,17 +24694,6 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/grunt_rnr) -"ejV" = ( -/obj/structure/closet, -/obj/item/device/flashlight/pen, -/obj/item/attachable/reddot, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "ejY" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -24845,7 +24704,7 @@ /turf/open/floor/almayer, /area/almayer/command/lifeboat) "ekz" = ( -/obj/structure/girder/displaced, +/obj/structure/platform, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -24859,22 +24718,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"ekM" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"ekR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/hallways/lower/starboard_umbilical) "ekY" = ( /obj/structure/machinery/door/airlock/almayer/generic/glass{ name = "\improper Memorial Room" @@ -24918,26 +24761,23 @@ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_one) -"elR" = ( -/turf/closed/wall/almayer/research/containment/wall/corner{ - dir = 1 - }, -/area/almayer/medical/containment/cell) -"elY" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +"elF" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Starboard Viewing Room" }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/maint/hull/upper/u_f_s) +"elR" = ( +/turf/closed/wall/almayer/research/containment/wall/corner{ + dir = 1 + }, +/area/almayer/medical/containment/cell) "eme" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -24946,14 +24786,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/upper_medical) -"eml" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_umbilical) "emn" = ( /obj/structure/surface/rack, /obj/effect/spawner/random/toolbox, @@ -24973,19 +24805,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"emw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"emA" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_a_s) -"emC" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_f_p) "emK" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ @@ -24993,6 +24812,33 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"emX" = ( +/obj/structure/largecrate/random, +/obj/item/reagent_container/food/snacks/cheesecakeslice{ + pixel_y = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"emZ" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"enc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "ene" = ( /turf/open/floor/almayer{ dir = 4; @@ -25007,72 +24853,36 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"enz" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/sign/safety/bridge{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/west{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/upper/aft_hallway) -"enF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"enK" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"enQ" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, +"enq" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) -"enY" = ( -/obj/item/storage/firstaid, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"eob" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/area/almayer/maint/hull/lower/l_a_s) +"enz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 8; + icon_state = "silvercorner" }, -/area/almayer/maint/hull/lower/l_m_s) -"eox" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"eoy" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +/area/almayer/hallways/lower/repair_bay) +"enA" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) -"eoE" = ( -/obj/structure/largecrate/random/secure, +/area/almayer/maint/hull/upper/u_m_p) +"enK" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 6; + icon_state = "red" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/hallways/upper/stern_hallway) "eoG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -25080,19 +24890,34 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"eoK" = ( -/obj/structure/machinery/optable, +"eoU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "green" }, -/area/almayer/maint/hull/upper/p_stern) -"epk" = ( +/area/almayer/hallways/upper/aft_hallway) +"epp" = ( /obj/structure/surface/table/almayer, -/obj/item/tank/emergency_oxygen/double, +/obj/item/tool/wirecutters/clippers, +/obj/item/handcuffs/zip, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/maint/hull/lower/l_f_p) +"epq" = ( +/obj/structure/surface/rack, +/obj/item/clothing/head/headband/red{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/clothing/glasses/regular/hipster, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "epu" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -25113,6 +24938,13 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"epW" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lockerroom) "eqb" = ( /obj/structure/surface/table/almayer, /obj/item/tool/stamp/denied{ @@ -25139,27 +24971,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"eqd" = ( -/obj/item/stack/folding_barricade/three, -/obj/item/stack/folding_barricade/three, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/shipboard/panic) -"eqm" = ( -/obj/structure/prop/almayer/computers/sensor_computer2, -/obj/structure/machinery/door_control{ - id = "Secretroom"; - indestructible = 1; - layer = 2.5; - name = "Shutters"; - use_power = 0 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"eqh" = ( +/obj/structure/sign/poster{ + pixel_y = 32 }, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "eqB" = ( /obj/item/bedsheet/brown{ layer = 3.2 @@ -25213,6 +25030,19 @@ icon_state = "test_floor5" }, /area/almayer/squads/req) +"eqV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/upper/aft_hallway) +"era" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "erd" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -25222,12 +25052,6 @@ dir = 1 }, /area/almayer/medical/containment/cell/cl) -"ere" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "erh" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -25255,14 +25079,6 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"erE" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) "erF" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/toxin{ @@ -25283,25 +25099,6 @@ /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"erL" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/crushed_cup, -/obj/item/reagent_container/food/drinks/cup{ - pixel_x = -5; - pixel_y = 9 - }, -/obj/item/spacecash/c10{ - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/ashtray/plastic{ - pixel_x = 5; - pixel_y = -10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "erN" = ( /obj/structure/machinery/light{ dir = 8 @@ -25313,24 +25110,25 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"esd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +"erR" = ( +/obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) -"esm" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/maint/hull/lower/l_a_p) +"esl" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "esC" = ( /obj/structure/toilet{ pixel_y = 13 @@ -25375,6 +25173,11 @@ dir = 9 }, /area/almayer/command/lifeboat) +"esV" = ( +/obj/effect/landmark/start/researcher, +/obj/effect/landmark/late_join/researcher, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) "etf" = ( /turf/open/floor/almayer{ dir = 1; @@ -25417,11 +25220,11 @@ }, /area/almayer/engineering/upper_engineering) "ety" = ( -/obj/structure/closet/firecloset, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 6; + icon_state = "silver" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/upper/u_m_p) "etE" = ( /obj/structure/prop/almayer/name_stencil, /turf/open/floor/almayer_hull{ @@ -25436,10 +25239,14 @@ icon_state = "plate" }, /area/almayer/shipboard/starboard_point_defense) -"etN" = ( -/obj/effect/landmark/yautja_teleport, +"etU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/hallways/lower/port_fore_hallway) "eua" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/almayer{ @@ -25454,18 +25261,22 @@ icon_state = "test_floor4" }, /area/almayer/living/officer_study) -"euL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Starboard Railguns and Viewing Room" +"euu" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_s) +"euw" = ( +/obj/structure/machinery/portable_atmospherics/hydroponics, +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/almayer/maint/hull/upper/u_a_s) +"euB" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "cargo" }, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/hallways/upper/aft_hallway) "euN" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -25537,6 +25348,24 @@ icon_state = "cargo" }, /area/almayer/engineering/upper_engineering/starboard) +"evF" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/u_m_s) +"evQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/cryo_cells) "evR" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/mechanical/green{ @@ -25551,13 +25380,6 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north1) -"ewc" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) "ewr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -25598,30 +25420,20 @@ icon_state = "silvercorner" }, /area/almayer/command/cichallway) -"exb" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"exc" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/hallways/lower/port_midship_hallway) "exi" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"exl" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +"exx" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "exy" = ( /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" @@ -25633,30 +25445,59 @@ icon_state = "tcomms" }, /area/almayer/engineering/upper_engineering/starboard) -"exQ" = ( +"exX" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, /turf/open/floor/almayer{ - icon_state = "greencorner" + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) +"exY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/obj/structure/sign/safety/escapepod{ + pixel_x = 32 }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"eyG" = ( -/obj/structure/platform, /turf/open/floor/almayer{ + dir = 8; icon_state = "red" }, -/area/almayer/lifeboat_pumps/south2) -"eyI" = ( -/obj/structure/window/framed/almayer, -/obj/structure/curtain/open/shower{ - name = "hypersleep curtain" +/area/almayer/hallways/lower/port_fore_hallway) +"eyp" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"eyq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/obj/structure/machinery/door_control/railings{ + pixel_y = 24 }, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) -"eyM" = ( -/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "plating" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/hallways/lower/vehiclehangar) +"eyG" = ( +/obj/structure/platform, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/lifeboat_pumps/south2) "eyQ" = ( /obj/structure/machinery/light{ dir = 1 @@ -25690,6 +25531,12 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) +"eyZ" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "ezG" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -25707,10 +25554,19 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"ezR" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/l_f_s) "ezX" = ( /obj/structure/bed/chair/wood/normal, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) +"eAa" = ( +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "eAg" = ( /obj/structure/flora/pottedplant{ desc = "It is made of Fiberbush(tm). It contains asbestos."; @@ -25723,12 +25579,6 @@ icon_state = "red" }, /area/almayer/squads/alpha) -"eAm" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) "eAC" = ( /obj/structure/machinery/light{ dir = 4 @@ -25746,21 +25596,21 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"eAG" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/regular, -/obj/item/clipboard, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) "eAI" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "orangecorner" }, /area/almayer/engineering/lower/engine_core) +"eAK" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "eAL" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -25771,6 +25621,16 @@ "eAN" = ( /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"eAP" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "eAU" = ( /obj/structure/bed/chair{ dir = 8 @@ -25804,24 +25664,17 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/briefing) +"eBy" = ( +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/upper/aft_hallway) "eBE" = ( /obj/structure/machinery/photocopier{ anchored = 0 }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"eBG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "eBO" = ( /obj/structure/bed, /turf/open/floor/almayer{ @@ -25906,13 +25759,20 @@ icon_state = "plating" }, /area/almayer/shipboard/brig/execution) -"eDk" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, +"eCZ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice2"; + pixel_x = 16; + pixel_y = 16 + }, +/obj/structure/largecrate/supply/supplies/flares, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/l_m_p) "eDo" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -25923,12 +25783,6 @@ icon_state = "plating" }, /area/almayer/medical/upper_medical) -"eDq" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "eDt" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer_network{ @@ -25945,6 +25799,24 @@ }, /turf/open/floor/almayer, /area/almayer/living/bridgebunks) +"eDF" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"eDN" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) +"eDW" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "eEc" = ( /obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ @@ -25969,27 +25841,37 @@ /obj/structure/filingcabinet, /turf/open/floor/almayer, /area/almayer/command/computerlab) +"eEq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) +"eEv" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "eEw" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"eEF" = ( +"eFg" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) -"eFa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/upper/mess) "eFj" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -26019,16 +25901,11 @@ }, /area/almayer/medical/chemistry) "eFI" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, +/obj/effect/landmark/yautja_teleport, /turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/s_bow) "eFK" = ( /obj/structure/bed{ icon_state = "abed" @@ -26122,13 +25999,6 @@ /obj/item/stack/cable_coil, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"eGq" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) "eGr" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ dir = 1; @@ -26174,22 +26044,12 @@ icon_state = "bluefull" }, /area/almayer/command/cichallway) -"eHy" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/maint/hull/lower/l_a_p) -"eHz" = ( -/obj/structure/largecrate/supply/supplies/mre, +"eHJ" = ( +/obj/structure/machinery/vending/hydronutrients, /turf/open/floor/almayer{ - dir = 1; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/upper/u_a_s) "eHY" = ( /obj/structure/surface/rack, /obj/item/device/taperecorder, @@ -26197,45 +26057,23 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"eIN" = ( -/obj/item/tool/kitchen/utensil/pfork, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) -"eIO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Podlocks"; - pixel_y = -26; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"eIe" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"eJg" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +/area/almayer/hallways/lower/vehiclehangar) +"eII" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/area/almayer/hallways/upper/aft_hallway) -"eJj" = ( -/obj/structure/closet/crate, -/obj/item/ammo_box/magazine/l42a, -/obj/item/ammo_box/magazine/l42a, +/obj/structure/barricade/handrail, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor5" }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/hallways/lower/port_midship_hallway) "eJQ" = ( /obj/structure/prop/invuln{ desc = "An inflated membrane. This one is puncture proof. Wow!"; @@ -26252,10 +26090,6 @@ "eJX" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/ce_room) -"eJZ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) "eKa" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ dir = 2; @@ -26267,6 +26101,17 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/processing) +"eKi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"eKk" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "eKy" = ( /obj/structure/pipes/standard/simple/visible{ dir = 6 @@ -26278,6 +26123,12 @@ icon_state = "plate" }, /area/almayer/engineering/lower) +"eKE" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "eKH" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, @@ -26322,67 +26173,12 @@ icon_state = "green" }, /area/almayer/living/offices) -"eKZ" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Port Viewing Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_p) -"eLp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/machinery/computer/supplycomp/vehicle, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/vehiclehangar) -"eLu" = ( -/obj/structure/sign/safety/three{ - pixel_x = 31; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"eLC" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray, -/obj/item/tool/kitchen/tray{ - pixel_y = 6 - }, -/obj/item/reagent_container/food/snacks/sliceable/bread{ - pixel_y = 8 - }, -/obj/item/tool/kitchen/knife{ - pixel_x = 6 - }, +"eLq" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) -"eLH" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/beer_pack, -/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 = -27; - serial_number = 11 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/upper/u_m_p) "eMh" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Laundry Room" @@ -26391,18 +26187,27 @@ icon_state = "test_floor4" }, /area/almayer/engineering/laundry) -"eMx" = ( +"eMp" = ( /obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "NW-out"; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"eMI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" + dir = 5; + icon_state = "plating" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/hallways/lower/vehiclehangar) +"eMt" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "eMJ" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -26413,6 +26218,14 @@ icon_state = "red" }, /area/almayer/shipboard/brig/perma) +"eMK" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "eMP" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; @@ -26429,20 +26242,34 @@ icon_state = "test_floor4" }, /area/almayer/command/cichallway) -"eMZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"eNf" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/lower/l_m_s) "eNi" = ( /turf/closed/wall/almayer, /area/almayer/engineering/ce_room) -"eNv" = ( -/obj/structure/largecrate/random, +"eNq" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"eNw" = ( +/obj/structure/surface/table/almayer, +/obj/item/spacecash/c1000/counterfeit, +/obj/item/storage/box/drinkingglasses, +/obj/item/storage/fancy/cigar, +/obj/structure/machinery/atm{ + pixel_y = 32 + }, /turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/command/corporateliaison) "eNI" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -26454,11 +26281,21 @@ }, /area/almayer/medical/containment) "eNL" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 + }, +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"eNO" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/u_a_s) "eNR" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -26466,14 +26303,9 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/processing) -"eOx" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +"eOz" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "eOM" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 2; @@ -26494,15 +26326,19 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"ePq" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, +"eOY" = ( +/obj/structure/surface/rack, +/obj/item/facepaint/sniper, /turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/maint/hull/upper/u_m_s) +"ePc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "ePM" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 @@ -26544,55 +26380,63 @@ icon_state = "cargo" }, /area/almayer/engineering/lower/workshop/hangar) -"eQd" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/smg/m39{ - pixel_y = 6 +"ePV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/item/weapon/gun/smg/m39{ - pixel_y = -6 +/obj/structure/machinery/door_control{ + id = "laddernortheast"; + name = "North East Ladders Shutters"; + pixel_y = -25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) -"eQh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 + icon_state = "green" }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"eQa" = ( +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer{ - icon_state = "silvercorner" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) -"eQm" = ( +/area/almayer/maint/hull/lower/l_a_p) +"eQq" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/area/almayer/maint/hull/upper/p_bow) -"eQz" = ( -/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/hallways/lower/starboard_umbilical) "eQJ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/structure/sign/poster/ad{ - pixel_x = 30 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "mono" }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"eQR" = ( +/area/almayer/hallways/upper/aft_hallway) +"eQP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "red" }, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/hallways/upper/stern_hallway) +"eQV" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "eRi" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/folder/black{ @@ -26605,6 +26449,21 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) +"eRm" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/item/storage/firstaid{ + pixel_x = -13; + pixel_y = 13 + }, +/obj/item/clipboard, +/obj/item/paper, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "eRu" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -26633,14 +26492,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/lower_medical_medbay) -"eRG" = ( -/obj/structure/closet, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "eRL" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/main_office) @@ -26660,6 +26511,13 @@ icon_state = "cargo_arrow" }, /area/almayer/engineering/lower/workshop/hangar) +"eRX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "bluecorner" + }, +/area/almayer/hallways/upper/aft_hallway) "eSk" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -26685,11 +26543,34 @@ }, /area/almayer/medical/medical_science) "eSp" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = -16 +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/maint/hull/upper/u_m_p) +"eSt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) +"eSH" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "eSU" = ( /obj/structure/prop/almayer/name_stencil{ icon_state = "almayer1" @@ -26698,9 +26579,12 @@ icon_state = "outerhull_dir" }, /area/space) -"eTb" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/stern) +"eSZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "eTd" = ( /obj/structure/surface/table/almayer, /obj/item/trash/boonie{ @@ -26711,36 +26595,26 @@ /obj/effect/landmark/crap_item, /turf/open/floor/almayer, /area/almayer/living/briefing) -"eTx" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_aft_hallway) -"eTD" = ( -/obj/structure/bed/chair{ - dir = 4 - }, +"eTJ" = ( +/obj/structure/curtain/red, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/maint/hull/lower/l_a_s) "eUe" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"eUf" = ( +/obj/item/device/radio, /turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/s_bow) +"eUf" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/stern) "eUh" = ( /obj/structure/window/reinforced{ dir = 8 @@ -26761,6 +26635,15 @@ icon_state = "plate" }, /area/almayer/squads/charlie_delta_shared) +"eUj" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/hallways/lower/port_midship_hallway) "eUn" = ( /obj/structure/machinery/chem_master, /turf/open/floor/almayer{ @@ -26786,6 +26669,16 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"eVf" = ( +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "eVj" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -26820,6 +26713,16 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) +"eVP" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/extinguisher, +/obj/item/tool/extinguisher, +/obj/item/tool/crowbar, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "eVQ" = ( /obj/structure/machinery/light{ dir = 4 @@ -26857,6 +26760,24 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"eVY" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/stack/cable_coil{ + pixel_x = 8; + pixel_y = -4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"eWf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "eWp" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/bed/chair/comfy/charlie{ @@ -26866,20 +26787,6 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) -"eWs" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_f_s) -"eWv" = ( -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"eWx" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) "eWF" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -26888,12 +26795,15 @@ icon_state = "test_floor4" }, /area/almayer/living/basketball) -"eWN" = ( +"eWV" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_a_p) "eXb" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -26907,6 +26817,14 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"eXc" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_midship_hallway) "eXk" = ( /obj/effect/landmark/late_join/working_joe, /obj/effect/landmark/start/working_joe, @@ -26922,17 +26840,13 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/living/offices) -"eXD" = ( -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -16 - }, +"eYd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/lower/starboard_midship_hallway) "eYj" = ( /obj/structure/machinery/light{ dir = 8 @@ -26948,15 +26862,6 @@ /obj/structure/filingcabinet/security, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"eYp" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Tool Closet" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_m_s) "eYr" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -26984,6 +26889,20 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"eYw" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/item/tool/crowbar{ + pixel_x = 6; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"eYx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) "eYz" = ( /obj/structure/machinery/camera/autoname/almayer/containment/ares{ dir = 1 @@ -26996,6 +26915,18 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"eYC" = ( +/obj/structure/machinery/door/airlock/almayer/engineering{ + name = "\improper Disposals" + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_a_p) "eYD" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -27025,6 +26956,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"eYN" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) "eYQ" = ( /obj/structure/closet/fireaxecabinet{ pixel_x = -32 @@ -27041,9 +26978,13 @@ icon_state = "orangecorner" }, /area/almayer/engineering/upper_engineering/port) -"eZm" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/p_stern) +"eZn" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "eZo" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -27071,26 +27012,18 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"eZC" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "eZH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"eZR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 +"eZK" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/maint/lower/s_bow) "fag" = ( /obj/effect/decal/cleanable/blood, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -27099,15 +27032,32 @@ /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) "far" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 6 }, +/obj/item/weapon/gun/rifle/l42a, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/maint/hull/upper/u_m_s) +"fas" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) +"faC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "faE" = ( /obj/structure/bookcase{ icon_state = "book-5"; @@ -27131,18 +27081,6 @@ /obj/item/stack/cable_coil, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"faR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/lattice_prop{ - dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "faX" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; @@ -27175,15 +27113,6 @@ icon_state = "plate" }, /area/almayer/squads/alpha) -"fbe" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "fbo" = ( /obj/structure/machinery/door_control{ id = "kitchen2"; @@ -27223,13 +27152,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/upper_medical) -"fbC" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/maint/hull/lower/l_m_s) "fbR" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -27243,41 +27165,35 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"fbU" = ( -/obj/item/stool, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) -"fca" = ( -/obj/structure/disposalpipe/segment{ - layer = 5.1; - name = "water pipe" - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "fcf" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"fco" = ( -/obj/structure/surface/rack, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 4 +"fcl" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) +"fcv" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"fcx" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/obj/item/device/radio, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/maint/hull/lower/l_a_p) "fcy" = ( /obj/structure/machinery/light{ dir = 8 @@ -27299,6 +27215,14 @@ icon_state = "bluecorner" }, /area/almayer/living/basketball) +"fcK" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "fcM" = ( /obj/structure/machinery/camera/autoname/almayer{ name = "ship-grade camera" @@ -27322,6 +27246,9 @@ icon_state = "orange" }, /area/almayer/engineering/lower) +"fcW" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_a_p) "fcX" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/machinery/light{ @@ -27335,12 +27262,6 @@ icon_state = "silver" }, /area/almayer/command/airoom) -"fdf" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "fdx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -27350,6 +27271,15 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"fdD" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/item/storage/firstaid/o2, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "fdE" = ( /obj/item/clothing/mask/rebreather/scarf, /obj/structure/closet/secure_closet/personal/cabinet{ @@ -27371,31 +27301,15 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lockerroom) -"fea" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "feb" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/brig/execution) -"feo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 3 +"fed" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "feq" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -27418,10 +27332,6 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"feG" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "feI" = ( /obj/item/trash/cigbutt, /turf/open/floor/almayer, @@ -27446,55 +27356,32 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_two) +"feZ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) "ffg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/perma) -"ffq" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat{ - pixel_y = 15 - }, -/obj/item/clothing/head/hardhat/dblue{ - pixel_x = -7; - pixel_y = 10 - }, -/obj/item/clothing/head/hardhat{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = 7; - pixel_y = -5 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"ffx" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/item/clothing/head/helmet/marine/tech/tanker, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "ffE" = ( /turf/open/floor/almayer/no_build{ icon_state = "plating" }, /area/almayer/command/airoom) -"ffN" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, +"ffL" = ( /obj/structure/sign/safety/water{ pixel_x = 8; pixel_y = -32 }, -/obj/structure/machinery/power/apc/almayer, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/maint/hull/lower/l_m_p) +"ffX" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "fgh" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -27521,6 +27408,26 @@ icon_state = "green" }, /area/almayer/squads/req) +"fgv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"fgA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/west{ + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "fgE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -27542,6 +27449,22 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"fgO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door_control{ + id = "laddersoutheast"; + name = "South East Ladders Shutters"; + pixel_y = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "fgR" = ( /obj/structure/machinery/door/poddoor/almayer/open{ id = "Brig Lockdown Shutters"; @@ -27559,14 +27482,13 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/cells) -"fgU" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"fhb" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/sign/safety/water{ + pixel_x = -17 }, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "fhf" = ( /obj/structure/surface/rack, /obj/item/storage/toolbox/mechanical, @@ -27578,25 +27500,30 @@ icon_state = "mono" }, /area/almayer/engineering/upper_engineering/starboard) -"fic" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"fhT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/lower/l_a_s) "fie" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "orange" }, /area/almayer/engineering/lower/workshop) -"fix" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"fio" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/hallways/lower/vehiclehangar) +"fiz" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "fiE" = ( /obj/structure/machinery/computer/cameras/containment/hidden{ dir = 4; @@ -27607,15 +27534,6 @@ /obj/item/device/camera_film, /turf/open/floor/almayer, /area/almayer/command/corporateliaison) -"fiH" = ( -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/upper/stern_hallway) -"fiN" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "fiQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -27624,36 +27542,76 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"fjz" = ( -/obj/structure/largecrate/random/case/double, +"fjv" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - icon_state = "cargo" + dir = 4; + icon_state = "greencorner" }, -/area/almayer/maint/hull/upper/u_f_p) -"fkK" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ +/area/almayer/hallways/lower/port_fore_hallway) +"fka" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/upper/stern_hallway) +"fkz" = ( +/obj/structure/machinery/alarm/almayer{ dir = 1 }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/almayer/hallways/lower/port_aft_hallway) +"fkF" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/lower/l_m_p) "fkX" = ( /turf/closed/wall/almayer/research/containment/wall/corner{ dir = 8 }, /area/almayer/medical/containment/cell/cl) -"flr" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"flD" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "green" }, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/hallways/upper/aft_hallway) +"flK" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"flS" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "flW" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/light{ @@ -27665,18 +27623,15 @@ icon_state = "silver" }, /area/almayer/living/briefing) -"fml" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"flY" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/lower/stern) "fmv" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -27698,20 +27653,15 @@ icon_state = "bluecorner" }, /area/almayer/living/pilotbunks) -"fmZ" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_umbilical) -"fnc" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, +"fmY" = ( /turf/open/floor/almayer{ - icon_state = "green" + icon_state = "orangecorner" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/upper/u_a_s) +"fmZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "fnv" = ( /obj/structure/machinery/light{ dir = 4 @@ -27765,6 +27715,36 @@ icon_state = "test_floor4" }, /area/almayer/squads/req) +"fnV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/bridge{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/west{ + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/aft_hallway) +"foa" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/surface/table/almayer, +/obj/item/storage/box/drinkingglasses, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"fob" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "foC" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ @@ -27811,26 +27791,21 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"foS" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 +"foU" = ( +/obj/item/tool/screwdriver, +/obj/structure/platform_decoration{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) -"fpi" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/maint/hull/upper/u_a_p) +"fpj" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, -/area/almayer/maint/hull/lower/stern) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "fpA" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -27843,21 +27818,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"fpI" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) -"fpM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) "fpR" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/tool, @@ -27885,21 +27845,6 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) -"fqb" = ( -/obj/item/paper/prison_station/interrogation_log{ - pixel_x = 10; - pixel_y = 7 - }, -/obj/structure/largecrate/random/barrel/green, -/obj/item/limb/hand/l_hand{ - pixel_x = -5; - pixel_y = 14 - }, -/obj/effect/spawner/random/balaclavas, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "fqc" = ( /obj/structure/machinery/vending/cigarette, /obj/structure/machinery/light, @@ -27907,38 +27852,36 @@ icon_state = "bluefull" }, /area/almayer/command/cichallway) -"fqw" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" +"fqh" = ( +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"fqA" = ( +/area/almayer/maint/lower/cryo_cells) +"fqp" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/hallways/lower/starboard_fore_hallway) "fqC" = ( /obj/structure/machinery/vending/cigarette, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"fqJ" = ( -/obj/structure/machinery/door_control{ - id = "safe_armory"; - name = "Hangar Armory Lockdown"; - pixel_y = 24; - req_access_txt = "4" - }, +"fqN" = ( /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "silver" }, -/area/almayer/shipboard/panic) +/area/almayer/hallways/upper/aft_hallway) "fqO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -27946,22 +27889,24 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"fqU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 2.5 +"fqP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "fqW" = ( /obj/structure/machinery/recharge_station, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/engineering/lower/engine_core) +"fqX" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "fqZ" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -27973,6 +27918,14 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"fra" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "frb" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, @@ -27996,6 +27949,11 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"frq" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) "frz" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ name = "\improper Exterior Airlock"; @@ -28013,13 +27971,6 @@ icon_state = "red" }, /area/almayer/shipboard/starboard_missiles) -"frI" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) "frM" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -28033,12 +27984,16 @@ icon_state = "tcomms" }, /area/almayer/command/airoom) -"frV" = ( -/obj/structure/toilet{ - dir = 1 +"frT" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = -32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/port_midship_hallway) "frX" = ( /obj/structure/machinery/optable, /obj/structure/sign/safety/medical{ @@ -28050,16 +28005,6 @@ icon_state = "sterile_green_corner" }, /area/almayer/shipboard/brig/surgery) -"fsf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/lower/port_umbilical) "fsp" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -28070,18 +28015,6 @@ icon_state = "plate" }, /area/almayer/living/gym) -"fsu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/upper/aft_hallway) "fsR" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -28104,33 +28037,30 @@ icon_state = "plating_striped" }, /area/almayer/living/cryo_cells) -"ftb" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +"ftr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"ftA" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ - dir = 5; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) -"ftG" = ( -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = 32 + icon_state = "plate" }, +/area/almayer/maint/hull/lower/p_bow) +"ftE" = ( +/obj/item/storage/firstaid/regular, +/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/maint/hull/upper/u_a_s) -"ftZ" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) +"ful" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "fuz" = ( /obj/structure/machinery/cm_vending/clothing/pilot_officer, /turf/open/floor/almayer{ @@ -28157,13 +28087,6 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) -"fuU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/port_umbilical) "fva" = ( /obj/structure/machinery/light{ dir = 1 @@ -28192,36 +28115,11 @@ icon_state = "silver" }, /area/almayer/living/briefing) -"fvj" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/upper/aft_hallway) -"fvo" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/clothing/glasses/welding{ - pixel_x = 8; - pixel_y = 3 - }, -/obj/item/tool/weldingtool{ - pixel_x = -11; - pixel_y = 5 - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, +"fvs" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/s_bow) "fvA" = ( /obj/structure/closet/secure_closet/brig, /turf/open/floor/almayer, @@ -28232,19 +28130,6 @@ icon_state = "redfull" }, /area/almayer/command/cic) -"fvE" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, -/area/almayer/hallways/upper/aft_hallway) -"fvJ" = ( -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lockerroom) "fvN" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -28255,18 +28140,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/port_point_defense) -"fvV" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ +"fwm" = ( +/obj/structure/sign/safety/conference_room{ pixel_y = 32 }, /turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"fws" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, /area/almayer/hallways/lower/port_midship_hallway) "fwD" = ( /obj/item/reagent_container/food/snacks/grown/poppy{ @@ -28278,9 +28162,6 @@ icon_state = "plate" }, /area/almayer/living/starboard_garden) -"fwK" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hallways/lower/starboard_umbilical) "fwM" = ( /obj/structure/surface/table/almayer, /obj/item/paper, @@ -28292,13 +28173,22 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"fwP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ +"fwQ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"fwT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Starboard Viewing Room" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_s) "fwY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -28326,6 +28216,22 @@ /obj/item/weapon/shield/riot, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) +"fxX" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -8; + pixel_y = 28 + }, +/obj/structure/sign/safety/intercom{ + pixel_x = 14; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "bluecorner" + }, +/area/almayer/hallways/upper/aft_hallway) "fxZ" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -28347,6 +28253,18 @@ icon_state = "plate" }, /area/almayer/shipboard/weapon_room) +"fyi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/lower/vehiclehangar) "fyp" = ( /obj/structure/machinery/cryopod{ layer = 3.1; @@ -28356,6 +28274,28 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cryo) +"fyq" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"fys" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/safety/bridge{ + pixel_y = 32 + }, +/obj/structure/sign/safety/reception{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/aft_hallway) "fyD" = ( /obj/structure/machinery/light, /obj/structure/ladder{ @@ -28364,35 +28304,15 @@ }, /turf/open/floor/plating/almayer, /area/almayer/living/briefing) -"fyT" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 2; - id = "CIC Lockdown"; - layer = 2.2; - name = "\improper Combat Information Center Blast Door" - }, -/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ - dir = 1; - name = "\improper Command Power Substation" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/upper/mess) -"fzc" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"fza" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"fzm" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" +/obj/structure/disposalpipe/junction{ + dir = 8 }, -/area/almayer/hallways/upper/stern_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) "fzq" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -28405,18 +28325,6 @@ icon_state = "test_floor4" }, /area/almayer/squads/charlie) -"fzx" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "fzP" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, @@ -28433,30 +28341,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/ce_room) -"fzT" = ( -/obj/structure/surface/rack, -/obj/item/tool/wirecutters, -/obj/item/tool/shovel/snow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) -"fAa" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/ammo_magazine/pistol{ - current_rounds = 0 - }, -/obj/item/weapon/gun/pistol/m4a3{ - current_mag = null +"fAo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, /turf/open/floor/almayer{ - dir = 9; - icon_state = "red" + dir = 5; + icon_state = "plating" }, -/area/almayer/living/offices/flight) +/area/almayer/hallways/lower/vehiclehangar) "fAr" = ( /obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m39_submachinegun, /turf/open/floor/plating/plating_catwalk, @@ -28467,41 +28361,22 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/main_office) -"fAW" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"fBi" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"fBo" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, +"fAH" = ( +/obj/structure/largecrate/supply, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) -"fBA" = ( -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/area/almayer/maint/hull/upper/p_stern) +"fAQ" = ( +/obj/structure/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, /turf/open/floor/almayer{ - icon_state = "blue" + dir = 4; + icon_state = "red" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/upper/stern_hallway) "fBO" = ( /obj/structure/machinery/chem_master{ vial_maker = 1 @@ -28514,21 +28389,23 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"fCg" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 +"fBW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"fCi" = ( -/obj/structure/surface/table/almayer, -/obj/item/organ/lungs/prosthetic, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/hallways/lower/port_midship_hallway) +"fCd" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "fCp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -28536,32 +28413,32 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) "fCG" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/maint/lower/s_bow) "fCL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"fCP" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" +"fCZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/upper/aft_hallway) -"fCT" = ( /obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, +/obj/item/toy/handcard/uno_reverse_red{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/toy/deck/uno, +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "plate" }, -/area/almayer/engineering/lower/engine_core) +/area/almayer/maint/hull/lower/l_f_s) "fDh" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -28584,14 +28461,27 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_medbay) -"fDk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"fDm" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/nanopaste{ + pixel_x = -3; + pixel_y = 14 }, /turf/open/floor/almayer{ - icon_state = "orangecorner" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/upper/p_stern) +"fDC" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/upper/u_m_p) "fDG" = ( /obj/structure/machinery/vending/coffee, /obj/structure/machinery/light{ @@ -28614,6 +28504,12 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"fDT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "fDU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -28640,6 +28536,21 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) +"fDZ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"fEb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "fEe" = ( /obj/structure/machinery/pipedispenser, /turf/open/floor/almayer{ @@ -28657,12 +28568,6 @@ icon_state = "plate" }, /area/almayer/medical/morgue) -"fEF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) "fEN" = ( /obj/structure/machinery/camera/autoname/almayer/containment/ares{ dir = 4 @@ -28716,6 +28621,10 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_medbay) +"fFN" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "fFO" = ( /obj/structure/machinery/light{ dir = 4 @@ -28727,23 +28636,6 @@ icon_state = "plate" }, /area/almayer/medical/morgue) -"fFQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/spray/cleaner{ - pixel_x = 7; - pixel_y = 14 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) -"fFU" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "fGa" = ( /obj/structure/surface/rack, /obj/effect/decal/warning_stripes{ @@ -28754,26 +28646,10 @@ icon_state = "dark_sterile" }, /area/almayer/living/numbertwobunks) -"fGd" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/lower/vehiclehangar) "fGg" = ( /obj/effect/decal/cleanable/blood/oil/streak, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"fGi" = ( -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "fGu" = ( /obj/structure/machinery/door_control{ dir = 1; @@ -28801,24 +28677,25 @@ }, /area/almayer/medical/medical_science) "fGB" = ( -/obj/structure/largecrate/random/case/small, +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"fGG" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "plating" }, -/area/almayer/maint/hull/lower/l_a_s) -"fGD" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +/area/almayer/shipboard/panic) +"fGR" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 8; + icon_state = "greencorner" }, -/area/almayer/hallways/upper/aft_hallway) -"fHb" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/hallways/lower/port_midship_hallway) "fHh" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -28841,10 +28718,26 @@ icon_state = "greenfull" }, /area/almayer/living/offices) -"fHM" = ( -/obj/docking_port/stationary/escape_pod/cl, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) +"fHY" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"fIh" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) +"fII" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "fIM" = ( /obj/effect/landmark/start/marine/tl/bravo, /obj/effect/landmark/late_join/bravo, @@ -28882,25 +28775,6 @@ icon_state = "plate" }, /area/almayer/command/cichallway) -"fJp" = ( -/obj/structure/girder, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"fJt" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"fJu" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) "fJy" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/toy/deck{ @@ -28909,6 +28783,16 @@ }, /turf/open/floor/almayer, /area/almayer/living/pilotbunks) +"fJA" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "fJO" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -28966,6 +28850,16 @@ icon_state = "red" }, /area/almayer/shipboard/brig/chief_mp_office) +"fKj" = ( +/obj/structure/largecrate/random/barrel/green, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "fKt" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/prop/dam/crane{ @@ -28982,6 +28876,13 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"fKv" = ( +/obj/structure/surface/rack, +/obj/item/stack/folding_barricade/three, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "fKw" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1 @@ -29001,6 +28902,20 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) +"fKC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) +"fKL" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/u_m_s) "fKT" = ( /obj/structure/machinery/vending/coffee, /obj/structure/sign/safety/coffee{ @@ -29030,13 +28945,6 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"fLf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) "fLg" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/reagent_container/food/snacks/wrapped/barcardine{ @@ -29047,26 +28955,10 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"fLi" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "fLl" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/s_stern) -"fLt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "fLu" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -29096,6 +28988,18 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) +"fLI" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/beer_pack, +/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 = -27; + serial_number = 11 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "fMe" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp{ @@ -29123,6 +29027,12 @@ icon_state = "silver" }, /area/almayer/command/airoom) +"fMn" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "fMt" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "ARES Interior"; @@ -29151,28 +29061,31 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"fMU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"fMB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = 32 +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/obj/structure/sign/safety/coffee{ - pixel_y = 32 +/area/almayer/hallways/lower/starboard_umbilical) +"fMK" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"fNd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer{ + dir = 10; + icon_state = "green" + }, +/area/almayer/squads/req) +"fMZ" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/pipes/vents/pump/on, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/lower/l_f_s) "fNi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -29188,12 +29101,24 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"fNH" = ( +"fNv" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/u_a_p) +"fNY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "fOk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -29225,15 +29150,6 @@ icon_state = "orangecorner" }, /area/almayer/engineering/upper_engineering) -"fOK" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/camera, -/obj/item/device/camera_film, -/obj/item/device/camera_film, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) "fOL" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -29243,6 +29159,19 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) +"fOO" = ( +/obj/item/ammo_box/magazine/misc/mre, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) +"fPk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "fPn" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 @@ -29299,26 +29228,6 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"fPF" = ( -/obj/structure/closet/crate/trashcart, -/obj/item/clothing/gloves/yellow, -/obj/item/device/multitool, -/obj/item/tool/screwdriver{ - icon_state = "screwdriver7" - }, -/obj/item/tool/crowbar/red, -/obj/item/book/manual/engineering_hacking, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"fQl" = ( -/obj/structure/largecrate/supply/supplies/flares, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) "fQn" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -29340,14 +29249,6 @@ }, /turf/open/floor/plating, /area/almayer/medical/upper_medical) -"fQy" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "fQS" = ( /obj/structure/bed/chair/comfy/orange, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -29358,25 +29259,6 @@ }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"fQU" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"fRg" = ( -/obj/structure/closet/emcloset, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/upper/u_f_s) "fRr" = ( /obj/structure/machinery/light{ dir = 1 @@ -29392,13 +29274,18 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"fRL" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +"fRD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/maint/lower/cryo_cells) +"fRF" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_fore_hallway) "fRS" = ( /obj/effect/landmark/start/warden, /obj/effect/decal/warning_stripes{ @@ -29407,6 +29294,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cryo) +"fSj" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "fSl" = ( /obj/structure/machinery/line_nexter{ id = "line2"; @@ -29433,6 +29326,20 @@ icon_state = "orange" }, /area/almayer/engineering/lower) +"fSN" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancesouth"; + name = "\improper South Hangar Podlock" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_fore_hallway) "fTj" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -29444,9 +29351,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"fTl" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_a_s) "fTm" = ( /obj/structure/bed/chair/office/dark, /turf/open/floor/almayer, @@ -29468,16 +29372,10 @@ }, /area/almayer/engineering/laundry) "fUz" = ( -/obj/structure/surface/rack, -/obj/item/storage/box/cups{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/storage/box/cups, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "fUA" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) @@ -29496,22 +29394,33 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"fUZ" = ( -/obj/structure/largecrate/random/barrel/green, +"fUF" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) -"fVa" = ( -/obj/item/stack/catwalk, -/obj/structure/platform_decoration{ - dir = 4 +/area/almayer/maint/hull/upper/s_stern) +"fUL" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_a_p) -"fVe" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_a_p) +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"fUT" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "bluecorner" + }, +/area/almayer/hallways/upper/aft_hallway) "fVo" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -29519,6 +29428,9 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop) +"fVq" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "fVz" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -29548,14 +29460,39 @@ icon_state = "dark_sterile" }, /area/almayer/medical/chemistry) -"fWg" = ( +"fVL" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, +/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 10; + icon_state = "green" }, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/hallways/upper/aft_hallway) +"fVM" = ( +/obj/structure/surface/table/almayer, +/obj/item/cell/high{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/ashtray/plastic{ + icon_state = "ashtray_full_bl"; + pixel_x = 5; + pixel_y = 1 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/engineering/upper_engineering/port) "fWi" = ( /obj/structure/toilet{ dir = 1 @@ -29568,15 +29505,22 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"fXf" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"fWj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" + dir = 8; + icon_state = "silver" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_m_p) +"fWP" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "fXg" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -29591,6 +29535,16 @@ icon_state = "silver" }, /area/almayer/command/computerlab) +"fXy" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "fXz" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -29612,6 +29566,17 @@ icon_state = "plate" }, /area/almayer/command/combat_correspondent) +"fXG" = ( +/obj/structure/stairs{ + icon_state = "ramptop" + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "fXN" = ( /obj/effect/landmark/start/marine/delta, /obj/effect/landmark/late_join/delta, @@ -29646,17 +29611,13 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"fYr" = ( -/obj/structure/surface/rack, -/obj/item/device/radio{ - pixel_x = 5; - pixel_y = 4 - }, -/obj/item/device/radio, +"fYV" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "mono" }, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/medical/upper_medical) "fYZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -29687,15 +29648,19 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"fZy" = ( -/obj/structure/sign/poster{ - pixel_y = -32 +"fZu" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/upper/u_a_p) +"fZy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/hallways/upper/stern_hallway) "fZA" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 @@ -29709,9 +29674,6 @@ icon_state = "orangecorner" }, /area/almayer/engineering/lower) -"fZE" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "fZG" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -29720,22 +29682,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"fZI" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = 7; - pixel_y = -3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"fZR" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "fZX" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -29743,6 +29689,11 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) +"fZY" = ( +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "fZZ" = ( /obj/effect/landmark/start/marine/medic/bravo, /obj/effect/landmark/late_join/bravo, @@ -29759,12 +29710,6 @@ icon_state = "test_floor4" }, /area/almayer/living/briefing) -"gar" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) "gax" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -29791,6 +29736,15 @@ icon_state = "silver" }, /area/almayer/command/cichallway) +"gaW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "gba" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/faxmachine/uscm/command{ @@ -29853,16 +29807,16 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"gbR" = ( -/obj/structure/sign/safety/maint{ +"gbz" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"gck" = ( +/obj/structure/sign/safety/storage{ pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" + pixel_y = -32 }, -/area/almayer/hallways/upper/stern_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "gcm" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -29886,6 +29840,35 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/starboard) +"gct" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/port_fore_hallway) +"gcu" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) +"gcF" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orangecorner" + }, +/area/almayer/hallways/lower/port_umbilical) "gcN" = ( /obj/structure/machinery/door/airlock/almayer/command{ access_modified = 1; @@ -29928,6 +29911,22 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) +"gdO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door_control{ + id = "hangarentrancenorth"; + name = "North Hangar Podlocks"; + pixel_y = -26; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "gdS" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -29958,20 +29957,6 @@ "gel" = ( /turf/closed/wall/almayer/research/containment/wall/west, /area/almayer/medical/containment/cell/cl) -"gen" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/flashlight/lamp{ - layer = 3.1; - pixel_x = 7; - pixel_y = 10 - }, -/obj/item/paper_bin/uscm, -/obj/item/tool/pen, -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) "ger" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/wy{ @@ -29991,15 +29976,18 @@ icon_state = "dark_sterile" }, /area/almayer/medical/medical_science) -"geu" = ( -/obj/structure/machinery/light, -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, +"gew" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/lower/l_f_p) +"geR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "gfo" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -30013,15 +30001,6 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"gft" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) "gfu" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -30035,9 +30014,6 @@ icon_state = "tcomms" }, /area/almayer/command/airoom) -"gfv" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) "gfE" = ( /obj/structure/machinery/recharge_station, /turf/open/floor/plating, @@ -30077,30 +30053,49 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"ggo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) "ggt" = ( /turf/open/floor/almayer{ dir = 5; icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"ggx" = ( +/obj/structure/surface/table/almayer, +/obj/item/folder/yellow, +/obj/structure/machinery/keycard_auth{ + pixel_x = -8; + pixel_y = 25 + }, +/obj/structure/sign/safety/high_rad{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 14; + pixel_y = 26 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/lower/workshop) "ggz" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_four) -"ggD" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) +"ggC" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "ggJ" = ( /obj/structure/machinery/door_control{ dir = 1; @@ -30118,33 +30113,49 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/engineering/airmix) -"ggS" = ( -/obj/structure/machinery/light{ - dir = 8 +"ghn" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) +"ght" = ( +/obj/item/stack/tile/carpet{ + amount = 20 + }, +/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/shipboard/brig/perma) -"ghA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/area/almayer/maint/hull/upper/u_a_p) +"ghy" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" }, -/obj/structure/surface/table/almayer, -/obj/item/toy/handcard/uno_reverse_red{ - pixel_x = 5; - pixel_y = 5 +/area/almayer/hallways/lower/starboard_midship_hallway) +"gib" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/obj/item/toy/deck/uno, -/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) -"ghF" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/maint/hull/lower/p_bow) +"gic" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orangecorner" + }, +/area/almayer/hallways/lower/starboard_umbilical) "gio" = ( /obj/structure/closet/emcloset, /obj/structure/sign/safety/restrictedarea{ @@ -30179,20 +30190,6 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"gjg" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/stairs{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/hallways/lower/port_midship_hallway) "gjm" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -30265,20 +30262,15 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) -"gkr" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) -"gkE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"gkl" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/maint/upper/mess) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "gkK" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/surface/table/reinforced/almayer_B, @@ -30289,21 +30281,16 @@ icon_state = "plate" }, /area/almayer/command/cic) -"glc" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "gll" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) +"glm" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "gls" = ( /obj/structure/filingcabinet/filingcabinet, /obj/item/clipboard, @@ -30316,6 +30303,17 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) +"glz" = ( +/obj/structure/largecrate/supply/generator, +/obj/item/reagent_container/food/drinks/bottle/whiskey{ + layer = 2.9; + pixel_x = -10; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "glB" = ( /obj/structure/sign/safety/chem_lab{ pixel_x = 5; @@ -30326,6 +30324,12 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) +"glC" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "glH" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 2; @@ -30339,6 +30343,10 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower/workshop) +"gma" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "gmb" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 @@ -30366,12 +30374,22 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"gmZ" = ( +"gmL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" + dir = 4; + icon_state = "blue" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/upper/aft_hallway) +"gnh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "gnu" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/green, @@ -30383,21 +30401,39 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"gnB" = ( -/obj/structure/platform_decoration{ - dir = 8 +"gnI" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/bag/trash{ + pixel_x = -3 + }, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"gnT" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"gnM" = ( -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 6; + icon_state = "red" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/hallways/upper/stern_hallway) +"gnV" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = -17; + pixel_y = -8 + }, +/obj/structure/sign/safety/stairs{ + pixel_x = -17; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/hallways/lower/port_midship_hallway) "gob" = ( /obj/structure/closet/fireaxecabinet{ pixel_y = 32 @@ -30407,12 +30443,16 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"gof" = ( -/obj/structure/platform_decoration{ - dir = 1 +"gog" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/item/reagent_container/glass/bucket{ + pixel_x = 12; + pixel_y = -5 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "goj" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 2; @@ -30434,19 +30474,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/weapon_room) -"goo" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_midship_hallway) "goy" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ @@ -30465,23 +30492,26 @@ icon_state = "test_floor4" }, /area/almayer/living/port_emb) +"goF" = ( +/obj/structure/sign/safety/rad_haz{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/lower/engine_core) "goL" = ( /turf/open/floor/almayer{ dir = 10; icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"goM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"goY" = ( -/turf/closed/wall/almayer, -/area/almayer/shipboard/panic) +"goS" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "gpc" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/airlock/almayer/engineering{ @@ -30506,26 +30536,33 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"gpO" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) "gpY" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/lifeboat_pumps/north1) -"gqf" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) -"gqt" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +"gqh" = ( +/turf/open/floor/almayer{ + icon_state = "bluecorner" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"gqy" = ( +/obj/structure/machinery/door_control{ + id = "safe_armory"; + name = "Hangar Armory Lockdown"; + pixel_y = 24; + req_access_txt = "4" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"gqv" = ( /turf/open/floor/almayer{ dir = 5; - icon_state = "silver" + icon_state = "plating" + }, +/area/almayer/shipboard/panic) +"gqD" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" }, /area/almayer/hallways/upper/aft_hallway) "gqP" = ( @@ -30538,34 +30575,21 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north1) -"gqQ" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21" - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17 - }, -/obj/structure/sign/poster/hero/voteno{ - pixel_y = 32 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"grd" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, +"grf" = ( +/obj/structure/closet/secure_closet/engineering_electrical, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) -"grv" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 - }, -/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/s_bow) +"gry" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = -15 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "grF" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, @@ -30586,21 +30610,9 @@ }, /area/almayer/living/briefing) "grT" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign{ - pixel_x = -3; - pixel_y = 2 - }, -/obj/item/tool/wet_sign{ - pixel_x = -8; - pixel_y = 6 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "gsd" = ( /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler{ @@ -30657,28 +30669,20 @@ /obj/effect/landmark/late_join, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) -"gsp" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"gst" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/maint/hull/lower/l_f_p) -"gsy" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"gsA" = ( /obj/structure/surface/rack, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/ob_ammo/ob_fuel, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = 32 - }, +/obj/item/storage/toolbox/mechanical, +/obj/effect/spawner/random/tool, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/maint/hull/lower/s_bow) "gsC" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ @@ -30704,6 +30708,16 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"gtc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "gtp" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/junction{ @@ -30715,25 +30729,47 @@ icon_state = "silvercorner" }, /area/almayer/command/cichallway) -"gtD" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"gtH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ +"gtA" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/transmitter{ + dir = 8; + name = "Medical Telephone"; + phone_category = "Almayer"; + phone_id = "Medical Lower"; + pixel_x = 16 + }, +/obj/item/device/helmet_visor/medical/advanced, +/obj/item/device/helmet_visor/medical/advanced, +/obj/item/device/helmet_visor/medical/advanced, +/obj/item/device/helmet_visor/medical/advanced, +/turf/open/floor/almayer{ + icon_state = "sterile_green" + }, +/area/almayer/medical/lockerroom) +"gtF" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) +"gtL" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_aft_hallway) -"gtQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/area/almayer/hallways/lower/port_aft_hallway) +"gtT" = ( +/obj/structure/sign/safety/south{ + pixel_x = -17; + pixel_y = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/hallways/lower/port_midship_hallway) "gtU" = ( /obj/structure/machinery/power/apc/almayer{ dir = 8 @@ -30756,24 +30792,13 @@ icon_state = "redfull" }, /area/almayer/lifeboat_pumps/south2) -"gur" = ( -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 - }, -/obj/item/reagent_container/glass/bucket, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/u_m_s) -"guK" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 +"guv" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -1; + pixel_y = 13 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "guS" = ( /obj/structure/reagent_dispensers/fueltank/custom, /turf/open/floor/almayer{ @@ -30800,6 +30825,21 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) +"gvj" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "gvq" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = -25 @@ -30808,10 +30848,12 @@ icon_state = "silver" }, /area/almayer/command/cic) -"gvK" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +"gvt" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) "gvU" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -30851,8 +30893,17 @@ icon_state = "plate" }, /area/almayer/living/gym) -"gwM" = ( -/obj/structure/pipes/vents/pump, +"gwD" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/regular, +/obj/item/clipboard, +/obj/item/tool/pen, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"gwM" = ( +/obj/structure/pipes/vents/pump, /obj/structure/mirror{ pixel_y = 32 }, @@ -30883,6 +30934,15 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) +"gwW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "gxh" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/o2, @@ -30898,18 +30958,12 @@ icon_state = "plate" }, /area/almayer/shipboard/starboard_point_defense) -"gxm" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/stairs) "gxn" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"gxI" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/s_bow) "gxO" = ( /turf/open/floor/almayer{ dir = 10; @@ -30925,59 +30979,36 @@ dir = 8 }, /area/almayer/medical/containment/cell) -"gxR" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) -"gxU" = ( -/obj/structure/surface/table/almayer, -/obj/item/toy/deck, +"gxS" = ( /turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" + icon_state = "plate" }, -/area/almayer/shipboard/brig/cic_hallway) -"gyb" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/maint/upper/u_m_p) +"gxW" = ( +/obj/item/stack/catwalk, +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_a_p) +"gyc" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/vehicle/powerloader{ + dir = 8 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" + dir = 10; + icon_state = "cargo" }, -/area/almayer/hallways/upper/aft_hallway) -"gyn" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/hallways/lower/vehiclehangar) "gyv" = ( /obj/structure/platform_decoration{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"gyw" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_aft_hallway) -"gyE" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_aft_hallway) -"gyH" = ( -/obj/item/tool/warning_cone{ - pixel_x = -12; - pixel_y = 16 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "gyN" = ( /obj/structure/machinery/prop{ desc = "It's a server box..."; @@ -30997,6 +31028,22 @@ icon_state = "orange" }, /area/almayer/engineering/ce_room) +"gyR" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) +"gyT" = ( +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/maint/hull/upper/u_a_p) "gyU" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -31039,6 +31086,16 @@ /obj/item/reagent_container/hypospray/autoinjector/skillless, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"gzx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"gzE" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) "gzI" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -31057,23 +31114,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"gzM" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/port_midship_hallway) -"gzN" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "gzV" = ( /obj/structure/sink{ dir = 1; @@ -31128,12 +31168,54 @@ "gAA" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha_bravo_shared) +"gAC" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/waterbottle{ + pixel_x = 9; + pixel_y = 3 + }, +/obj/item/prop/helmetgarb/flair_io{ + pixel_x = -10; + pixel_y = 6 + }, +/obj/item/prop/magazine/boots/n160{ + pixel_x = -6; + pixel_y = -5 + }, +/obj/structure/transmitter/rotary{ + name = "Flight Deck Telephone"; + phone_category = "Almayer"; + phone_id = "Flight Deck"; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/repair_bay) +"gAL" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "gAS" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/medical/medical_science) +"gAY" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orangecorner" + }, +/area/almayer/hallways/lower/port_umbilical) "gBc" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -31149,40 +31231,21 @@ icon_state = "plate" }, /area/almayer/squads/bravo) -"gBd" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"gBg" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) "gBo" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"gBs" = ( -/obj/structure/machinery/door/airlock/almayer/maint, +"gBO" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_p) -"gBU" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/bag/trash{ - pixel_x = -3 - }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 + icon_state = "orange" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/maint/hull/upper/u_a_s) +"gBP" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "gBW" = ( /obj/structure/machinery/floodlight/landing{ name = "bolted floodlight" @@ -31191,27 +31254,23 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"gBZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/hallways/upper/stern_hallway) "gCf" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer{ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"gCu" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = 16 +"gCj" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 }, /turf/open/floor/almayer{ + allow_construction = 0; icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/hallways/lower/starboard_fore_hallway) "gCw" = ( /obj/item/reagent_container/food/drinks/cans/beer{ pixel_x = 10 @@ -31239,12 +31298,16 @@ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"gCQ" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/turf/open/floor/almayer{ - icon_state = "cargo" +"gCX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/upper/u_a_s) +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "gDp" = ( /obj/structure/machinery/light{ dir = 4 @@ -31274,11 +31337,6 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"gDQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) "gDW" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -31291,19 +31349,22 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"gDX" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) "gEg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices/flight) -"gEh" = ( +"gEj" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) +"gEk" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/lower/l_f_s) "gEo" = ( /obj/structure/machinery/cryopod/right, /obj/structure/machinery/light{ @@ -31327,12 +31388,47 @@ icon_state = "plate" }, /area/almayer/engineering/lower) +"gEM" = ( +/obj/structure/surface/table/almayer, +/obj/item/pizzabox/meat, +/obj/item/reagent_container/food/drinks/cans/souto/diet/peach{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/reagent_container/food/drinks/cans/souto/diet/cherry{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) +"gER" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck{ + pixel_y = 14 + }, +/obj/item/trash/cigbutt/ucigbutt{ + layer = 3.7; + pixel_x = 5; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "gFa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_point_defense) +"gFc" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/lower/l_m_s) "gFd" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/atmospipes{ @@ -31342,24 +31438,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"gFL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"gFN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "gFP" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/stern_point_defense) @@ -31370,14 +31448,6 @@ icon_state = "cargo" }, /area/almayer/living/commandbunks) -"gGb" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "gGf" = ( /obj/structure/machinery/light{ dir = 1 @@ -31431,14 +31501,6 @@ }, /turf/open/floor/plating, /area/almayer/hallways/hangar) -"gGw" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/vehiclehangar) "gGx" = ( /obj/structure/filingcabinet/chestdrawer{ density = 0; @@ -31469,6 +31531,9 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) +"gGX" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "gHh" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -31476,12 +31541,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) -"gHi" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_m_s) "gHj" = ( /obj/structure/machinery/light, /obj/structure/closet/secure_closet/fridge/groceries/stock, @@ -31495,6 +31554,12 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) +"gHm" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "gHo" = ( /obj/structure/machinery/door/airlock/almayer/marine/delta/tl, /turf/open/floor/almayer{ @@ -31508,22 +31573,37 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"gHX" = ( -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 +"gHx" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/hallways/upper/aft_hallway) +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "gHZ" = ( /turf/open/floor/almayer{ icon_state = "test_floor4" }, /area/almayer/hallways/hangar) +"gIe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "gIh" = ( /obj/structure/machinery/door/airlock/almayer/generic{ damage_cap = 50000; @@ -31536,12 +31616,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/ce_room) -"gIm" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "gII" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -31553,13 +31627,14 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/port) -"gIN" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 +"gIK" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_umbilical) "gIU" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/tapes{ @@ -31578,24 +31653,6 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/evidence_storage) -"gJf" = ( -/obj/structure/bed/sofa/south/grey/left{ - pixel_y = 12 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"gJp" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/repair_bay) -"gJF" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/s_stern) "gJO" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/door/window/southleft{ @@ -31615,20 +31672,6 @@ icon_state = "green" }, /area/almayer/living/offices) -"gJY" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard{ - pixel_x = 12; - pixel_y = 7 - }, -/obj/item/tool/crowbar{ - pixel_x = 6; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/u_m_p) "gKd" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -31639,25 +31682,32 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"gKo" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +"gKl" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/almayer/maint/hull/lower/l_f_p) +"gKn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"gKv" = ( -/obj/effect/landmark/yautja_teleport, +/area/almayer/hallways/lower/starboard_midship_hallway) +"gKs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_bow) -"gKw" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/hallways/lower/port_fore_hallway) "gKB" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/machinery/firealarm{ @@ -31677,11 +31727,19 @@ icon_state = "redfull" }, /area/almayer/shipboard/port_missiles) -"gKK" = ( +"gKN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, /turf/open/floor/almayer{ - icon_state = "silvercorner" + dir = 8; + icon_state = "greencorner" }, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/hallways/lower/port_fore_hallway) "gKR" = ( /obj/structure/closet/emcloset, /obj/structure/machinery/light{ @@ -31716,11 +31774,12 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/hydroponics) "gLm" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"gLo" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "gLz" = ( /obj/structure/machinery/cryopod{ layer = 3.1; @@ -31795,17 +31854,20 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"gMk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +"gMj" = ( +/obj/item/tool/weldingtool, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "red" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"gMJ" = ( -/obj/structure/largecrate/supply/weapons/pistols, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/upper/u_a_p) +"gMC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "gMN" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -31839,18 +31901,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"gMS" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_umbilical) "gMU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -31859,18 +31909,25 @@ dir = 4 }, /area/almayer/living/briefing) -"gNg" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +"gMX" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/obj/structure/machinery/power/apc/almayer, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"gNo" = ( +/area/almayer/maint/hull/lower/stern) +"gNj" = ( +/obj/structure/machinery/vending/cola, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/u_m_p) +/area/almayer/maint/hull/upper/s_stern) +"gNl" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "gNp" = ( /turf/open/floor/almayer{ dir = 9; @@ -31888,22 +31945,6 @@ icon_state = "plate" }, /area/almayer/squads/charlie_delta_shared) -"gNy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) -"gNN" = ( -/obj/structure/bed/chair/office/dark, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) "gNO" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -31913,22 +31954,13 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"gNQ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"gNZ" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"gOk" = ( -/obj/structure/largecrate/guns/merc{ - name = "\improper dodgy crate" +"gOf" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/maint/hull/upper/u_m_p) "gOs" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -31956,6 +31988,15 @@ icon_state = "silver" }, /area/almayer/command/airoom) +"gOu" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "gOC" = ( /obj/structure/machinery/recharge_station, /turf/open/floor/almayer{ @@ -31970,12 +32011,6 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"gOS" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "emerald" - }, -/area/almayer/hallways/lower/port_midship_hallway) "gPc" = ( /obj/structure/machinery/power/terminal{ dir = 1 @@ -32002,25 +32037,20 @@ dir = 4 }, /area/almayer/command/airoom) -"gPS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"gPs" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 }, -/area/almayer/maint/hull/lower/l_a_s) -"gPU" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"gQd" = ( +/obj/structure/sign/safety/storage{ + pixel_y = -32 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "green" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/hallways/lower/starboard_midship_hallway) "gQk" = ( /obj/structure/surface/table/almayer, /obj/structure/sign/safety/terminal{ @@ -32029,16 +32059,12 @@ /obj/structure/machinery/faxmachine/corporate/liaison, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"gQu" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/storage/firstaid/rad, -/obj/structure/surface/rack, +"gQz" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_a_s) "gQF" = ( /obj/structure/bed/chair/comfy{ buckling_y = 2; @@ -32055,18 +32081,6 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"gQQ" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) -"gRc" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) "gRd" = ( /obj/structure/platform, /obj/structure/target{ @@ -32075,17 +32089,42 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"gRJ" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"gRq" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" + icon_state = "cargo" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/maint/hull/upper/u_f_s) +"gRt" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"gRz" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;30;34" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/mess) +"gRB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "gRP" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -32094,6 +32133,27 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"gRV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_aft_hallway) +"gRW" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "gSa" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -32126,36 +32186,36 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"gSy" = ( -/obj/item/frame/rack{ - layer = 3.1; - pixel_y = 19 - }, -/obj/structure/surface/rack, -/obj/item/tool/weldpack{ - pixel_x = 5 - }, -/obj/item/tool/weldpack{ - pixel_x = -2 +"gSq" = ( +/obj/structure/bed/sofa/south/grey/right{ + pixel_y = 12 }, /turf/open/floor/almayer, /area/almayer/maint/hull/upper/u_f_s) -"gSH" = ( -/obj/structure/largecrate/random/barrel/white, +"gSG" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "green" }, -/area/almayer/maint/hull/lower/l_m_s) -"gTk" = ( +/area/almayer/hallways/lower/starboard_midship_hallway) +"gTi" = ( /obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 4 +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -8 }, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_y = 12 }, -/area/almayer/hallways/lower/port_umbilical) +/obj/item/clothing/head/militia/bucket{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 8; + pixel_y = -1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "gTH" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/skills{ @@ -32173,28 +32233,16 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"gTK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) "gTV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; +/obj/structure/sign/safety/rad_haz{ + pixel_x = 8; pixel_y = 32 }, +/obj/structure/machinery/power/reactor, /turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/engineering/lower/engine_core) "gUf" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /turf/open/floor/almayer{ @@ -32210,38 +32258,21 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/general_equipment) -"gUi" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) -"gUk" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"gUn" = ( +"gUo" = ( /obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"gUu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"gUG" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 +/area/almayer/maint/hull/lower/l_f_s) +"gUt" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "orangecorner" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/hallways/upper/stern_hallway) "gUL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -32327,30 +32358,19 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"gWm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"gVP" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/maint/hull/lower/l_m_s) +"gWj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"gWt" = ( -/obj/structure/surface/table/almayer, -/obj/item/pipe{ - dir = 9 - }, -/obj/item/tool/screwdriver{ - layer = 3.6; - pixel_x = 9; - pixel_y = 8 - }, -/obj/item/tool/crowbar/red{ - pixel_x = 17 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/maint/upper/u_m_s) "gWu" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -32369,6 +32389,16 @@ }, /turf/open/floor/plating, /area/almayer/medical/upper_medical) +"gWL" = ( +/obj/structure/ladder{ + height = 2; + id = "ForePortMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = -17 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/p_bow) "gXl" = ( /obj/structure/closet/secure_closet/personal/cabinet{ req_access_txt = "5" @@ -32416,34 +32446,6 @@ icon_state = "plating" }, /area/almayer/shipboard/sea_office) -"gYg" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/almayer/flight_recorder{ - pixel_x = 9 - }, -/obj/item/tool/weldingtool{ - pixel_x = -7; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) -"gYj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "gYl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -32463,23 +32465,12 @@ icon_state = "redfull" }, /area/almayer/living/offices/flight) -"gYI" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/effect/decal/cleanable/blood/oil/streak, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"gYU" = ( -/obj/structure/machinery/light/small{ +"gYL" = ( +/obj/structure/bed/chair{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "gZw" = ( /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/almayer, @@ -32487,6 +32478,12 @@ "gZK" = ( /turf/open/floor/almayer, /area/almayer/living/auxiliary_officer_office) +"gZO" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "gZP" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ id_tag = "Boat2-D4"; @@ -32497,22 +32494,21 @@ icon_state = "test_floor4" }, /area/almayer/command/lifeboat) -"gZW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/lower/port_fore_hallway) "had" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "red" }, /area/almayer/command/lifeboat) +"hak" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_umbilical) "hal" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 1 @@ -32565,11 +32561,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) -"haO" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "haQ" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -32583,30 +32574,6 @@ icon_state = "plate" }, /area/almayer/living/offices) -"haR" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/s_bow) -"hbl" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/upper/u_m_s) -"hbp" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/p_stern) "hbs" = ( /obj/structure/surface/table/almayer, /obj/item/frame/fire_alarm, @@ -32624,26 +32591,18 @@ icon_state = "silver" }, /area/almayer/living/auxiliary_officer_office) -"hbA" = ( +"hbH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"hbE" = ( -/obj/structure/largecrate/random, -/obj/item/reagent_container/food/snacks/cheesecakeslice{ - pixel_y = 8 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 - }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/hallways/lower/port_fore_hallway) "hbI" = ( /obj/structure/sign/safety/ammunition{ pixel_x = 32; @@ -32654,6 +32613,21 @@ icon_state = "redfull" }, /area/almayer/medical/upper_medical) +"hbK" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/upper/stern_hallway) +"hbP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) "hcf" = ( /obj/item/bedsheet/brown{ layer = 3.2 @@ -32700,6 +32674,16 @@ icon_state = "plate" }, /area/almayer/living/cryo_cells) +"hcx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "plating_striped" + }, +/area/almayer/squads/req) "hcI" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -32708,21 +32692,18 @@ icon_state = "cargo" }, /area/almayer/squads/delta) -"hcX" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower/engine_core) "hdd" = ( /turf/open/floor/almayer{ dir = 9; icon_state = "red" }, /area/almayer/shipboard/starboard_missiles) +"hdf" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_p) "hds" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -32732,13 +32713,13 @@ icon_state = "cargo_arrow" }, /area/almayer/living/offices) -"hdy" = ( -/obj/item/storage/firstaid/fire, -/obj/structure/surface/rack, +"hdC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/hallways/lower/starboard_aft_hallway) "hdE" = ( /obj/structure/filingcabinet, /obj/item/reagent_container/food/drinks/coffeecup/uscm{ @@ -32748,16 +32729,10 @@ icon_state = "green" }, /area/almayer/squads/req) -"hdV" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/port_midship_hallway) +"hdO" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "hec" = ( /turf/open/floor/almayer{ dir = 8; @@ -32785,6 +32760,14 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/armory) +"heI" = ( +/obj/structure/largecrate/random/case{ + layer = 2.98 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "heK" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1; @@ -32794,10 +32777,14 @@ icon_state = "test_floor4" }, /area/almayer/living/port_emb) -"heO" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +"heM" = ( +/obj/structure/machinery/prop/almayer/computer{ + pixel_y = 20 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/repair_bay) "heS" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -32834,36 +32821,16 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"hfc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/upper/stern_hallway) -"hfv" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/s_bow) -"hfO" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/item/storage/belt/utility/full{ - pixel_y = 8 - }, -/obj/item/storage/belt/utility/full, -/obj/item/clothing/suit/storage/hazardvest/black, -/obj/item/tool/crowbar, +"hfs" = ( +/obj/item/tool/kitchen/utensil/pfork, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/p_stern) +"hfx" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "hfQ" = ( /obj/structure/window/framed/almayer, /turf/open/floor/almayer{ @@ -32879,12 +32846,6 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"hgk" = ( -/obj/structure/largecrate/random, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "hgo" = ( /obj/structure/machinery/light{ dir = 8 @@ -32894,37 +32855,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"hgp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) -"hgs" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hgA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "hgB" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/intel, @@ -32958,17 +32888,15 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"hgO" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/prop/almayer/computer/PC{ +"hgR" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/item/tool/stamp/approved{ - pixel_y = -11; - pixel_x = -3 +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/turf/open/floor/almayer, -/area/almayer/squads/req) +/area/almayer/maint/hull/lower/l_a_p) "hgZ" = ( /obj/structure/machinery/door_control{ dir = 1; @@ -32981,31 +32909,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_three) -"hhd" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat/orange{ - pixel_x = -9; - pixel_y = 16 - }, -/obj/item/clothing/suit/storage/hazardvest/blue{ - pixel_x = -7; - pixel_y = -4 - }, -/obj/item/clothing/head/hardhat{ - pixel_x = 10; - pixel_y = 1 - }, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = 1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"hhg" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "hhn" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -33020,6 +32923,18 @@ /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) +"hhG" = ( +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_x = -28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "hhW" = ( /obj/structure/surface/rack, /obj/item/storage/box/gloves{ @@ -33045,16 +32960,6 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"hiu" = ( -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice13"; - pixel_x = 16; - pixel_y = 16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "hiy" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -33070,22 +32975,18 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"hiP" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 +"hiU" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" +/obj/effect/decal/cleanable/blood, +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hja" = ( -/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_f_p) "hji" = ( /obj/structure/bed/chair{ dir = 4 @@ -33139,36 +33040,28 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/processing) -"hjQ" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hjT" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/obj/structure/largecrate, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "hki" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/almayer{ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) -"hkz" = ( -/obj/structure/machinery/light/small{ +"hko" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "red" }, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/living/cryo_cells) +"hky" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "hkB" = ( /obj/structure/sign/safety/rewire{ pixel_x = 8; @@ -33176,12 +33069,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/port_point_defense) -"hkC" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = -32 +"hkF" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 6 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) +/obj/item/weapon/gun/rifle/l42a, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "hkG" = ( /obj/structure/sign/safety/ammunition{ pixel_y = -32 @@ -33218,6 +33115,21 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) +"hkI" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"hkN" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "hkX" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/device/flashlight/lamp/green{ @@ -33237,6 +33149,17 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"hlm" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/reagent_dispensers/fueltank{ + anchored = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "hlH" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -33247,6 +33170,13 @@ icon_state = "plate" }, /area/almayer/engineering/lower) +"hlP" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "hlT" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -33275,6 +33205,16 @@ icon_state = "test_floor4" }, /area/almayer/command/cichallway) +"hlW" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = 32 + }, +/obj/structure/sign/safety/north{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "hlX" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -33307,12 +33247,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/starboard) -"hmv" = ( -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower/engine_core) "hmw" = ( /obj/structure/platform{ dir = 1 @@ -33334,19 +33268,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"hmA" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/p_bow) -"hmB" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = -32 - }, -/obj/structure/sign/safety/south{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) "hmC" = ( /obj/structure/machinery/cm_vending/sorted/marine_food{ density = 0; @@ -33359,6 +33280,9 @@ icon_state = "plate" }, /area/almayer/squads/delta) +"hmD" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "hmF" = ( /obj/structure/window/reinforced{ dir = 4; @@ -33385,36 +33309,18 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/main_office) +"hmM" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "hmS" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ icon_state = "blue" }, /area/almayer/command/cichallway) -"hmV" = ( -/obj/structure/bookcase{ - icon_state = "book-5"; - name = "medical manuals bookcase"; - opacity = 0 - }, -/obj/item/book/manual/surgery, -/obj/item/book/manual/medical_diagnostics_manual, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) -"hmZ" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "hng" = ( /obj/structure/surface/table/almayer, /obj/item/clothing/accessory/storage/black_vest/acid_harness, @@ -33430,18 +33336,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/hydroponics) -"hnt" = ( -/obj/item/toy/deck{ - pixel_y = 12 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 32 - }, -/obj/structure/surface/table/woodentable/poor, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "hnI" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -33455,46 +33349,52 @@ icon_state = "test_floor4" }, /area/almayer/living/pilotbunks) -"hnP" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 +"hnK" = ( +/obj/structure/coatrack, +/obj/structure/sign/poster/clf{ + pixel_x = -28 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/sign/nosmoking_1{ + pixel_y = 30 }, -/obj/structure/sign/safety/fire_haz{ - pixel_y = -32 +/obj/structure/machinery/light/small{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"hoc" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/lower/l_m_s) +"hnP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, /turf/open/floor/almayer{ - icon_state = "mono" + dir = 5; + icon_state = "plating" }, /area/almayer/hallways/lower/vehiclehangar) -"hog" = ( -/obj/structure/machinery/light/small, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"hoC" = ( +/obj/item/storage/firstaid/fire, +/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/upper/u_a_s) "hoT" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/area/almayer/maint/hull/upper/u_m_s) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"hpa" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "hpk" = ( /obj/structure/sign/safety/fire_haz{ pixel_x = 8; @@ -33511,6 +33411,19 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) +"hpO" = ( +/obj/structure/prop/almayer/computers/sensor_computer2, +/obj/structure/machinery/door_control{ + id = "Secretroom"; + indestructible = 1; + layer = 2.5; + name = "Shutters"; + use_power = 0 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "hpS" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "crate_room3"; @@ -33530,15 +33443,20 @@ }, /turf/open/floor/almayer, /area/almayer/living/chapel) -"hqb" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_s) "hqc" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/engineering/lower) +"hqg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/vehiclehangar) "hqh" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -33552,34 +33470,22 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/almayer/research/containment/entrance, /area/almayer/medical/containment/cell) -"hqm" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) -"hqp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"hqu" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/almayer{ - icon_state = "plate" +"hqJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" }, -/area/almayer/maint/hull/upper/u_a_p) -"hqx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/escapepod{ + pixel_x = -17 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/sign/poster/hero/voteno{ + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) +"hqM" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "hqU" = ( /obj/structure/bed/chair{ dir = 8; @@ -33603,6 +33509,19 @@ icon_state = "test_floor4" }, /area/almayer/medical/lower_medical_lobby) +"hqX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/hallways/lower/port_fore_hallway) "hrm" = ( /obj/structure/closet/secure_closet/staff_officer/armory/shotgun, /obj/structure/machinery/light, @@ -33627,15 +33546,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/medical_science) -"hro" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) "hrF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -33645,19 +33555,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/starboard_point_defense) -"hrI" = ( -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"hrJ" = ( -/obj/structure/sign/safety/autodoc{ - pixel_x = 20; - pixel_y = -32 - }, -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) "hrO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -33667,18 +33564,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/main_office) -"hsc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_umbilical) +"hsf" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "hsg" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -33689,21 +33577,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"hsh" = ( -/obj/structure/coatrack, -/obj/structure/sign/poster/clf{ - pixel_x = -28 - }, -/obj/structure/sign/nosmoking_1{ - pixel_y = 30 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "hsj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -33721,19 +33594,9 @@ icon_state = "test_floor4" }, /area/almayer/squads/delta) -"hsu" = ( -/obj/structure/bed/sofa/south/grey{ - pixel_y = 12 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "hsy" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/engineering/lower/engine_core) -"hsK" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "hsW" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -33750,55 +33613,33 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/starboard) -"hte" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"htg" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +"htn" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/obj/structure/largecrate/supply/supplies/flares, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"htk" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 8 + icon_state = "test_floor4" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/maint/hull/upper/p_bow) +"hts" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/maint/lower/cryo_cells) -"htl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"htq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) -"htF" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = 32 - }, -/obj/structure/sign/safety/north{ - pixel_x = 15; - pixel_y = 32 +/area/almayer/maint/hull/lower/stern) +"htB" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "htG" = ( /obj/item/tool/soap, /obj/structure/machinery/light/small{ @@ -33827,26 +33668,22 @@ icon_state = "greenfull" }, /area/almayer/living/offices) -"hux" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +"huD" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_f_s) +"huI" = ( +/obj/structure/barricade/handrail{ + dir = 8 }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/upper/aft_hallway) -"huD" = ( -/obj/structure/machinery/light{ - dir = 1 + icon_state = "test_floor5" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/hallways/lower/starboard_midship_hallway) "huK" = ( /turf/open/floor/almayer{ icon_state = "redcorner" @@ -33862,12 +33699,6 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"huP" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) "huU" = ( /obj/structure/machinery/door/airlock/almayer/security{ access_modified = 1; @@ -33883,15 +33714,33 @@ icon_state = "test_floor4" }, /area/almayer/living/briefing) -"hvq" = ( -/obj/structure/bed/chair{ +"huW" = ( +/obj/structure/stairs{ dir = 8; - pixel_y = 3 + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/upper/aft_hallway) +"huZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/status_display{ + pixel_x = 32 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 9; + icon_state = "red" }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/hallways/lower/port_fore_hallway) "hvv" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -33921,26 +33770,25 @@ /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/plating, /area/almayer/powered/agent) -"hvx" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +"hvH" = ( +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) +"hvP" = ( +/obj/item/trash/barcardine, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"hws" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/sign/safety/life_support{ + pixel_x = 14; + pixel_y = -25 }, -/area/almayer/maint/hull/lower/l_f_p) -"hvz" = ( -/obj/structure/machinery/light, /turf/open/floor/almayer{ - icon_state = "green" + icon_state = "mono" }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hvH" = ( -/turf/open/floor/wood/ship, -/area/almayer/living/commandbunks) +/area/almayer/hallways/upper/stern_hallway) "hwC" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -33950,19 +33798,13 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering) -"hwH" = ( -/obj/structure/stairs{ +"hwQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "hxe" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -33985,6 +33827,14 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_missiles) +"hxU" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "hxZ" = ( /obj/structure/surface/rack, /obj/item/tool/shovel/spade{ @@ -34009,17 +33859,44 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"hyb" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" +"hyj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/maint/hull/lower/l_a_s) +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "hyk" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/squads/charlie_delta_shared) +"hys" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/effect/landmark/start/nurse, +/obj/effect/landmark/late_join/nurse, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"hyu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "southcheckpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/hallways/lower/port_midship_hallway) "hyw" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -34044,17 +33921,17 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"hyQ" = ( -/turf/closed/wall/almayer, -/area/almayer/living/synthcloset) -"hza" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"hyL" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/maint/hull/upper/p_stern) +"hyQ" = ( +/turf/closed/wall/almayer, +/area/almayer/living/synthcloset) "hzb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4; @@ -34069,16 +33946,9 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"hzl" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/snacks/mre_pack/meal5, -/obj/item/device/flashlight/lamp{ - pixel_x = 3; - pixel_y = 12 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) +"hzp" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "hzs" = ( /obj/structure/bed, /obj/item/bedsheet/medical, @@ -34114,10 +33984,12 @@ icon_state = "test_floor4" }, /area/almayer/command/cic) -"hzN" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +"hAb" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) "hAc" = ( /obj/structure/surface/rack, /obj/item/mortar_shell/flare, @@ -34126,9 +33998,13 @@ icon_state = "cargo" }, /area/almayer/squads/req) -"hAh" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/hallways/lower/port_umbilical) +"hAd" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/u_f_s) +"hAu" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "hAz" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -34137,19 +34013,6 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"hAA" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 8; - id = "laddersoutheast"; - name = "\improper South East Ladders Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_midship_hallway) "hAG" = ( /obj/structure/closet/crate/internals, /obj/item/handcuffs/cable/blue, @@ -34184,14 +34047,6 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"hBa" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) "hBc" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -34200,30 +34055,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_medbay) -"hBr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) -"hBy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) "hBz" = ( /obj/item/mortar_kit, /turf/open/floor/almayer{ @@ -34235,50 +34066,33 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"hBG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/repair_bay) "hBL" = ( /obj/structure/closet/emcloset, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/command/lifeboat) -"hBW" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_fore_hallway) -"hCf" = ( -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 +"hBR" = ( +/obj/structure/platform{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"hCk" = ( -/obj/structure/largecrate/random/barrel/red, +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) -"hCq" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/area/almayer/maint/hull/upper/u_a_s) +"hBS" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "orange" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/hallways/upper/stern_hallway) "hCt" = ( /obj/structure/sign/safety/terminal{ pixel_x = 15; @@ -34291,12 +34105,11 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"hCF" = ( -/obj/structure/machinery/light, +"hCv" = ( /turf/open/floor/almayer{ - icon_state = "blue" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_f_p) "hCS" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/paper_bin/uscm{ @@ -34331,6 +34144,26 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"hDA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/panic) "hDR" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/syringe_case{ @@ -34346,16 +34179,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_medbay) -"hDU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/hallways/lower/port_fore_hallway) "hDV" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, @@ -34379,53 +34202,14 @@ }, /area/almayer/squads/bravo) "hEg" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/port_fore_hallway) -"hEj" = ( -/obj/structure/machinery/vending/hydronutrients, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) +/turf/closed/wall/almayer/outer, +/area/almayer/hallways/lower/starboard_umbilical) "hEl" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"hEm" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 2 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"hEr" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "hEw" = ( /obj/structure/pipes/standard/simple/visible{ dir = 10 @@ -34435,10 +34219,55 @@ icon_state = "orange" }, /area/almayer/engineering/lower) +"hEy" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"hEB" = ( +/obj/structure/ladder{ + height = 2; + id = "AftStarboardMaint" + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/u_a_s) +"hEE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) +"hEQ" = ( +/obj/structure/machinery/door/airlock/almayer/medical/glass{ + dir = 1; + id = "medcryobeds"; + id_tag = "medcryobeds"; + name = "Medical Wheelchair Storage"; + req_access = null; + req_one_access = null + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/lower_medical_medbay) "hEV" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"hEZ" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/almayer{ + allow_construction = 0; + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_midship_hallway) "hFw" = ( /obj/structure/machinery/disposal/broken, /turf/open/floor/almayer{ @@ -34464,15 +34293,24 @@ icon_state = "test_floor4" }, /area/almayer/medical/morgue) -"hGo" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +"hFR" = ( +/obj/structure/ladder{ + height = 1; + id = "AftStarboardMaint" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/l_a_s) +"hFU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "hGG" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -34544,15 +34382,60 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"hIp" = ( +"hHs" = ( +/obj/structure/surface/rack, +/obj/item/device/radio, +/obj/item/tool/weldpack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/vehiclehangar) +"hHz" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) +"hIh" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-y" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/shipboard/brig/cic_hallway) +"hIl" = ( /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "NW-out"; + layer = 2.5 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/upper/p_bow) +"hIm" = ( +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) +"hIq" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "hIs" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -34563,16 +34446,6 @@ icon_state = "dark_sterile" }, /area/almayer/command/corporateliaison) -"hIF" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) -"hIG" = ( -/obj/structure/largecrate/random, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "hII" = ( /obj/structure/machinery/cm_vending/gear/tl{ density = 0; @@ -34587,12 +34460,14 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"hIX" = ( -/obj/structure/largecrate/random/case/double, +"hIT" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/upper/mess) "hJg" = ( /obj/structure/pipes/trinary/mixer{ dir = 4; @@ -34612,27 +34487,17 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"hJD" = ( -/obj/structure/bed/sofa/south/grey/right{ - pixel_y = 12 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +"hJt" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "hJI" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"hKe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) "hKl" = ( /obj/structure/pipes/vents/pump, /obj/effect/decal/warning_stripes{ @@ -34656,52 +34521,85 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"hKJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"hKL" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer{ + allow_construction = 0 }, +/area/almayer/hallways/lower/port_fore_hallway) +"hKS" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" + dir = 10; + icon_state = "red" }, -/area/almayer/hallways/upper/aft_hallway) -"hKO" = ( -/obj/structure/largecrate/random/barrel/green, -/obj/structure/sign/safety/maint{ +/area/almayer/hallways/upper/stern_hallway) +"hKX" = ( +/obj/structure/sign/safety/escapepod{ pixel_x = 8; pixel_y = 32 }, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) -"hLt" = ( -/obj/structure/sign/poster{ - desc = "It says DRUG."; - icon_state = "poster2"; - pixel_y = 30 + dir = 4; + icon_state = "greencorner" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/hallways/lower/starboard_midship_hallway) +"hLq" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"hLu" = ( -/obj/structure/sign/safety/hvac_old{ +/obj/structure/sign/safety/water{ pixel_x = 8; - pixel_y = -32 + pixel_y = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/maint/hull/lower/l_m_p) +"hLA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/lower/vehiclehangar) "hLC" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/living/grunt_rnr) +"hLD" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"hLF" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = -7; + pixel_y = 9 + }, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = 9 + }, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = -9; + pixel_y = -4 + }, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_y = -2 + }, +/obj/item/reagent_container/pill/happy, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) "hLI" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -34719,6 +34617,14 @@ icon_state = "test_floor4" }, /area/almayer/living/briefing) +"hLW" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/s_bow) "hMc" = ( /obj/structure/bed/chair/comfy/orange{ dir = 8 @@ -34729,39 +34635,26 @@ /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/almayer/living/chapel) -"hMk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "hMG" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/engineering/lower) -"hMM" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) "hMN" = ( /obj/structure/machinery/power/apc/almayer, /turf/open/floor/almayer{ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_three) +"hMV" = ( +/obj/item/storage/firstaid, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "hNh" = ( -/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/s_bow) "hNl" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_21"; @@ -34773,15 +34666,17 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"hNv" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = -32 +"hNn" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer{ - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/upper/u_a_p) "hNw" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -34789,17 +34684,14 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/squads/charlie) -"hNB" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "7;19" - }, +"hNJ" = ( +/obj/structure/surface/rack, +/obj/item/tool/kitchen/rollingpin, +/obj/item/tool/hatchet, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/maint/hull/lower/p_bow) "hNM" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/stack/sheet/metal{ @@ -34826,25 +34718,18 @@ icon_state = "red" }, /area/almayer/shipboard/brig/chief_mp_office) -"hOu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancenorth"; - name = "North Hangar Podlocks"; - pixel_y = -26; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +"hOb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "red" }, +/area/almayer/hallways/upper/stern_hallway) +"hOc" = ( +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"hOV" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/lower/constr) +/area/almayer/maint/hull/upper/s_stern) "hPe" = ( /obj/structure/disposalpipe/segment, /obj/structure/machinery/door/airlock/multi_tile/almayer/medidoor/research, @@ -34857,6 +34742,12 @@ icon_state = "test_floor4" }, /area/almayer/medical/medical_science) +"hPf" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) "hPh" = ( /obj/structure/bed/chair/comfy, /turf/open/floor/almayer{ @@ -34864,31 +34755,23 @@ icon_state = "silver" }, /area/almayer/living/auxiliary_officer_office) -"hPr" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"hPu" = ( -/obj/structure/largecrate/supply, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - icon_state = "cargo" +"hPk" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/maint/hull/upper/u_f_p) -"hPD" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"hPF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" + dir = 1; + icon_state = "green" }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/hallways/lower/port_midship_hallway) "hPI" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/brig/perma) @@ -34916,10 +34799,18 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/charlie_delta_shared) -"hQf" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +"hQo" = ( +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) +"hQs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "hQw" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -34927,10 +34818,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/engine_core) -"hQK" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_p) "hQP" = ( /obj/structure/reagent_dispensers/fueltank/custom, /turf/open/floor/almayer{ @@ -35012,17 +34899,6 @@ icon_state = "plate" }, /area/almayer/living/numbertwobunks) -"hRA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "hRW" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -35050,26 +34926,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"hSb" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) -"hSj" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig"; - closeOtherId = "brigmaint_n" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/s_bow) "hSk" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) @@ -35082,18 +34938,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"hSv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Starboard Viewing Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_s) "hSw" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -35130,6 +34974,12 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"hTj" = ( +/obj/structure/machinery/vending/cigarette, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "hTl" = ( /obj/structure/prop/server_equipment/yutani_server{ density = 0; @@ -35194,34 +35044,29 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"hTU" = ( +"hUh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"hUb" = ( -/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/hallways/lower/starboard_aft_hallway) "hUk" = ( /turf/open/floor/almayer{ dir = 10; icon_state = "orange" }, /area/almayer/engineering/lower/engine_core) +"hUr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_umbilical) "hUz" = ( /obj/structure/largecrate/supply/supplies/mre{ desc = "A supply crate containing everything you need to stop a CLF uprising."; @@ -35258,6 +35103,15 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"hVl" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "hVz" = ( /obj/structure/machinery/light{ dir = 1 @@ -35267,12 +35121,21 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"hVL" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" +"hVR" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"hWi" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "hWq" = ( /obj/structure/platform{ layer = 3.1 @@ -35321,27 +35184,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"hWD" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"hWH" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "hWJ" = ( /obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ @@ -35357,11 +35199,14 @@ }, /area/almayer/command/cichallway) "hWV" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "hXb" = ( /turf/open/floor/almayer{ dir = 1; @@ -35399,12 +35244,17 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"hXD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"hXq" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "hXG" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -35443,12 +35293,12 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"hYf" = ( -/obj/effect/landmark/yautja_teleport, +"hYj" = ( +/obj/structure/platform_decoration, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/u_a_s) "hYn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -35461,14 +35311,34 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"hYE" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22"; - pixel_y = 8 +"hYw" = ( +/obj/item/tool/wet_sign, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer, +/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) +"hYE" = ( +/obj/structure/closet/crate{ + desc = "One of those old special operations crates from back in the day. After a leaked report from a meeting of SOF leadership lambasted the crates as 'waste of operational funds' the crates were removed from service."; + name = "special operations crate" + }, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/attachable/suppressor, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/obj/item/explosive/grenade/smokebomb, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "hYG" = ( /obj/structure/bed/chair{ dir = 1 @@ -35497,12 +35367,14 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"hZw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"hZp" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) "hZE" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -35547,16 +35419,19 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"hZZ" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "iaa" = ( /obj/structure/closet/secure_closet/guncabinet/red/cic_armory_mk1_rifle_ap, /turf/open/floor/almayer{ icon_state = "redfull" }, /area/almayer/command/cic) +"iaf" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "iag" = ( /obj/structure/surface/table/almayer, /obj/item/tool/hand_labeler, @@ -35589,6 +35464,14 @@ icon_state = "red" }, /area/almayer/squads/alpha) +"iao" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/mgoggles/prescription, +/obj/item/clothing/glasses/mbcg, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "iaq" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/almayer{ @@ -35601,6 +35484,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) +"iay" = ( +/obj/item/paper/almayer_storage, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "iaF" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -35609,6 +35496,18 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) +"iaI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "iaR" = ( /obj/structure/machinery/light{ dir = 4 @@ -35618,6 +35517,13 @@ icon_state = "red" }, /area/almayer/command/lifeboat) +"iaZ" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "ibc" = ( /obj/structure/machinery/conveyor_switch{ id = "req_belt" @@ -35627,24 +35533,10 @@ icon_state = "plating_striped" }, /area/almayer/squads/req) -"ibf" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/s_bow) -"ibP" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -19; - pixel_y = -6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -19; - pixel_y = 6 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +"icd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "icp" = ( /turf/open/floor/almayer{ dir = 8; @@ -35671,6 +35563,18 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) +"icS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_fore_hallway) "icZ" = ( /obj/structure/closet/secure_closet/brig, /turf/open/floor/almayer{ @@ -35678,6 +35582,40 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/processing) +"idf" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"idg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/storage{ + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"idv" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "idx" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -35690,7 +35628,7 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"idL" = ( +"idV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -35708,28 +35646,6 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"iea" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) -"ied" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"ien" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "ieu" = ( /obj/structure/window/reinforced{ dir = 4; @@ -35800,6 +35716,21 @@ dir = 4 }, /area/almayer/command/airoom) +"ieG" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "ieX" = ( /obj/structure/surface/table/almayer, /obj/structure/sign/safety/distribution_pipes{ @@ -35824,13 +35755,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) -"igb" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "igr" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -35839,18 +35763,6 @@ icon_state = "tcomms" }, /area/almayer/command/airoom) -"igs" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/lower/engine_core) "igt" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -35862,39 +35774,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"igw" = ( -/obj/structure/sign/poster/ad{ - pixel_x = 30 - }, -/obj/structure/closet, -/obj/item/clothing/mask/cigarette/weed, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"igS" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"iho" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/lower/constr) "ihw" = ( /obj/structure/machinery/cm_vending/sorted/medical, /turf/open/floor/almayer{ @@ -35902,12 +35781,20 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) +"ihF" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "ihI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/machinery/portable_atmospherics/powered/scrubber, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"ihK" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "bluecorner" }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_midship_hallway) "ihM" = ( /obj/structure/machinery/cm_vending/clothing/marine/delta{ @@ -35921,15 +35808,6 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"ihW" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "ihX" = ( /obj/structure/machinery/status_display{ pixel_y = -30 @@ -35944,6 +35822,12 @@ icon_state = "test_floor4" }, /area/almayer/squads/bravo) +"iif" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "bluecorner" + }, +/area/almayer/hallways/upper/aft_hallway) "iis" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -35994,14 +35878,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"ijn" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) "ijr" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -36010,6 +35886,14 @@ icon_state = "redfull" }, /area/almayer/living/briefing) +"ijw" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "ijQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -36029,11 +35913,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/sea_office) -"ikl" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/hallways/lower/vehiclehangar) "iks" = ( /obj/structure/pipes/binary/pump/high_power/on{ dir = 1 @@ -36054,19 +35933,24 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"ikA" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" +"ikL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/area/almayer/maint/hull/lower/s_bow) -"ikC" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/upper/mess) "ikQ" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/tool/stamp/hop{ @@ -36088,9 +35972,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"ikT" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "ilq" = ( /turf/open/floor/almayer{ dir = 4; @@ -36122,6 +36003,14 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"ilW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "imo" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -36136,26 +36025,31 @@ }, /area/almayer/medical/morgue) "imt" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/lower/l_f_p) "imy" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"inh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +"ino" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-y" +/area/almayer/hallways/upper/stern_hallway) +"inq" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "cargo" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/shipboard/brig/cic_hallway) +/area/almayer/maint/hull/lower/l_m_s) "ins" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -36169,6 +36063,17 @@ }, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering) +"iny" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "OuterShutter"; + name = "\improper Saferoom Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/panic) "inL" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -36179,6 +36084,9 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"iov" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) "iow" = ( /obj/structure/machinery/cm_vending/sorted/attachments/squad{ req_access = null; @@ -36199,9 +36107,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"ioM" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) "ioP" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -36215,6 +36120,12 @@ icon_state = "plating" }, /area/almayer/shipboard/stern_point_defense) +"ioT" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "ioU" = ( /turf/closed/wall/almayer, /area/almayer/command/securestorage) @@ -36240,39 +36151,6 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"ipk" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_f_s) -"ipn" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"ipr" = ( -/obj/item/tool/weldpack{ - pixel_y = 15 - }, -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/welding, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) -"ipB" = ( -/obj/structure/surface/rack, -/obj/item/tool/kitchen/rollingpin, -/obj/item/tool/hatchet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) "ipE" = ( /obj/structure/bed/chair{ dir = 8 @@ -36281,6 +36159,16 @@ icon_state = "orangefull" }, /area/almayer/squads/alpha_bravo_shared) +"ipF" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "ipK" = ( /obj/effect/step_trigger/message/memorial, /turf/open/floor/almayer{ @@ -36307,21 +36195,35 @@ icon_state = "sterile_green" }, /area/almayer/medical/hydroponics) +"ipT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) +"ipY" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/device/camera_film{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/open/floor/almayer, +/area/almayer/squads/charlie_delta_shared) "iqd" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"iqo" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_22" - }, +"iqe" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ - dir = 10; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/squads/req) +/area/almayer/hallways/lower/vehiclehangar) "iqp" = ( /obj/structure/machinery/door/airlock/almayer/maint{ access_modified = 1; @@ -36343,6 +36245,13 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"iqN" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "iqR" = ( /obj/structure/sign/safety/cryo{ pixel_x = -16 @@ -36361,23 +36270,19 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south2) +"irA" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "irF" = ( /obj/structure/closet/emcloset/legacy, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/shipboard/brig/main_office) -"irJ" = ( -/obj/item/tool/wirecutters{ - pixel_y = -7 - }, -/obj/structure/sign/poster{ - desc = "You are becoming hysterical."; - icon_state = "poster11"; - pixel_y = 30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "irS" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/cable/heavyduty{ @@ -36410,15 +36315,15 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop) -"isq" = ( +"isz" = ( /obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/largecrate/random/secure, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/upper/s_bow) "isC" = ( /obj/effect/projector{ name = "Almayer_AresDown"; @@ -36494,6 +36399,19 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"itD" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "DeployWorkR"; + name = "\improper Workshop Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/repair_bay) "itR" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -36515,17 +36433,6 @@ icon_state = "red" }, /area/almayer/command/lifeboat) -"iuf" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "iun" = ( /obj/effect/spawner/random/tool, /turf/open/floor/plating/plating_catwalk, @@ -36566,12 +36473,6 @@ /obj/structure/machinery/computer/emails, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"iuI" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "ivf" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/camera, @@ -36586,28 +36487,45 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) +"ivi" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "ivs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"ivu" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +"ivy" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_s) "ivz" = ( /obj/structure/closet, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/living/port_emb) -"ivL" = ( -/obj/structure/platform{ - dir = 8 +"ivG" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/upper/u_m_p) "ivM" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -36623,18 +36541,33 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"ivV" = ( +"ivY" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/starboard_umbilical) "iwf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) +"iwp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "iwB" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/washing_machine{ @@ -36648,6 +36581,17 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) +"iwC" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/almayer{ + allow_construction = 0; + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_fore_hallway) "iwI" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/airlock/almayer/generic{ @@ -36700,6 +36644,14 @@ icon_state = "green" }, /area/almayer/squads/req) +"ixc" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "ixj" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/machinery/computer/crew/alt, @@ -36707,14 +36659,13 @@ icon_state = "sterile_green" }, /area/almayer/medical/lockerroom) -"ixu" = ( -/obj/structure/largecrate/random/case{ - layer = 2.98 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"ixl" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, -/area/almayer/maint/hull/upper/u_a_s) +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "ixv" = ( /obj/structure/bed/chair/comfy/blue{ dir = 4 @@ -36723,6 +36674,14 @@ icon_state = "plate" }, /area/almayer/command/cic) +"ixB" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/u_m_s) "ixD" = ( /obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ @@ -36749,27 +36708,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"ixT" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) -"iyC" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"iyE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "iyF" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 @@ -36791,6 +36729,15 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"iyL" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "iyS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -36827,6 +36774,9 @@ icon_state = "plate" }, /area/almayer/squads/alpha) +"izT" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/u_f_p) "izY" = ( /obj/structure/machinery/autodoc_console, /turf/open/floor/almayer{ @@ -36834,6 +36784,19 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"iAf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"iAo" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "iAw" = ( /obj/item/tool/warning_cone{ pixel_x = -12 @@ -36855,6 +36818,22 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/containment) +"iAA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_y = 30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_fore_hallway) "iAE" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -36863,6 +36842,19 @@ icon_state = "plate" }, /area/almayer/engineering/lower/engine_core) +"iAM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/hallways/upper/aft_hallway) +"iBk" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/repair_bay) "iBl" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 @@ -36873,14 +36865,27 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"iBu" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, +"iBs" = ( +/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/maint/hull/lower/l_f_p) +"iBD" = ( +/turf/open/floor/almayer{ + icon_state = "silvercorner" + }, +/area/almayer/hallways/lower/repair_bay) +"iBT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silvercorner" + }, +/area/almayer/hallways/upper/aft_hallway) "iBY" = ( /obj/structure/machinery/vending/snack, /turf/open/floor/almayer{ @@ -36888,6 +36893,12 @@ icon_state = "silver" }, /area/almayer/command/cichallway) +"iCf" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/lower/port_aft_hallway) "iCu" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; @@ -36908,14 +36919,6 @@ icon_state = "test_floor4" }, /area/almayer/command/cichallway) -"iCD" = ( -/obj/structure/bed/chair/comfy/orange{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "iCF" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -36928,24 +36931,40 @@ icon_state = "green" }, /area/almayer/living/offices) -"iDk" = ( -/obj/structure/closet/emcloset, +"iCI" = ( +/obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "red" + }, +/area/almayer/maint/hull/upper/u_a_p) +"iDe" = ( +/obj/structure/machinery/cm_vending/clothing/senior_officer{ + pixel_y = 0 }, -/area/almayer/maint/hull/lower/l_m_p) -"iDs" = ( -/obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "mono" }, -/area/almayer/maint/hull/upper/u_a_s) -"iEa" = ( -/obj/structure/machinery/light/small, +/area/almayer/medical/upper_medical) +"iDx" = ( +/obj/structure/surface/rack, +/obj/item/circuitboard/firealarm, +/obj/item/circuitboard, +/obj/item/clipboard, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/maint/hull/upper/s_stern) +"iDD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "iEg" = ( /turf/open/floor/almayer{ dir = 9; @@ -36989,17 +37008,10 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"iEM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) +"iED" = ( +/obj/structure/curtain/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "iFc" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/wood/ship, @@ -37009,29 +37021,6 @@ icon_state = "bluefull" }, /area/almayer/living/pilotbunks) -"iFp" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"iFA" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Railguns and Viewing Room" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_p) "iFC" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, @@ -37059,6 +37048,14 @@ }, /turf/open/floor/almayer, /area/almayer/living/offices) +"iFJ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_aft_hallway) "iFM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -37071,29 +37068,26 @@ icon_state = "test_floor4" }, /area/almayer/living/port_emb) -"iFY" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/cryo{ - pixel_x = 36 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"iGf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/dropship_equipment/fuel/cooling_system{ + layer = 3.5 }, -/area/almayer/maint/lower/cryo_cells) -"iGc" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/clothing/glasses/welding{ + layer = 3.6; + pixel_x = 2; + pixel_y = 7 }, -/area/almayer/maint/hull/lower/l_m_s) -"iGi" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/computer/working_joe{ + dir = 4; + pixel_x = -17 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "silver" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/hallways/lower/repair_bay) "iGn" = ( /obj/structure/surface/table/reinforced/prison, /obj/structure/closet/secure_closet/surgical{ @@ -37104,12 +37098,32 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_four) -"iGE" = ( +"iGz" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"iGH" = ( +/obj/structure/platform_decoration, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_a_s) +"iGO" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Dropship Control Bubble"; + req_access = null; + req_one_access_txt = "3;22;2;19" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/living/offices/flight) "iGQ" = ( /obj/structure/machinery/landinglight/ds2/delayone{ dir = 8 @@ -37121,15 +37135,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"iGZ" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "iHc" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/notunnel) @@ -37141,6 +37146,10 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cells) +"iIa" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "iIj" = ( /obj/structure/stairs/perspective{ dir = 8; @@ -37162,20 +37171,22 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"iIH" = ( -/obj/structure/largecrate/supply/medicine/medivend{ - pixel_x = 3 +"iIt" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/largecrate/random/mini/med{ - pixel_x = 3; - pixel_y = 11; - density = 1 +/area/almayer/maint/hull/upper/u_a_s) +"iIJ" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer{ dir = 1; - icon_state = "sterile_green_side" + icon_state = "blue" }, -/area/almayer/medical/lower_medical_medbay) +/area/almayer/hallways/upper/aft_hallway) "iIP" = ( /obj/structure/toilet{ pixel_y = 16 @@ -37191,14 +37202,10 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) "iIQ" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/port_midship_hallway) "iIR" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -37210,6 +37217,21 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) +"iJb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = -34 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) +"iJA" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "iJB" = ( /obj/structure/sign/safety/galley{ pixel_x = 8; @@ -37230,13 +37252,12 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"iJT" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 +"iJU" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/lower/l_a_s) "iKb" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ @@ -37266,6 +37287,15 @@ icon_state = "cargo" }, /area/almayer/squads/alpha) +"iKB" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "iKD" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, @@ -37293,15 +37323,13 @@ icon_state = "mono" }, /area/almayer/engineering/port_atmos) -"iKV" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/almayer{ - icon_state = "plate" +"iKP" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) "iKZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -37334,15 +37362,6 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) -"iLm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "iLo" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -37378,6 +37397,13 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_lobby) +"iLv" = ( +/obj/item/stool{ + pixel_x = 15; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "iLG" = ( /obj/structure/disposalpipe/junction{ dir = 1; @@ -37386,6 +37412,15 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) +"iLH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "iLO" = ( /turf/open/floor/almayer{ dir = 4; @@ -37420,35 +37455,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"iNk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"iNH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/maint{ - pixel_x = -17; - pixel_y = -8 - }, -/obj/structure/sign/safety/storage{ - pixel_x = -17; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "redcorner" - }, -/area/almayer/hallways/lower/port_fore_hallway) -"iNR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "iNY" = ( /obj/structure/machinery/status_display{ pixel_x = 32; @@ -37456,51 +37462,40 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"iOo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"iOt" = ( +/obj/structure/machinery/vending/cigarette{ + density = 0; + pixel_y = 18 }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/upper/u_a_p) "iOD" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"iOP" = ( +"iPe" = ( /turf/open/floor/almayer{ - dir = 5; + dir = 8; icon_state = "red" }, -/area/almayer/hallways/upper/stern_hallway) -"iOX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/area/almayer/maint/hull/upper/u_a_p) +"iPm" = ( +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) -"iPf" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"iPq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"iPt" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" +/area/almayer/maint/hull/lower/l_m_p) +"iPp" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 4; + id = "vehicle_elevator_railing_aux" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "iPv" = ( /obj/structure/bed/chair/comfy, /obj/structure/window/reinforced/ultra, @@ -37512,6 +37507,16 @@ icon_state = "silver" }, /area/almayer/living/briefing) +"iPy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/req) "iPD" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -37528,47 +37533,22 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"iPK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"iPN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/station_alert, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 +"iPL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" + dir = 6; + icon_state = "green" }, -/area/almayer/maint/upper/mess) +/area/almayer/hallways/lower/starboard_aft_hallway) "iPS" = ( /obj/structure/machinery/cryopod/right, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/squads/alpha) -"iPU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "iQd" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -37632,6 +37612,15 @@ icon_state = "emerald" }, /area/almayer/living/port_emb) +"iQx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) "iQB" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/card{ @@ -37651,25 +37640,23 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"iQJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"iRi" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, +"iQK" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/stern) +"iQP" = ( +/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - dir = 4; + dir = 1; icon_state = "green" }, /area/almayer/hallways/upper/aft_hallway) +"iQR" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "iRy" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/almayer, @@ -37690,6 +37677,9 @@ dir = 4 }, /area/almayer/medical/containment/cell) +"iSe" = ( +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_p) "iSm" = ( /obj/structure/pipes/vents/pump, /obj/structure/mirror{ @@ -37736,34 +37726,33 @@ icon_state = "dark_sterile" }, /area/almayer/living/port_emb) -"iSu" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" +"iSr" = ( +/obj/item/reagent_container/glass/bucket/janibucket{ + pixel_x = -1; + pixel_y = 13 }, -/area/almayer/hallways/upper/stern_hallway) -"iSB" = ( -/obj/structure/platform_decoration{ - dir = 8 +/obj/structure/sign/safety/water{ + pixel_x = -17 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"iSV" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_one_access = null; - req_one_access_txt = "2;7" +/area/almayer/maint/upper/u_m_s) +"iSu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 8; + icon_state = "orange" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/hallways/upper/stern_hallway) +"iSC" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "iSZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -37794,16 +37783,20 @@ icon_state = "red" }, /area/almayer/command/lifeboat) +"iTf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "iTl" = ( /turf/open/floor/almayer{ dir = 10; icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"iTq" = ( -/obj/structure/curtain/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "iTw" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -37822,20 +37815,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"iTQ" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) -"iUh" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -16 - }, +"iTV" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/maint/hull/upper/u_m_p) "iUk" = ( /obj/structure/machinery/door/airlock/almayer/marine/charlie{ dir = 1 @@ -37877,11 +37859,26 @@ icon_state = "mono" }, /area/almayer/medical/hydroponics) -"iUV" = ( +"iUD" = ( +/obj/structure/bed/chair, /turf/open/floor/almayer{ - icon_state = "bluecorner" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/p_stern) +"iUS" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/u_m_p) +"iUU" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/hallways/upper/stern_hallway) "iUW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -37892,6 +37889,27 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) +"iVj" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/obj/item/tool/stamp/approved{ + pixel_y = -11; + pixel_x = -3 + }, +/turf/open/floor/almayer, +/area/almayer/squads/req) +"iVq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/cryo{ + pixel_x = 8; + pixel_y = -26 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "iVy" = ( /turf/open/floor/almayer{ dir = 1; @@ -37904,15 +37922,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"iVG" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "iVP" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = -17; @@ -37924,13 +37933,11 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"iWa" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) +"iVQ" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/random/balaclavas, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "iWc" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -37951,37 +37958,22 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"iWH" = ( -/obj/structure/machinery/light/small{ +"iWD" = ( +/obj/structure/platform{ dir = 4 }, -/obj/item/reagent_container/glass/bucket/mopbucket, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 14 - }, -/obj/structure/janitorialcart, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/s_bow) -"iWJ" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) -"iWQ" = ( -/obj/effect/landmark/start/researcher, -/obj/effect/landmark/late_join/researcher, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) +/area/almayer/maint/hull/upper/u_a_p) "iWR" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/prison{ icon_state = "kitchen" }, /area/almayer/engineering/upper_engineering) +"iWW" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "iXb" = ( /obj/structure/bed/chair/comfy/delta{ dir = 8 @@ -37990,28 +37982,12 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) -"iXm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "InnerShutter"; - name = "\improper Saferoom Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/panic) "iXA" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"iXB" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "iXT" = ( /obj/item/trash/uscm_mre, /turf/open/floor/almayer, @@ -38058,12 +38034,6 @@ icon_state = "cargo_arrow" }, /area/almayer/medical/hydroponics) -"iYm" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "iYr" = ( /obj/structure/machinery/light{ dir = 4 @@ -38089,12 +38059,20 @@ icon_state = "plate" }, /area/almayer/living/gym) -"iZd" = ( -/obj/structure/largecrate/random/barrel/blue, +"iYR" = ( +/obj/structure/largecrate/supply/medicine/medivend{ + pixel_x = 3 + }, +/obj/structure/largecrate/random/mini/med{ + pixel_x = 3; + pixel_y = 11; + density = 1 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "sterile_green_side" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/medical/lower_medical_medbay) "iZg" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -38104,6 +38082,22 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"iZh" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) +"iZq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "iZw" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_AresUp"; @@ -38121,6 +38115,9 @@ icon_state = "silver" }, /area/almayer/command/airoom) +"iZy" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/vehiclehangar) "iZE" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /obj/effect/decal/warning_stripes{ @@ -38134,6 +38131,15 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop/hangar) +"iZN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "iZP" = ( /obj/structure/platform{ dir = 8 @@ -38167,12 +38173,6 @@ icon_state = "plate" }, /area/almayer/squads/req) -"jae" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) "jaf" = ( /obj/structure/bed/chair/comfy/bravo{ dir = 4 @@ -38189,51 +38189,22 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"jak" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +"jap" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" }, -/turf/open/floor/almayer, /area/almayer/hallways/lower/vehiclehangar) -"jao" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"jas" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"jay" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool{ - pixel_x = 6 - }, -/obj/item/tool/shovel/etool, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer{ - icon_state = "plate" +"jaF" = ( +/obj/structure/bed/chair, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/area/almayer/maint/hull/lower/l_a_p) -"jaz" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/technology_scanner, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/maint/hull/upper/u_a_s) "jaH" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/paper_bin/uscm{ @@ -38244,13 +38215,6 @@ icon_state = "plating" }, /area/almayer/command/airoom) -"jaI" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "jaM" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -38277,10 +38241,34 @@ icon_state = "test_floor4" }, /area/almayer/squads/req) -"jaW" = ( -/obj/effect/landmark/start/reporter, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +"jaT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/door_control{ + id = "hangarentrancesouth"; + name = "South Hangar Shutters"; + pixel_y = 30; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_fore_hallway) +"jbl" = ( +/obj/structure/largecrate/random/case/small, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "jbq" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -38346,31 +38334,26 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"jbO" = ( -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) +"jbS" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "jbX" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room) +"jca" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "jcf" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/shipboard/brig/processing) -"jcE" = ( -/obj/structure/machinery/vending/coffee{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) +"jcs" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "jcP" = ( /turf/open/floor/almayer{ icon_state = "plating_striped" @@ -38390,21 +38373,6 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"jdn" = ( -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) -"jdu" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"jdC" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) "jdG" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -38415,20 +38383,27 @@ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_three) -"jdZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "jeb" = ( /turf/closed/wall/almayer, /area/almayer/squads/alpha_bravo_shared) -"jei" = ( +"jed" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "silver" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/hallways/upper/aft_hallway) +"jee" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) "jeq" = ( /obj/structure/surface/rack, /obj/item/storage/box/pillbottles{ @@ -38444,27 +38419,18 @@ icon_state = "mono" }, /area/almayer/medical/hydroponics) -"jer" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_a_p) -"jev" = ( -/obj/structure/largecrate/random/case/small, -/obj/item/device/taperecorder{ - pixel_x = 7; - pixel_y = 7 +"jeu" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/obj/item/reagent_container/glass/bucket/mopbucket{ - pixel_x = -9; - pixel_y = 8 +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "plating" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/hallways/lower/vehiclehangar) "jew" = ( /obj/structure/surface/table/reinforced/black, /turf/open/floor/almayer{ @@ -38486,6 +38452,15 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"jeN" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) "jeO" = ( /obj/structure/machinery/light{ dir = 4 @@ -38502,15 +38477,29 @@ icon_state = "red" }, /area/almayer/living/cryo_cells) -"jeR" = ( -/obj/structure/machinery/light{ +"jeW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) +"jfe" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/bed/chair/bolted, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/shipboard/brig/perma) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"jfn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "jfK" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -38521,13 +38510,6 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"jfS" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "jfY" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, @@ -38615,6 +38597,14 @@ icon_state = "plate" }, /area/almayer/command/combat_correspondent) +"jgu" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "jgw" = ( /obj/structure/sign/safety/nonpress_0g{ pixel_x = 32 @@ -38633,20 +38623,17 @@ icon_state = "blue" }, /area/almayer/command/cichallway) -"jgK" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"jgW" = ( +/obj/structure/stairs, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 }, -/area/almayer/maint/hull/lower/l_m_s) -"jgS" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" +/turf/open/floor/plating/almayer{ + allow_construction = 0 }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/starboard_midship_hallway) "jhb" = ( /obj/structure/sign/safety/cryo{ pixel_x = -6; @@ -38654,27 +38641,12 @@ }, /turf/closed/wall/almayer, /area/almayer/living/cryo_cells) -"jhc" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"jhm" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/upper/stern_hallway) "jhn" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_four) -"jhs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) "jht" = ( /obj/structure/machinery/vending/coffee{ density = 0; @@ -38697,10 +38669,6 @@ icon_state = "green" }, /area/almayer/living/offices) -"jhA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) "jhD" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 @@ -38714,29 +38682,21 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/chief_mp_office) -"jhK" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"jhR" = ( -/obj/structure/reagent_dispensers/water_cooler/stacks{ - density = 0; - pixel_y = 17 +"jhJ" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"jhS" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "vehicle_elevator_railing_aux" +/area/almayer/hallways/upper/stern_hallway) +"jhN" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/starboard_umbilical) "jhW" = ( /obj/structure/machinery/cryopod/right, /turf/open/floor/almayer{ @@ -38755,17 +38715,15 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/lobby) -"jiM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"jiq" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/surface/rack, -/obj/item/frame/table, -/obj/item/frame/table, -/obj/item/frame/table, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/lower/engine_core) "jiU" = ( /obj/structure/sink{ dir = 1; @@ -38785,13 +38743,6 @@ icon_state = "dark_sterile" }, /area/almayer/living/port_emb) -"jjl" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 8; - id = "vehicle_elevator_railing_aux" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) "jjm" = ( /obj/structure/closet/secure_closet{ name = "\improper Lethal Injection Locker" @@ -38820,6 +38771,13 @@ icon_state = "sterile_green" }, /area/almayer/medical/lower_medical_medbay) +"jjE" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "jjS" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -38833,6 +38791,10 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/medical_science) +"jkb" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "jkj" = ( /obj/structure/machinery/portable_atmospherics/powered/pump, /obj/structure/machinery/light{ @@ -38849,17 +38811,20 @@ icon_state = "plate" }, /area/almayer/medical/morgue) -"jkq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"jkp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = -28 +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) "jks" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -38919,40 +38884,20 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"jkN" = ( -/obj/structure/largecrate/random/barrel/yellow, +"jlc" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "red" }, -/area/almayer/maint/hull/lower/l_a_s) -"jkY" = ( +/area/almayer/hallways/upper/starboard) +"jln" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" }, -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access_txt = "7;23;27" - }, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/sign/safety/terminal{ - pixel_y = 32 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 15; - pixel_y = 32 - }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) -"jlc" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/upper/starboard) +/area/almayer/maint/hull/lower/s_bow) "jlA" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -38964,11 +38909,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/containment) -"jlD" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_fore_hallway) "jlG" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -39014,6 +38954,12 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) +"jmm" = ( +/obj/structure/machinery/gel_refiller, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) "jmn" = ( /obj/structure/surface/table/almayer, /obj/item/prop/magazine/dirty{ @@ -39027,15 +38973,6 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) -"jmz" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "jmK" = ( /turf/open/floor/almayer{ icon_state = "plate" @@ -39062,45 +38999,12 @@ icon_state = "blue" }, /area/almayer/command/cichallway) -"jnc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"jne" = ( -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/upper/u_f_p) -"jnh" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, +"jnl" = ( +/obj/structure/largecrate/supply/floodlights, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/mess) -"jno" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"jnx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/upper/u_m_p) "jnD" = ( /turf/open/floor/almayer{ dir = 1; @@ -39123,6 +39027,15 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/command/cic) +"jon" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) +"jot" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "joG" = ( /obj/structure/machinery/washing_machine, /obj/structure/sign/poster{ @@ -39173,12 +39086,40 @@ }, /turf/open/floor/almayer, /area/almayer/living/gym) -"jpW" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +"jpu" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_a_s) +"jpy" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/starboard_aft_hallway) +"jpz" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/upper/stern_hallway) +"jpX" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "2;7" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "CIC Lockdown"; + name = "\improper Combat Information Center Blast Door" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/mess) "jqP" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "ARES Interior"; @@ -39213,10 +39154,6 @@ icon_state = "green" }, /area/almayer/squads/req) -"jri" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "jrm" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -39227,38 +39164,12 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"jru" = ( -/obj/structure/sign/safety/nonpress_0g{ - pixel_y = 32 - }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_umbilical) -"jrB" = ( -/obj/structure/bed/chair, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) -"jrI" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 - }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"jrx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "jrM" = ( /obj/structure/machinery/camera/autoname/almayer/containment{ dir = 4 @@ -39268,17 +39179,22 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"jsa" = ( -/obj/structure/machinery/light{ - dir = 8 +"jrN" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 +/area/almayer/maint/lower/s_bow) +"jsj" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "cargo" }, +/area/almayer/maint/hull/lower/l_f_s) +"jsn" = ( +/obj/structure/bed/chair/office/dark, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/upper/u_m_p) "jss" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -39287,14 +39203,6 @@ icon_state = "bluefull" }, /area/almayer/living/captain_mess) -"jsu" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "jsx" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -39306,17 +39214,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"jsA" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/u_m_s) -"jsE" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) "jsP" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -39326,14 +39223,19 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"jsR" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 +"jta" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) +/obj/effect/landmark/yautja_teleport, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "jtj" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -39342,37 +39244,47 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"jts" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 +"jtr" = ( +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 1; + icon_state = "blue" }, -/area/almayer/hallways/lower/port_aft_hallway) -"jtU" = ( +/area/almayer/hallways/upper/aft_hallway) +"jtv" = ( +/obj/structure/sign/poster/safety, +/turf/closed/wall/almayer, +/area/almayer/maint/lower/s_bow) +"jtG" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"jtZ" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ +/area/almayer/maint/hull/lower/l_m_s) +"jtH" = ( +/obj/structure/disposalpipe/segment{ dir = 4; - icon_state = "emerald" + icon_state = "pipe-c" }, -/area/almayer/hallways/lower/port_midship_hallway) -"juo" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"jux" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jtS" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"jtX" = ( +/obj/structure/sign/safety/rewire{ + pixel_x = 8; + pixel_y = 32 + }, /turf/open/floor/almayer{ dir = 1; - icon_state = "bluecorner" + icon_state = "blue" }, /area/almayer/hallways/upper/aft_hallway) +"jul" = ( +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "juD" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -39380,17 +39292,23 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"juS" = ( -/obj/structure/machinery/gear{ - id = "vehicle_elevator_gears" +"juV" = ( +/obj/item/trash/USCMtray{ + pixel_x = -4; + pixel_y = 10 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/utensil/pfork{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "mono" + icon_state = "plate" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/maint/upper/u_m_s) "juX" = ( /obj/structure/platform_decoration{ dir = 1 @@ -39436,41 +39354,21 @@ icon_state = "test_floor4" }, /area/almayer/squads/alpha) -"jvt" = ( -/obj/item/tool/warning_cone{ - pixel_x = -20; - pixel_y = 18 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice12"; - pixel_y = -16 +"jvv" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"jvz" = ( /turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/port_umbilical) "jvB" = ( /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer/no_build{ dir = 4 }, /area/almayer/command/airoom) -"jvD" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/port_fore_hallway) "jvM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -39481,6 +39379,10 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"jvO" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) "jvP" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -39513,35 +39415,20 @@ "jvY" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/command/telecomms) -"jwi" = ( -/obj/structure/machinery/door_control{ - id = "InnerShutter"; - name = "Inner Shutter"; - pixel_x = 5; - pixel_y = 10 - }, -/obj/item/toy/deck{ - pixel_x = -9 - }, -/obj/item/ashtray/plastic, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/sign/safety/intercom{ - pixel_y = -32 +"jwa" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 8 }, -/area/almayer/shipboard/panic) -"jwq" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32; + pixel_y = -7 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"jwJ" = ( -/obj/structure/platform_decoration, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_f_s) "jwK" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ @@ -39549,19 +39436,6 @@ icon_state = "red" }, /area/almayer/squads/alpha_bravo_shared) -"jwM" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) -"jwP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) "jxi" = ( /obj/structure/machinery/sleep_console, /turf/open/floor/almayer{ @@ -39569,12 +39443,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"jxu" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) "jxx" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -39590,15 +39458,6 @@ }, /turf/open/floor/plating, /area/almayer/living/bridgebunks) -"jxX" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) "jyb" = ( /turf/open/floor/almayer{ dir = 6; @@ -39609,20 +39468,6 @@ /obj/structure/machinery/light, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"jyJ" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/ladder{ - height = 2; - id = "cicladder3" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 23; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/medical_science) "jyR" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ req_one_access_txt = "7;23;27" @@ -39631,6 +39476,34 @@ icon_state = "cargo" }, /area/almayer/hallways/hangar) +"jyU" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_f_s) +"jyX" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"jzb" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/hangar) +"jzp" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"jzu" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/hallways/lower/port_midship_hallway) "jzD" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ icon_state = "almayer_pdoor"; @@ -39649,13 +39522,6 @@ icon_state = "plate" }, /area/almayer/living/captain_mess) -"jzT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) "jzZ" = ( /obj/structure/platform_decoration, /turf/open/floor/almayer{ @@ -39669,16 +39535,22 @@ icon_state = "plate" }, /area/almayer/command/corporateliaison) -"jAj" = ( -/obj/structure/machinery/light{ - dir = 4 +"jAl" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/area/almayer/medical/lower_medical_medbay) +"jAu" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"jAy" = ( /turf/open/floor/almayer{ - icon_state = "orangecorner" + dir = 4; + icon_state = "orange" }, /area/almayer/hallways/lower/starboard_aft_hallway) "jAz" = ( @@ -39722,6 +39594,12 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/morgue) +"jBI" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "jBO" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -39745,10 +39623,6 @@ icon_state = "test_floor4" }, /area/almayer/command/lifeboat) -"jCg" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_s) "jCn" = ( /obj/structure/surface/table/almayer, /obj/item/tool/screwdriver, @@ -39760,18 +39634,13 @@ icon_state = "orange" }, /area/almayer/engineering/lower/engine_core) -"jCr" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) -"jCx" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "bluecorner" +"jCu" = ( +/obj/structure/platform{ + dir = 1 }, -/area/almayer/hallways/lower/port_midship_hallway) +/obj/item/tool/mop, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "jCK" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottomleft"; @@ -39782,6 +39651,22 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) +"jDf" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) +"jDh" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "jDk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -39799,15 +39684,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"jDz" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/hallways/lower/port_midship_hallway) "jDO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -39848,34 +39724,51 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"jEA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +"jEj" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/maint/hull/lower/l_m_s) +"jEm" = ( +/obj/structure/bed/sofa/south/white/right{ + pixel_y = 16 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"jEM" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "silver" }, -/area/almayer/maint/hull/lower/l_a_s) -"jES" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 +/area/almayer/maint/hull/upper/u_m_p) +"jEo" = ( +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) +/area/almayer/hallways/upper/stern_hallway) +"jEt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/upper/stern_hallway) +"jEv" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"jEB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"jES" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) "jFf" = ( /obj/structure/machinery/shower{ pixel_y = 16 @@ -39890,14 +39783,26 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"jFt" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"jFl" = ( +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/hallways/lower/starboard_fore_hallway) +"jFn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "jFx" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/bucket{ @@ -39924,16 +39829,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"jFy" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/item/clipboard, -/obj/item/tool/pen, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/squads/req) "jFE" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -39941,14 +39836,6 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"jFI" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "jFY" = ( /obj/structure/closet/firecloset, /turf/open/floor/almayer{ @@ -39972,18 +39859,6 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) -"jGQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "jGR" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -39993,6 +39868,12 @@ icon_state = "plate" }, /area/almayer/squads/delta) +"jGY" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/upper/aft_hallway) "jHh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -40002,15 +39883,38 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"jHn" = ( -/obj/structure/largecrate/random/case, +"jHs" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) +"jHw" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/lower/s_bow) -"jHt" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/hallways/upper/aft_hallway) +"jHy" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/four{ + pixel_x = 31; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/area/almayer/hallways/lower/port_midship_hallway) "jHC" = ( /turf/open/floor/almayer{ dir = 1; @@ -40033,13 +39937,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"jHX" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "jIo" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -40047,16 +39944,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/chief_mp_office) -"jIC" = ( -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) "jIH" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/straight_jacket, @@ -40070,17 +39957,40 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/execution) -"jIJ" = ( -/obj/structure/largecrate/random/barrel/green, +"jIM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"jIS" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, /turf/open/floor/almayer{ - icon_state = "plate" + allow_construction = 0 }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/hallways/lower/starboard_midship_hallway) "jIT" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine/uscm/brig/chief, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) +"jIU" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "jIV" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_full" @@ -40099,6 +40009,34 @@ icon_state = "blue" }, /area/almayer/living/port_emb) +"jJl" = ( +/obj/structure/airlock_assembly, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"jJu" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv/empty, +/obj/item/storage/firstaid/adv/empty, +/obj/item/storage/firstaid/adv/empty, +/obj/structure/sign/safety/med_life_support{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_medbay) +"jJF" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "jKn" = ( /turf/open/floor/almayer{ dir = 5; @@ -40146,12 +40084,15 @@ icon_state = "cargo" }, /area/almayer/engineering/port_atmos) -"jLg" = ( -/obj/structure/closet/emcloset, +"jLa" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 + }, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/maint/hull/upper/u_f_p) "jLj" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -40167,12 +40108,19 @@ icon_state = "kitchen" }, /area/almayer/living/captain_mess) -"jLH" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/almayer{ - icon_state = "plate" +"jLB" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/lower/l_m_p) +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/coffee{ + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "jLM" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -40190,18 +40138,16 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"jMa" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ +"jLY" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "jMm" = ( /obj/structure/closet/secure_closet/personal/cabinet{ req_access = null @@ -40258,15 +40204,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"jMP" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "jMQ" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -40315,33 +40252,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/containment/cell) -"jNo" = ( -/obj/structure/surface/rack, -/obj/item/tool/shovel/etool{ - pixel_x = 6 - }, -/obj/item/tool/shovel/etool, -/obj/item/tool/wirecutters, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"jNw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/pipes/vents/scrubber{ - dir = 8 - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/lower/port_fore_hallway) "jND" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -40349,11 +40259,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"jNG" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/random/balaclavas, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "jNT" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/execution) @@ -40412,16 +40317,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) -"jOq" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) -"jOt" = ( -/obj/item/trash/barcardine, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "jOx" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -40474,24 +40369,28 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"jPu" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "Saferoom Channel"; - pixel_x = 27 +"jPA" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"jPD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/shipboard/panic) -"jPx" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "silver" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/hallways/upper/aft_hallway) "jPP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -40504,19 +40403,30 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/chief_mp_office) -"jPU" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"jQa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 }, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "jQt" = ( /turf/open/floor/almayer/research/containment/floor2{ dir = 8 }, /area/almayer/medical/containment/cell) +"jQK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "jRc" = ( /obj/structure/machinery/cm_vending/sorted/tech/tool_storage, /obj/structure/machinery/status_display{ @@ -40526,27 +40436,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"jRg" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"jRm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"jRp" = ( -/obj/structure/largecrate/supply/supplies/water, -/obj/item/toy/deck{ - pixel_y = 12 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "jRz" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -40569,6 +40458,15 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"jRH" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/bolted, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/brig/perma) "jRK" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ @@ -40622,6 +40520,28 @@ }, /turf/open/floor/almayer, /area/almayer/living/grunt_rnr) +"jSz" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) +"jSF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 2; + id = "CIC Lockdown"; + layer = 2.2; + name = "\improper Combat Information Center Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/engineering/reinforced{ + dir = 1; + name = "\improper Command Power Substation" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/mess) "jSU" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -40650,6 +40570,20 @@ icon_state = "green" }, /area/almayer/living/offices) +"jTb" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/flashlight/lamp{ + pixel_y = 8 + }, +/obj/item/clothing/glasses/science{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/device/flash, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/upper_medical) "jTj" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -40659,41 +40593,12 @@ icon_state = "plating" }, /area/almayer/medical/upper_medical) -"jTt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "laddernortheast"; - name = "North East Ladders Shutters"; - pixel_y = -25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "jTB" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "orangecorner" }, /area/almayer/engineering/lower) -"jTH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) "jTI" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ @@ -40718,10 +40623,10 @@ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"jUh" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +"jUc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "jUl" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -40759,6 +40664,18 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) +"jUK" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_f_s) "jUM" = ( /obj/structure/machinery/camera/autoname/almayer/containment{ dir = 8 @@ -40768,16 +40685,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/medical_science) -"jUV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "jUY" = ( /turf/open/floor/almayer{ icon_state = "silver" @@ -40795,6 +40702,16 @@ }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) +"jVi" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/bomb_supply, +/obj/effect/spawner/random/bomb_supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "jVr" = ( /obj/structure/machinery/cm_vending/clothing/marine/alpha{ density = 0; @@ -40822,6 +40739,17 @@ icon_state = "test_floor5" }, /area/almayer/command/computerlab) +"jVM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "jVP" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -40841,6 +40769,15 @@ "jWh" = ( /turf/closed/wall/almayer, /area/almayer/engineering/upper_engineering/port) +"jWn" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/secure_data{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "jWr" = ( /obj/structure/machinery/light{ dir = 4 @@ -40864,26 +40801,19 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"jXf" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - id_tag = "or03"; - name = "Lobby" +"jXC" = ( +/obj/effect/landmark/start/doctor, +/obj/effect/landmark/late_join/doctor, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"jXL" = ( +/obj/structure/platform{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/lower_medical_medbay) -"jXR" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/maint/hull/upper/u_a_s) "jYc" = ( /obj/item/bedsheet/blue{ layer = 3.2 @@ -40926,24 +40856,33 @@ icon_state = "blue" }, /area/almayer/living/port_emb) -"jYm" = ( -/obj/item/reagent_container/food/snacks/wrapped/chunk, -/obj/structure/surface/rack, +"jYh" = ( +/obj/structure/closet, +/obj/item/clothing/glasses/welding, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_stern) -"jYM" = ( -/obj/structure/ladder{ - height = 1; - id = "ForePortMaint" +/area/almayer/maint/hull/upper/u_a_s) +"jYu" = ( +/obj/structure/platform{ + dir = 8 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"jYz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/p_bow) +/obj/structure/disposalpipe/up/almayer{ + dir = 8; + id = "almayerlink" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "jYR" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -40960,6 +40899,15 @@ icon_state = "tcomms" }, /area/almayer/command/airoom) +"jYZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "jZd" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -40969,30 +40917,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_four) -"jZe" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"jZj" = ( -/obj/structure/surface/rack, -/obj/item/book/manual/orbital_cannon_manual, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) -"jZo" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_p) "jZs" = ( /obj/structure/machinery/light/containment{ dir = 4 @@ -41028,6 +40952,15 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) +"jZz" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/cryo_cells) "jZC" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -41040,36 +40973,43 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"jZD" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_s) +"jZS" = ( +/obj/structure/reagent_dispensers/fueltank/oxygentank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/starboard) "jZU" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/medical/containment/cell/cl) -"jZW" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "jZY" = ( /obj/structure/closet/l3closet/virology, /turf/open/floor/almayer{ icon_state = "redfull" }, /area/almayer/medical/upper_medical) -"kac" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/tool/hand_labeler, +"kag" = ( +/obj/structure/sign/safety/storage{ + pixel_y = 32 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "green" }, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/hallways/lower/port_midship_hallway) +"kai" = ( +/obj/structure/largecrate/supply/ammo/shotgun, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "kam" = ( /obj/item/tool/screwdriver{ layer = 2.9; @@ -41083,17 +41023,21 @@ "kan" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/lower_medical_medbay) -"kaq" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 +"kaw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, /turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/hallways/lower/port_umbilical) "kaB" = ( /obj/structure/machinery/cm_vending/gear/tl{ density = 0; @@ -41136,6 +41080,19 @@ icon_state = "test_floor4" }, /area/almayer/squads/bravo) +"kbh" = ( +/obj/vehicle/powerloader, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/lower/repair_bay) "kbv" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/starboard) @@ -41161,6 +41118,23 @@ icon_state = "kitchen" }, /area/almayer/engineering/upper_engineering) +"kbz" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/toolbox/electrical{ + pixel_y = 9 + }, +/obj/item/storage/toolbox/mechanical/green, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "kbH" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_AresDown"; @@ -41188,16 +41162,19 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/containment) -"kbT" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +"kbN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/vents/pump{ + dir = 1 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" + dir = 5; + icon_state = "plating" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/vehiclehangar) "kbV" = ( /obj/structure/platform{ dir = 1 @@ -41214,17 +41191,6 @@ /obj/structure/machinery/camera/autoname/almayer, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"kcg" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_midship_hallway) "kcl" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -41235,12 +41201,6 @@ "kcp" = ( /turf/closed/wall/almayer, /area/almayer/living/auxiliary_officer_office) -"kcs" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) "kcA" = ( /obj/structure/machinery/light{ dir = 1 @@ -41250,18 +41210,16 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"kcG" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "kcH" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/synthcloset) "kcN" = ( /turf/closed/wall/almayer/reinforced/temphull, /area/almayer/living/commandbunks) +"kcR" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "kde" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/general_equipment) @@ -41286,12 +41244,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"kdo" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "kdv" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -41300,6 +41252,18 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) +"kdx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "kdB" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -41307,26 +41271,52 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) -"keE" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/machinery/light/small, +"kdX" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "silver" + }, +/area/almayer/maint/hull/upper/u_m_p) +"kel" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/revolver/m44{ + desc = "A bulky revolver, occasionally carried by assault troops and officers in the Colonial Marines, as well as civilian law enforcement. Fires .44 Magnum rounds. 'J.P' Is engraved into the barrel." + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"keO" = ( -/obj/structure/largecrate/random/secure, -/obj/effect/decal/warning_stripes{ - icon_state = "E" +/area/almayer/maint/hull/lower/l_f_p) +"keN" = ( +/obj/structure/machinery/light/small, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/lower/l_m_p) "keR" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/starboard) +"kfa" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_midship_hallway) "kfo" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -41344,13 +41334,6 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/port) -"kfB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "kfE" = ( /obj/structure/bed/sofa/south/grey/right, /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ @@ -41372,6 +41355,24 @@ "kfU" = ( /turf/open/floor/plating, /area/almayer/powered/agent) +"kfV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) +"kgg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "kgp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -41403,20 +41404,6 @@ /obj/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/plating, /area/almayer/medical/medical_science) -"kgt" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"kgD" = ( -/obj/structure/sign/safety/cryo{ - pixel_x = 35 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "kgQ" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/adv{ @@ -41428,15 +41415,6 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/execution) -"kgS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/vehiclehangar) "khd" = ( /obj/structure/bed/chair{ dir = 4 @@ -41458,6 +41436,36 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) +"khh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/autoopenclose{ + pixel_y = 32 + }, +/obj/structure/sign/safety/water{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"khz" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/obj/structure/largecrate, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "khD" = ( /turf/open/floor/almayer{ icon_state = "plate" @@ -41469,15 +41477,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"khI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "khJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -41495,12 +41494,23 @@ }, /area/almayer/command/airoom) "kil" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/item/storage/belt/utility, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/maint/hull/lower/l_f_s) +"kin" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "kio" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -41513,24 +41523,6 @@ icon_state = "plate" }, /area/almayer/living/port_emb) -"kiq" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) -"kiy" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "blue" - }, -/area/almayer/hallways/lower/port_midship_hallway) "kiG" = ( /obj/structure/machinery/power/smes/buildable, /obj/structure/machinery/status_display{ @@ -41554,14 +41546,6 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"kiR" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_a_s) "kiT" = ( /obj/structure/platform{ dir = 8 @@ -41598,6 +41582,18 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"kiY" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/smg/m39{ + pixel_y = 6 + }, +/obj/item/weapon/gun/smg/m39{ + pixel_y = -6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "kjk" = ( /obj/structure/machinery/cryopod/right, /obj/structure/sign/safety/cryo{ @@ -41607,22 +41603,6 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cryo) -"kjw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) "kjD" = ( /obj/structure/machinery/computer/demo_sim{ dir = 4; @@ -41636,24 +41616,60 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) +"kjE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "kjO" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "orangecorner" }, /area/almayer/engineering/lower/engine_core) -"kjW" = ( -/obj/structure/closet/firecloset, +"kjY" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"kkd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/port_fore_hallway) +"kkg" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"kki" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"kkj" = ( +/obj/structure/prop/holidays/string_lights{ + pixel_y = 27 + }, +/obj/structure/largecrate/random/barrel/red, +/obj/item/reagent_container/food/drinks/cans/cola{ + pixel_x = -2; + pixel_y = 16 }, -/area/almayer/hallways/lower/port_midship_hallway) -"kjY" = ( -/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/lower/l_m_s) "kkk" = ( /obj/structure/machinery/power/monitor{ name = "Core Power Monitoring" @@ -41666,6 +41682,26 @@ icon_state = "orange" }, /area/almayer/engineering/lower/engine_core) +"kkm" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"kko" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"kks" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) "kkt" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/marine_law, @@ -41693,17 +41729,16 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) -"kkI" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"kkN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +"kkV" = ( +/obj/structure/machinery/door/airlock/almayer/generic{ + dir = 1; + name = "\improper Workshop Vendors" + }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/hallways/lower/repair_bay) "kkW" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/atmospipes, @@ -41713,12 +41748,26 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"klr" = ( +"klf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" + dir = 4; + icon_state = "orange" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/upper/stern_hallway) +"klk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "klH" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -41727,10 +41776,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_medbay) -"klT" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "kmd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -41753,22 +41798,39 @@ icon_state = "plate" }, /area/almayer/living/offices) -"kmx" = ( +"kmu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"kmA" = ( /obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - dir = 9; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/starboard_fore_hallway) "kmE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/north2) +"kmL" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"kmZ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/turf/open/floor/almayer{ + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lockerroom) "kng" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -41777,19 +41839,16 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"knl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"kni" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" }, +/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/starboard_aft_hallway) -"knm" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/lower/starboard_fore_hallway) "knH" = ( /obj/structure/machinery/vending/coffee, /obj/structure/sign/safety/coffee{ @@ -41812,6 +41871,20 @@ icon_state = "cargo" }, /area/almayer/lifeboat_pumps/south2) +"knN" = ( +/obj/structure/sign/safety/three{ + pixel_x = 31; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "emerald" + }, +/area/almayer/hallways/lower/port_midship_hallway) "knO" = ( /obj/structure/bed/chair{ dir = 4 @@ -41821,13 +41894,23 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"kow" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"koa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"kog" = ( +/obj/structure/machinery/power/apc/almayer, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/lower/l_f_s) +"kov" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "koB" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -41861,11 +41944,12 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower/engine_core) -"kpj" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +"kpl" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "kpo" = ( /obj/structure/machinery/floodlight/landing{ name = "bolted floodlight" @@ -41874,6 +41958,23 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) +"kpr" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/vehiclehangar) +"kps" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) "kpQ" = ( /obj/structure/machinery/door_control{ id = "engidorm"; @@ -41886,20 +41987,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"kqb" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"kqm" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "kqt" = ( /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; @@ -41910,6 +41997,22 @@ icon_state = "test_floor4" }, /area/almayer/living/bridgebunks) +"kqu" = ( +/obj/item/folder/red{ + desc = "A red folder. The previous contents are a mystery, though the number 28 has been written on the inside of each flap numerous times. Smells faintly of cough syrup."; + name = "folder: 28"; + pixel_x = -4; + pixel_y = 5 + }, +/obj/structure/surface/table/almayer, +/obj/item/toy/crayon{ + pixel_x = 9; + pixel_y = -2 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "kqv" = ( /obj/structure/machinery/light{ dir = 1 @@ -41936,32 +42039,13 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"kqB" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/surface/table/almayer, -/obj/item/storage/box/drinkingglasses, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"kqC" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/green, -/obj/structure/sign/safety/maint{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"kqI" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 17 }, -/area/almayer/maint/hull/upper/s_bow) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "kqK" = ( /obj/structure/machinery/conveyor{ dir = 8; @@ -41983,8 +42067,23 @@ icon_state = "bluecorner" }, /area/almayer/living/basketball) -"krp" = ( -/obj/structure/surface/table/almayer, +"krm" = ( +/obj/item/paper/prison_station/interrogation_log{ + pixel_x = 10; + pixel_y = 7 + }, +/obj/structure/largecrate/random/barrel/green, +/obj/item/limb/hand/l_hand{ + pixel_x = -5; + pixel_y = 14 + }, +/obj/effect/spawner/random/balaclavas, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) +"krp" = ( +/obj/structure/surface/table/almayer, /obj/item/storage/box/cups, /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -41993,6 +42092,23 @@ icon_state = "plate" }, /area/almayer/living/gym) +"krq" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_umbilical) +"kru" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 + }, +/obj/structure/sign/safety/south{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "kry" = ( /obj/structure/machinery/flasher{ id = "Perma 1"; @@ -42002,17 +42118,13 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/perma) -"krG" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" +"krA" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = -16 }, -/area/almayer/maint/hull/upper/s_bow) -"krJ" = ( -/obj/item/tool/wet_sign, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "krN" = ( /obj/structure/machinery/conveyor{ id = "req_belt" @@ -42082,49 +42194,25 @@ icon_state = "cargo" }, /area/almayer/squads/bravo) -"ksw" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_stern) +"ksH" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) "ksN" = ( /turf/open/floor/almayer/uscm/directional{ dir = 6 }, /area/almayer/living/briefing) -"kti" = ( +"ktH" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ktl" = ( -/obj/structure/machinery/firealarm{ - dir = 1; - pixel_y = -28 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ktI" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/platform{ - dir = 4 + icon_state = "SE-out" }, -/turf/open/floor/almayer{ +/obj/structure/machinery/camera/autoname/almayer{ dir = 4; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) -"ktR" = ( -/obj/item/trash/crushed_cup, -/turf/open/floor/almayer{ - icon_state = "plate" + name = "ship-grade camera" }, -/area/almayer/maint/hull/lower/l_m_s) +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "ktX" = ( /turf/open/floor/almayer{ dir = 4; @@ -42142,12 +42230,27 @@ /obj/structure/machinery/vending/security/riot, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) +"kuj" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) "kuk" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"kus" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "kuu" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -42161,6 +42264,9 @@ icon_state = "emeraldcorner" }, /area/almayer/living/briefing) +"kuI" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "kuJ" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer{ @@ -42168,14 +42274,15 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"kuK" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"kuZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) "kvf" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 2; @@ -42200,6 +42307,15 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering) +"kvj" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "kvU" = ( /obj/structure/surface/table/almayer, /turf/open/floor/plating/plating_catwalk, @@ -42224,21 +42340,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering) -"kwg" = ( -/obj/structure/bookcase/manuals/medical, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) -"kwi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) "kwo" = ( /obj/structure/surface/rack, /turf/open/floor/almayer, @@ -42262,6 +42363,13 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"kwU" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) "kxd" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -42275,14 +42383,6 @@ icon_state = "dark_sterile" }, /area/almayer/living/port_emb) -"kxe" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) "kxo" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/washing_machine{ @@ -42324,9 +42424,13 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/starboard) -"kyw" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_m_s) +"kyH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "kyN" = ( /obj/structure/disposalpipe/segment, /obj/structure/sign/safety/distribution_pipes{ @@ -42337,9 +42441,19 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) -"kyP" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_f_p) +"kyQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/organ/heart/prosthetic{ + pixel_x = -4 + }, +/obj/item/circuitboard{ + pixel_x = 12; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "kyR" = ( /obj/structure/safe/co_office, /obj/item/weapon/pole/fancy_cane, @@ -42369,16 +42483,12 @@ /obj/structure/machinery/vending/walkman, /turf/open/floor/almayer, /area/almayer/living/briefing) -"kzc" = ( -/obj/structure/surface/table/almayer, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_21"; - pixel_y = 11 - }, +"kzd" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/lower/l_a_p) "kzk" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -42397,13 +42507,6 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/execution) -"kzs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "kzy" = ( /obj/structure/bed/chair, /turf/open/floor/almayer{ @@ -42462,15 +42565,6 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"kzR" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) "kzT" = ( /obj/structure/machinery/door_control{ id = "ARES StairsLower"; @@ -42493,80 +42587,49 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) -"kAj" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"kAk" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -16 }, -/area/almayer/hallways/lower/port_aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "kAm" = ( /obj/structure/reagent_dispensers/watertank, /turf/open/floor/almayer{ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) -"kAp" = ( -/obj/structure/surface/rack{ - desc = "A bunch of metal shelves stacked on top of eachother. Excellent for storage purposes, less so as cover. One of the shelf legs is damaged, resulting in the rack being propped up by what appears to be circuit boards." - }, -/obj/structure/machinery/light/small{ - dir = 4; - status = 3; - icon_state = "bulb-burned" - }, -/obj/effect/decal/cleanable/blood, -/obj/item/prop{ - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag"; - desc = "A blood bag with a hole in it. The rats must have gotten to it first." - }, -/obj/item/prop{ - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag"; - desc = "A blood bag with a hole in it. The rats must have gotten to it first." - }, -/obj/item/prop{ - icon = 'icons/obj/items/bloodpack.dmi'; - icon_state = "bloodpack"; - name = "blood bag"; - desc = "A blood bag with a hole in it. The rats must have gotten to it first." - }, -/obj/item/prop{ - icon = 'icons/obj/items/circuitboards.dmi'; - icon_state = "id_mod"; - name = "circuit board"; - desc = "The words \"Cloning Pod\" are scrawled onto it. It appears to be heavily damaged."; - layer = 2.78; - pixel_y = 10; - pixel_x = 8 - }, -/obj/item/prop{ - icon = 'icons/obj/items/circuitboards.dmi'; - icon_state = "id_mod"; - name = "circuit board"; - desc = "The words \"Cloning Scanner\" are scrawled onto it. It appears to be heavily damaged."; - layer = 2.79; - pixel_y = 7; - pixel_x = 8 - }, +"kAC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "sterile_green_corner" + icon_state = "plate" }, -/area/almayer/medical/lower_medical_medbay) -"kAv" = ( -/obj/structure/largecrate/supply/ammo/shotgun, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/hallways/lower/port_midship_hallway) "kAL" = ( /obj/structure/closet/secure_closet/brig, /turf/open/floor/almayer{ icon_state = "red" }, /area/almayer/shipboard/brig/processing) +"kAN" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"kAO" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_a_p) "kAU" = ( /obj/structure/platform{ dir = 4 @@ -42576,6 +42639,22 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south2) +"kAW" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/port_fore_hallway) "kBh" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -42624,14 +42703,6 @@ icon_state = "cargo" }, /area/almayer/living/tankerbunks) -"kCd" = ( -/obj/structure/machinery/gear{ - id = "vehicle_elevator_gears" - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/lower/vehiclehangar) "kCi" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/port_missiles) @@ -42654,14 +42725,11 @@ }, /area/almayer/hallways/hangar) "kCo" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) -"kCu" = ( -/obj/structure/machinery/portable_atmospherics/powered/scrubber, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "kCE" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -42677,13 +42745,34 @@ icon_state = "dark_sterile" }, /area/almayer/medical/containment) -"kDd" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +"kCG" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) +"kCH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/hallways/lower/starboard_midship_hallway) +"kCN" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"kDj" = ( +/obj/structure/bed, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lower_medical_medbay) "kDk" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -42706,6 +42795,13 @@ /obj/structure/pipes/vents/scrubber, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"kDP" = ( +/obj/effect/decal/cleanable/blood, +/obj/structure/prop/broken_arcade, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "kDR" = ( /obj/structure/disposalpipe/junction{ dir = 1; @@ -42719,6 +42815,24 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) +"kDT" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/cryo_cells) +"kDZ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "kEc" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -42772,15 +42886,16 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"kEE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) -"kEW" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) +"kEJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/u_m_s) "kFe" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/firealarm{ @@ -42791,6 +42906,12 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) +"kFi" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "kFs" = ( /obj/structure/machinery/light{ dir = 4 @@ -42805,6 +42926,19 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"kFL" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) +"kFM" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "kFO" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -42816,22 +42950,34 @@ icon_state = "plating" }, /area/almayer/squads/req) -"kFU" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "kFY" = ( /obj/structure/sign/safety/cryo{ pixel_x = 7 }, /turf/closed/wall/almayer, /area/almayer/living/cryo_cells) -"kGi" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +"kGa" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/aft_hallway) +"kGh" = ( +/obj/structure/machinery/cm_vending/sorted/medical/marinemed, +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "kGu" = ( /obj/structure/machinery/cryopod{ layer = 3.1; @@ -42844,12 +42990,14 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cryo) -"kGw" = ( -/obj/structure/machinery/light, +"kGz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/lower/port_midship_hallway) "kGF" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; @@ -42868,14 +43016,30 @@ icon_state = "containment_corner_variant_2" }, /area/almayer/medical/containment/cell) -"kGS" = ( +"kGZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4 + }, /turf/open/floor/almayer{ - icon_state = "mono" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/l_f_s) "kHa" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/surgery) +"kHb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "kHd" = ( /obj/structure/machinery/computer/arcade, /obj/item/prop/helmetgarb/spacejam_tickets{ @@ -42887,6 +43051,31 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"kHq" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_s) +"kHv" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"kHx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "kHS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -42905,25 +43094,36 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"kIf" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"kIk" = ( +"kId" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"kIj" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/lower/engine_core) +"kIr" = ( /obj/structure/prop/invuln/lattice_prop{ dir = 1; icon_state = "lattice-simple"; - pixel_x = 16; - pixel_y = -16 + pixel_x = -16; + pixel_y = 17 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"kIl" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/lower/l_m_p) "kIP" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -42932,25 +43132,11 @@ icon_state = "cargo" }, /area/almayer/squads/charlie) -"kJc" = ( -/obj/structure/ladder{ - height = 1; - id = "ForeStarboardMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/s_bow) -"kJh" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"kIR" = ( +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/hallways/lower/port_aft_hallway) "kJi" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -42963,6 +43149,21 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"kJw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"kJD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "kJH" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -42997,12 +43198,15 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/commandbunks) -"kJZ" = ( -/obj/structure/largecrate/random/barrel/white, +"kKf" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "blue" }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/hallways/upper/aft_hallway) "kKk" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -43031,24 +43235,12 @@ icon_state = "silver" }, /area/almayer/command/airoom) -"kKB" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_aft_hallway) "kKR" = ( /obj/structure/pipes/vents/pump{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) -"kKY" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) "kLc" = ( /obj/structure/machinery/door/airlock/almayer/maint{ req_one_access = null; @@ -43067,57 +43259,14 @@ icon_state = "orange" }, /area/almayer/squads/bravo) -"kLm" = ( +"kMk" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"kLB" = ( -/obj/docking_port/stationary/escape_pod/east, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_s) -"kLE" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancenorth"; - name = "\improper North Hangar Podlock" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"kLP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" - }, -/area/almayer/squads/req) -"kLZ" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"kMa" = ( -/obj/structure/platform_decoration, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "mono" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/hallways/upper/aft_hallway) "kMp" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -43130,17 +43279,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"kMr" = ( -/obj/item/trash/uscm_mre, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -16 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "kMH" = ( /obj/structure/machinery/door/window/brigdoor/southright{ id = "Cell 1"; @@ -43164,37 +43302,14 @@ icon_state = "outerhull_dir" }, /area/almayer/engineering/upper_engineering/port) -"kMR" = ( -/obj/effect/spawner/random/toolbox, -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "kMW" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - req_access = null +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/item/clothing/suit/chef/classic, -/obj/item/tool/kitchen/knife/butcher, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/s_bow) -"kNf" = ( -/obj/structure/bed/chair/office/dark, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/panic) +/area/almayer/maint/hull/upper/u_a_p) "kNk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -43207,9 +43322,11 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) -"kNq" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_a_p) +"kNr" = ( +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/hallways/lower/repair_bay) "kNx" = ( /obj/structure/sign/safety/ref_bio_storage{ pixel_x = -17; @@ -43285,6 +43402,16 @@ icon_state = "bluefull" }, /area/almayer/living/pilotbunks) +"kOF" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "kOH" = ( /obj/structure/machinery/light{ dir = 8 @@ -43297,40 +43424,6 @@ icon_state = "dark_sterile" }, /area/almayer/command/corporateliaison) -"kOJ" = ( -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"kOR" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) -"kOW" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/squads/req) "kPx" = ( /obj/structure/surface/table/almayer, /obj/item/device/mass_spectrometer, @@ -43409,14 +43502,11 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"kQr" = ( -/obj/structure/surface/table/almayer, -/obj/item/trash/pistachios, -/obj/item/tool/lighter/random{ - pixel_x = 13 +"kQm" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/hallways/lower/starboard_fore_hallway) "kQu" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -43428,6 +43518,22 @@ allow_construction = 0 }, /area/almayer/shipboard/brig/processing) +"kQP" = ( +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) +"kQZ" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "kRd" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -43443,21 +43549,6 @@ icon_state = "cargo" }, /area/almayer/command/lifeboat) -"kRk" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver, -/obj/item/prop/helmetgarb/gunoil{ - pixel_x = -7; - pixel_y = 12 - }, -/obj/item/weapon/gun/rifle/l42a{ - pixel_x = 17; - pixel_y = 6 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "kRD" = ( /obj/item/reagent_container/glass/bucket/janibucket, /obj/structure/machinery/light{ @@ -43475,13 +43566,6 @@ icon_state = "cargo" }, /area/almayer/engineering/lower/workshop/hangar) -"kRN" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/meson, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) "kRP" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/item/prop/magazine/dirty/torn, @@ -43491,28 +43575,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"kRU" = ( -/obj/vehicle/powerloader, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/effect/decal/cleanable/blood/oil, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/lower/repair_bay) -"kSn" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "kSv" = ( /obj/item/reagent_container/glass/bucket/janibucket, /turf/open/floor/almayer{ @@ -43536,16 +43598,11 @@ }, /area/almayer/command/airoom) "kSA" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancesouth"; - name = "\improper South Hangar Podlock" - }, +/obj/effect/spawner/random/toolbox, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/lower/l_a_s) "kSH" = ( /obj/structure/sign/prop1{ pixel_y = 32 @@ -43570,6 +43627,26 @@ icon_state = "plating" }, /area/almayer/squads/req) +"kTn" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/stern_hallway) +"kTp" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silvercorner" + }, +/area/almayer/hallways/upper/aft_hallway) +"kTt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "kTv" = ( /obj/structure/machinery/light{ dir = 4 @@ -43579,6 +43656,23 @@ icon_state = "tcomms" }, /area/almayer/command/telecomms) +"kTB" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_fore_hallway) +"kTF" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/item/storage/belt/utility, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "kTN" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -43607,65 +43701,25 @@ icon_state = "test_floor4" }, /area/almayer/living/pilotbunks) -"kUs" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"kUr" = ( +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"kUQ" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/obj/structure/machinery/constructable_frame, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "mono" }, -/area/almayer/hallways/upper/aft_hallway) -"kUw" = ( -/obj/structure/surface/rack, -/obj/item/storage/bag/trash{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/storage/bag/trash{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/item/storage/bag/trash{ - pixel_x = -3; - pixel_y = -2 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering/port) -"kUA" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"kUI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"kUL" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) -"kUQ" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/machinery/constructable_frame, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/lifeboat_pumps/south1) -"kUR" = ( -/turf/open/floor/almayer{ - icon_state = "bluefull" +/area/almayer/lifeboat_pumps/south1) +"kUR" = ( +/turf/open/floor/almayer{ + icon_state = "bluefull" }, /area/almayer/living/briefing) "kUV" = ( @@ -43694,13 +43748,13 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) "kWc" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "kWk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -43723,14 +43777,15 @@ icon_state = "silvercorner" }, /area/almayer/command/cichallway) -"kWI" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, +"kWA" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/p_bow) +"kWG" = ( +/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "redfull" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/shipboard/panic) "kWN" = ( /obj/structure/sign/poster{ desc = "It says DRUG."; @@ -43775,6 +43830,23 @@ icon_state = "plate" }, /area/almayer/squads/bravo) +"kXb" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -16 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"kXe" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "kXf" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -43804,6 +43876,12 @@ icon_state = "plating" }, /area/almayer/shipboard/stern_point_defense) +"kXq" = ( +/obj/item/tool/warning_cone{ + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "kXu" = ( /turf/open/floor/almayer{ dir = 8; @@ -43825,12 +43903,48 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) -"kYl" = ( +"kXV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Railguns and Viewing Room" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_p) +"kYb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/door_control{ + id = "Under Construction Shutters"; + name = "shutter-control"; + pixel_x = -25 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"kYj" = ( +/obj/structure/sign/safety/cryo{ + pixel_x = 35 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"kYs" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) "kYt" = ( /obj/structure/surface/table/woodentable/fancy, /obj/item/storage/bible{ @@ -43910,12 +44024,30 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) +"lad" = ( +/obj/item/tool/wrench{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/prop/mech/hydralic_clamp, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "lah" = ( /turf/open/floor/almayer{ dir = 6; icon_state = "emerald" }, /area/almayer/living/gym) +"laB" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) +"laC" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "laM" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -43937,13 +44069,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"laP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "laQ" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -43978,23 +44103,6 @@ }, /turf/open/floor/plating, /area/almayer/command/cic) -"lbc" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/upper/aft_hallway) "lbf" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -44040,6 +44148,15 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) +"lcj" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "lcy" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -44051,6 +44168,28 @@ icon_state = "bluefull" }, /area/almayer/living/bridgebunks) +"lcz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/repair_bay) +"lcL" = ( +/obj/structure/largecrate/random/barrel, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) +"lcM" = ( +/obj/structure/platform{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "lcV" = ( /obj/structure/bed/chair{ dir = 4 @@ -44066,23 +44205,17 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"ldb" = ( -/obj/structure/machinery/light{ - dir = 1 +"lcZ" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/hallways/lower/vehiclehangar) "ldc" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/engineering/lower/workshop) -"lde" = ( -/obj/structure/machinery/conveyor{ - id = "req_belt" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) "ldl" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 @@ -44091,16 +44224,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) -"ldq" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) "ldt" = ( /obj/structure/machinery/conveyor{ dir = 8; @@ -44123,16 +44246,6 @@ icon_state = "plate" }, /area/almayer/living/captain_mess) -"ldF" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) -"ldW" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) "lea" = ( /obj/structure/sink{ dir = 4; @@ -44179,12 +44292,36 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"leM" = ( +"leC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) +"leL" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 + }, /obj/structure/largecrate/random/barrel/red, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_stern) +/area/almayer/maint/hull/lower/l_m_p) +"leQ" = ( +/obj/structure/machinery/door/airlock/almayer/secure/reinforced{ + name = "\improper Armourer's Workshop"; + req_access = null + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_s) "leY" = ( /obj/structure/bed/sofa/south/white/left, /turf/open/floor/almayer{ @@ -44192,6 +44329,32 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) +"leZ" = ( +/obj/structure/machinery/door_control/cl/quarter/backdoor{ + pixel_x = -25; + pixel_y = 23 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) +"lfa" = ( +/obj/structure/surface/table/almayer, +/obj/item/toy/deck, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/shipboard/brig/cic_hallway) +"lfs" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "lft" = ( /obj/structure/surface/table/almayer, /obj/item/storage/firstaid/fire, @@ -44200,13 +44363,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"lfx" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"lfz" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) "lfH" = ( /obj/structure/machinery/light{ dir = 4 @@ -44216,12 +44372,19 @@ icon_state = "blue" }, /area/almayer/living/basketball) -"lgk" = ( -/obj/effect/decal/cleanable/dirt, +"lgo" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/hallways/upper/aft_hallway) "lgt" = ( /obj/structure/sink{ dir = 4; @@ -44271,20 +44434,17 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"lhj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = -34 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) -"lhs" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +"lgI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/hallways/lower/starboard_aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"lgM" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "lht" = ( /turf/open/floor/almayer{ dir = 6; @@ -44326,6 +44486,12 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"lhS" = ( +/obj/structure/machinery/vending/hydroseeds, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "lhX" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -44334,23 +44500,15 @@ /turf/open/floor/wood/ship, /area/almayer/living/basketball) "lia" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"lib" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +/obj/structure/machinery/light{ + dir = 4 }, +/obj/structure/machinery/cm_vending/sorted/medical/bolted, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "sterile_green_side" }, -/area/almayer/maint/hull/lower/stern) +/area/almayer/medical/lower_medical_medbay) "lid" = ( /obj/structure/machinery/chem_master{ vial_maker = 1 @@ -44359,6 +44517,34 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) +"lij" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_p) +"lim" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/ash, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = 4; + pixel_y = 13 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -7; + pixel_y = 14 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -13; + pixel_y = 8 + }, +/obj/item/trash/cigbutt/ucigbutt{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "lin" = ( /obj/effect/projector{ name = "Almayer_AresDown"; @@ -44377,17 +44563,9 @@ }, /area/almayer/command/airoom) "liF" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet, -/obj/item/clothing/under/marine, -/obj/item/clothing/suit/storage/marine, -/obj/item/clothing/head/helmet/marine, -/obj/item/clothing/head/cmcap, -/obj/item/clothing/head/cmcap, +/obj/structure/closet/firecloset, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/stern) "liJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -44430,29 +44608,43 @@ icon_state = "plate" }, /area/almayer/living/gym) -"ljm" = ( -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" - }, -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" +"ljl" = ( +/obj/structure/prop/invuln/pipe_water, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/obj/item/clothing/gloves/botanic_leather{ - name = "leather gloves" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/obj/structure/closet/crate, -/obj/item/clothing/suit/storage/hazardvest/black, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/upper/u_m_s) "ljs" = ( /obj/effect/landmark/start/marine/spec/bravo, /obj/effect/landmark/late_join/bravo, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) -"ljv" = ( -/turf/closed/wall/almayer, +"lju" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/cardboard{ + amount = 50; + pixel_x = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"ljD" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, /area/almayer/maint/hull/lower/l_a_p) "ljG" = ( /obj/structure/closet/crate/freezer, @@ -44497,16 +44689,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"lka" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "lkd" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -44533,6 +44715,14 @@ icon_state = "red" }, /area/almayer/living/offices/flight) +"lkg" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "lkm" = ( /obj/structure/closet/emcloset, /turf/open/floor/almayer{ @@ -44565,6 +44755,14 @@ icon_state = "plate" }, /area/almayer/squads/charlie) +"lkN" = ( +/obj/item/cell/high/empty, +/obj/item/cell/high/empty, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) "lkV" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -44583,6 +44781,30 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"lli" = ( +/obj/structure/sign/safety/nonpress_0g{ + pixel_y = 32 + }, +/obj/structure/sign/safety/press_area_ag{ + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_umbilical) +"lls" = ( +/obj/item/trash/crushed_cup, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"llF" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "llK" = ( /obj/structure/platform_decoration{ dir = 4 @@ -44598,19 +44820,15 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) -"lma" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15 +"llQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"lmi" = ( -/obj/structure/bed, -/obj/item/bedsheet/green, -/turf/open/floor/almayer{ - icon_state = "mono" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/medical/upper_medical) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "lml" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -44618,13 +44836,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"lmq" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "lmw" = ( /obj/structure/closet/l3closet/general, /obj/structure/machinery/light{ @@ -44636,6 +44847,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) +"lmy" = ( +/obj/structure/sign/safety/restrictedarea, +/obj/structure/sign/safety/security{ + pixel_x = 15 + }, +/turf/closed/wall/almayer, +/area/almayer/shipboard/panic) "lmz" = ( /turf/closed/wall/almayer/white/hull, /area/space) @@ -44650,6 +44868,21 @@ "lmK" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/command/securestorage) +"lmW" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/lights/bulbs{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"lnb" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/upper/u_a_s) "lne" = ( /obj/structure/bed/chair, /turf/open/floor/almayer{ @@ -44679,10 +44912,24 @@ icon_state = "silvercorner" }, /area/almayer/shipboard/brig/cic_hallway) -"lnD" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_a_s) +"lnE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "emerald" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"lnG" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "InnerShutter"; + name = "\improper Saferoom Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/panic) "lnP" = ( /obj/structure/machinery/vending/cola, /obj/structure/window/reinforced, @@ -44783,9 +45030,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/starboard) -"loE" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "loK" = ( /obj/structure/closet/crate/medical, /obj/item/storage/firstaid/adv, @@ -44800,6 +45044,19 @@ "loP" = ( /turf/closed/wall/almayer, /area/almayer/engineering/laundry) +"loQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_f_s) "loS" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -44845,15 +45102,12 @@ icon_state = "cargo" }, /area/almayer/living/commandbunks) -"lpl" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Security Checkpoint" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"lpj" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/area/almayer/shipboard/panic) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "lpt" = ( /turf/open/floor/almayer{ icon_state = "blue" @@ -44867,11 +45121,30 @@ icon_state = "test_floor4" }, /area/almayer/powered/agent) -"lql" = ( +"lpH" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"lpM" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"lqd" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/structure/sign/safety/west{ + pixel_y = 32 + }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/maint/hull/lower/l_f_s) "lqF" = ( /turf/open/floor/almayer{ dir = 9; @@ -44889,6 +45162,10 @@ icon_state = "emerald" }, /area/almayer/hallways/hangar) +"lqL" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_p) "lqN" = ( /obj/item/device/assembly/mousetrap/armed, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -44899,31 +45176,21 @@ icon_state = "orange" }, /area/almayer/living/port_emb) -"lrd" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/hallways/upper/aft_hallway) "lrq" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/armory) -"lrE" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/s_bow) +"lrD" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/rifle/m41a, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "lrF" = ( /obj/structure/machinery/light, /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"lrH" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "lrT" = ( /obj/structure/bed/chair, /turf/open/floor/almayer, @@ -44947,15 +45214,6 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"lsh" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "lsn" = ( /obj/structure/surface/table/almayer, /obj/item/paper{ @@ -44967,12 +45225,6 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) -"lso" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) "lsp" = ( /obj/structure/machinery/door/airlock/almayer/command{ name = "\improper Conference Room" @@ -45000,6 +45252,12 @@ icon_state = "red" }, /area/almayer/living/offices/flight) +"lsQ" = ( +/obj/structure/machinery/power/reactor, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/engineering/lower/engine_core) "lsV" = ( /obj/structure/largecrate/random/barrel/red, /obj/structure/sign/safety/fire_haz{ @@ -45025,47 +45283,34 @@ /obj/effect/landmark/start/working_joe, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/airoom) -"ltm" = ( -/obj/structure/bed/chair/comfy/orange, -/turf/open/floor/almayer{ - icon_state = "plate" +"ltn" = ( +/obj/structure/stairs{ + dir = 1 }, -/area/almayer/maint/hull/upper/u_a_p) +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/port_midship_hallway) "lto" = ( /obj/structure/machinery/iv_drip, /turf/open/floor/almayer{ icon_state = "sterile_green" }, /area/almayer/medical/containment) -"ltt" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"ltw" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) -"ltv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_fore_hallway) -"ltw" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"lty" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/lower/l_f_p) "ltA" = ( /obj/item/tool/weldingtool, /turf/open/floor/almayer, @@ -45098,12 +45343,9 @@ icon_state = "test_floor4" }, /area/almayer/living/commandbunks) -"luE" = ( -/obj/structure/sign/poster{ - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +"luJ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) "luS" = ( /obj/structure/surface/rack, /obj/item/stack/sheet/cardboard{ @@ -45186,6 +45428,12 @@ /obj/structure/machinery/cm_vending/sorted/tech/circuits, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop) +"lwv" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "greencorner" + }, +/area/almayer/hallways/upper/aft_hallway) "lwC" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -45199,12 +45447,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"lwG" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_umbilical) "lwJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -45219,20 +45461,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/main_office) -"lwY" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Viewing Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_p) -"lxd" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +"lxm" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/engineering/lower/engine_core) "lxo" = ( /obj/structure/sign/safety/hazard{ pixel_x = -17; @@ -45246,6 +45482,13 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) +"lxq" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "lxy" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -45260,6 +45503,11 @@ icon_state = "cargo" }, /area/almayer/living/commandbunks) +"lxO" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_umbilical) "lxT" = ( /obj/structure/machinery/constructable_frame, /turf/open/floor/almayer{ @@ -45274,6 +45522,23 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) +"lyc" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/upper/aft_hallway) "lyk" = ( /obj/structure/sign/safety/storage{ pixel_x = -17 @@ -45283,37 +45548,12 @@ icon_state = "green" }, /area/almayer/squads/req) -"lym" = ( -/obj/structure/machinery/vending/cigarette, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) -"lyq" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, -/area/almayer/hallways/lower/port_midship_hallway) "lyw" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"lyz" = ( -/obj/structure/surface/table/almayer, -/obj/item/organ/heart/prosthetic{ - pixel_x = -4 - }, -/obj/item/circuitboard{ - pixel_x = 12; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "lyE" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ @@ -45321,14 +45561,28 @@ icon_state = "silvercorner" }, /area/almayer/command/computerlab) +"lyL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "lyP" = ( -/obj/structure/largecrate/random/case/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_fore_hallway) +"lyV" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/s_bow) -"lyW" = ( -/turf/closed/wall/almayer/outer, /area/almayer/maint/hull/lower/l_m_p) "lyX" = ( /obj/structure/machinery/cm_vending/clothing/senior_officer{ @@ -45371,32 +45625,19 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"lzF" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) "lzY" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = -25 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/chief_mp_office) -"lAa" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/lightreplacer{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/toolbox/emergency, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +"lAg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "lAl" = ( /turf/open/floor/almayer{ dir = 4; @@ -45433,25 +45674,28 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"lBf" = ( -/obj/structure/machinery/light, +"lAR" = ( /turf/open/floor/almayer{ - dir = 10; + dir = 9; icon_state = "red" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/port_fore_hallway) +"lAX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "lBg" = ( /obj/structure/bedsheetbin, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) -"lBl" = ( -/obj/structure/sink{ - pixel_y = 24 - }, +"lBj" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) +/area/almayer/maint/hull/lower/l_m_p) "lBv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -45464,46 +45708,22 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"lBw" = ( -/obj/structure/machinery/cryopod{ - pixel_y = 6 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/upper/u_m_p) -"lBB" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/u_m_s) -"lCc" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, +"lBF" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/item/clipboard, +/obj/item/tool/pen, /turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"lCm" = ( -/obj/structure/machinery/light/small{ - dir = 1 + dir = 8; + icon_state = "green" }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" +/area/almayer/squads/req) +"lBO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/area/almayer/maint/hull/upper/s_bow) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "lCp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -45538,28 +45758,14 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"lDa" = ( -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_29" - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"lDk" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/machinery/door_control{ - id = "laddersoutheast"; - name = "South East Ladders Shutters"; - pixel_y = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +"lCT" = ( +/obj/structure/machinery/conveyor_switch{ + id = "lower_garbage" }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/lower/l_a_p) "lDn" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -45567,26 +45773,6 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"lDA" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"lDL" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) "lDN" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -45605,15 +45791,6 @@ icon_state = "mono" }, /area/almayer/medical/hydroponics) -"lDT" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) "lDV" = ( /obj/effect/landmark/start/marine/medic/bravo, /obj/effect/landmark/late_join/bravo, @@ -45649,6 +45826,18 @@ icon_state = "red" }, /area/almayer/shipboard/brig/lobby) +"lEz" = ( +/obj/item/coin/silver{ + desc = "A small coin, bearing the falling falcons insignia."; + name = "falling falcons challenge coin" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "lEF" = ( /obj/structure/stairs{ icon_state = "ramptop" @@ -45659,6 +45848,15 @@ }, /turf/open/floor/almayer, /area/almayer/living/chapel) +"lEI" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "lEO" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -45666,11 +45864,15 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"lEV" = ( +"lEX" = ( +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "emerald" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/hallways/lower/port_midship_hallway) "lFe" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -45707,16 +45909,6 @@ "lFp" = ( /turf/closed/wall/almayer, /area/almayer/engineering/lower/workshop/hangar) -"lFr" = ( -/obj/structure/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) "lFt" = ( /obj/structure/machinery/portable_atmospherics/powered/pump, /obj/structure/sign/safety/maint{ @@ -45728,17 +45920,10 @@ icon_state = "cargo" }, /area/almayer/engineering/starboard_atmos) -"lFw" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, +"lFv" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/s_bow) "lFA" = ( /obj/structure/surface/table/almayer, /obj/item/storage/pouch/tools/tank, @@ -45780,18 +45965,17 @@ /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) "lFL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/light{ - dir = 1 +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/p_bow) +"lFZ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "green" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/port_aft_hallway) "lGg" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/almayer{ @@ -45799,25 +45983,71 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"lHk" = ( -/obj/structure/closet/firecloset, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out" +"lGi" = ( +/obj/structure/platform{ + dir = 1 + }, +/obj/structure/largecrate/random/case, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"lGo" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/maint/hull/lower/l_a_p) +"lGH" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/u_m_s) +"lGI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"lGV" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"lGW" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_f_p) +"lGZ" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "lHu" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "greencorner" }, /area/almayer/living/grunt_rnr) -"lHB" = ( -/obj/structure/prop/almayer/computers/sensor_computer3, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) +"lHE" = ( +/obj/structure/machinery/light/small, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "lHG" = ( /obj/structure/machinery/door/airlock/almayer/maint{ access_modified = 1; @@ -45832,9 +46062,18 @@ icon_state = "test_floor4" }, /area/almayer/living/grunt_rnr) -"lIj" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/mess) +"lHU" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) +"lHV" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "lIp" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 @@ -45844,20 +46083,6 @@ }, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"lIu" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancenorth"; - name = "\improper North Hangar Podlock" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "lII" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -45866,18 +46091,21 @@ icon_state = "mono" }, /area/almayer/engineering/port_atmos) -"lIQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) "lIU" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "mono" }, /area/almayer/engineering/upper_engineering/port) +"lJb" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "lJu" = ( /obj/structure/barricade/metal{ dir = 1 @@ -45941,12 +46169,6 @@ icon_state = "dark_sterile" }, /area/almayer/shipboard/brig/cells) -"lJM" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) "lJO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -45993,29 +46215,44 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"lLe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) "lLl" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer{ - icon_state = "greencorner" + dir = 1; + icon_state = "blue" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/upper/aft_hallway) +"lLs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"lLx" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet, +/obj/item/clothing/under/marine, +/obj/item/clothing/suit/storage/marine, +/obj/item/clothing/head/helmet/marine, +/obj/item/clothing/head/cmcap, +/obj/item/clothing/head/cmcap, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "lLC" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/squads/charlie) -"lLO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) "lLS" = ( /obj/structure/sign/safety/galley{ pixel_x = 32 @@ -46049,33 +46286,12 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"lMw" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) "lMx" = ( /obj/structure/closet/firecloset, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/engineering/upper_engineering/starboard) -"lMO" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "lMY" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -46085,12 +46301,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) -"lNk" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "lNw" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -46106,6 +46316,15 @@ icon_state = "plate" }, /area/almayer/squads/charlie) +"lNz" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/obj/structure/machinery/part_fabricator/dropship, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/repair_bay) "lNN" = ( /obj/structure/closet/secure_closet/medical2, /turf/open/floor/almayer{ @@ -46117,14 +46336,18 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/engineering/lower/workshop) -"lOn" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"lOa" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 }, /turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"lOj" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "greencorner" + }, /area/almayer/hallways/upper/aft_hallway) "lOr" = ( /obj/structure/window/framed/almayer, @@ -46136,6 +46359,10 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) +"lOt" = ( +/obj/effect/landmark/start/liaison, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "lOH" = ( /obj/structure/sink{ pixel_y = 32 @@ -46186,6 +46413,24 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"lPo" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/sign/safety/two{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "lPB" = ( /obj/structure/surface/table/almayer, /obj/item/device/lightreplacer, @@ -46211,6 +46456,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) +"lPE" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard, +/obj/item/paper, +/obj/item/clothing/glasses/mgoggles, +/obj/item/clothing/glasses/mgoggles, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "lPO" = ( /obj/structure/surface/rack, /turf/open/floor/almayer{ @@ -46218,10 +46471,10 @@ icon_state = "silver" }, /area/almayer/command/securestorage) -"lPW" = ( -/obj/structure/reagent_dispensers/fueltank, +"lPP" = ( +/obj/structure/largecrate/random/barrel/green, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/lower/l_a_s) "lQa" = ( /obj/structure/machinery/light{ dir = 8 @@ -46234,32 +46487,18 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"lQf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, +"lQk" = ( +/obj/structure/largecrate/supply/supplies/water, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "red" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/u_a_p) "lQz" = ( /obj/structure/machinery/vending/coffee, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/squads/bravo) -"lQB" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) "lQG" = ( /obj/structure/machinery/computer/tech_control, /turf/open/floor/plating/plating_catwalk, @@ -46288,6 +46527,14 @@ icon_state = "sterile_green_side" }, /area/almayer/shipboard/brig/surgery) +"lRo" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "lRs" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -46301,10 +46548,6 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) -"lRt" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "lRE" = ( /obj/structure/stairs/perspective{ icon_state = "p_stair_sn_full_cap" @@ -46314,11 +46557,21 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"lRL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "lRP" = ( /obj/structure/surface/table/almayer, /obj/item/prop/helmetgarb/chaplain_patch, /turf/open/floor/wood/ship, /area/almayer/living/chapel) +"lRV" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "lRX" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp, @@ -46351,21 +46604,23 @@ icon_state = "red" }, /area/almayer/shipboard/brig/cells) -"lSJ" = ( -/obj/structure/machinery/light/small, -/obj/effect/decal/warning_stripes{ - icon_state = "N" +"lSF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/maint/hull/upper/s_bow) -"lSX" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +/turf/open/floor/almayer{ + dir = 8; + icon_state = "plating_striped" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/squads/req) +"lSH" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "lTt" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -46385,6 +46640,18 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/chapel) +"lTL" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"lTY" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/upper/stern_hallway) "lUm" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/secdoor/glass/reinforced{ name = "\improper Brig Cells"; @@ -46397,24 +46664,12 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/processing) -"lUA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/hallways/lower/port_fore_hallway) -"lUQ" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, +"lUr" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/upper/u_f_p) "lVl" = ( /obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, /turf/open/floor/almayer, @@ -46423,17 +46678,28 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"lVR" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, +"lVv" = ( /obj/structure/platform{ - dir = 8 + dir = 1 }, +/obj/structure/reagent_dispensers/watertank, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/upper/u_a_s) +"lVK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "greencorner" + }, +/area/almayer/squads/req) "lVS" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 4; @@ -46444,17 +46710,6 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"lVW" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) "lVX" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/overwatch/almayer{ @@ -46476,12 +46731,12 @@ icon_state = "plate" }, /area/almayer/command/cic) -"lVZ" = ( -/obj/structure/platform_decoration{ - dir = 4 +"lWq" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/hallways/lower/starboard_umbilical) "lWr" = ( /obj/structure/largecrate/random/case, /turf/open/floor/almayer{ @@ -46489,25 +46744,15 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"lWt" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" +"lWA" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 }, -/area/almayer/maint/hull/upper/u_m_s) -"lWO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/light/small{ - dir = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) -"lWY" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/hallways/lower/starboard_aft_hallway) "lXb" = ( /obj/structure/disposalpipe/segment{ dir = 8 @@ -46543,8 +46788,9 @@ /area/almayer/living/offices) "lYg" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "lYk" = ( /obj/item/trash/c_tube{ pixel_x = 16; @@ -46554,14 +46800,9 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"lYt" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) +"lYm" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_p) "lYL" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -46579,18 +46820,25 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"lZb" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +"lYS" = ( +/obj/docking_port/stationary/escape_pod/east, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_s) +"lYT" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +/obj/structure/barricade/handrail, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"lYZ" = ( +/obj/structure/largecrate/random, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "lZs" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/radio/intercom{ @@ -46613,41 +46861,38 @@ icon_state = "plate" }, /area/almayer/command/cic) -"lZI" = ( -/obj/structure/prop/invuln/lattice_prop{ +"lZt" = ( +/obj/structure/disposalpipe/segment{ dir = 1; - icon_state = "lattice-simple"; - pixel_x = -16; - pixel_y = 17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "pipe-c" }, -/area/almayer/maint/hull/lower/l_m_p) -"lZM" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 4; + icon_state = "silver" }, -/area/almayer/maint/lower/cryo_cells) +/area/almayer/hallways/upper/aft_hallway) +"lZD" = ( +/obj/effect/landmark/crap_item, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "lZZ" = ( /obj/structure/machinery/autolathe/medilathe/full, /turf/open/floor/almayer{ icon_state = "test_floor4" }, /area/almayer/medical/hydroponics) -"maF" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, +"maG" = ( +/obj/structure/largecrate/random/case, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_a_p) "maI" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -46656,10 +46901,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"maK" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "maL" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/snacks/protein_pack, @@ -46689,15 +46930,42 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"mbu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"maU" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/upper/u_m_p) +"mba" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) +"mbp" = ( +/obj/structure/platform, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "mbx" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -46707,10 +46975,42 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"mbR" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_p) +"mch" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Security Checkpoint" + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "safe_armory"; + name = "\improper Hangar Armory Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/panic) +"mcs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) +"mcz" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "mcL" = ( /obj/structure/machinery/vending/snack, /obj/structure/sign/safety/maint{ @@ -46728,28 +47028,67 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"mdk" = ( -/obj/structure/machinery/door/poddoor/railing{ +"mcY" = ( +/turf/open/floor/almayer{ dir = 4; - id = "vehicle_elevator_railing_aux" + icon_state = "red" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/hallways/upper/aft_hallway) "mdo" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/squads/alpha) -"mdC" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +"mdF" = ( +/obj/structure/sign/safety/hazard{ + pixel_x = 32; + pixel_y = 7 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 32; + pixel_y = -8 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/lower/stern) +"mdG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"mdH" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) +"mdT" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/ammo_magazine/pistol{ + current_rounds = 0 + }, +/obj/item/weapon/gun/pistol/m4a3{ + current_mag = null + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/living/offices/flight) "mdW" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/effect/decal/warning_stripes{ @@ -46766,19 +47105,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"mem" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "meu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -46793,50 +47119,69 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"meE" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 +"meC" = ( +/obj/structure/surface/rack, +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = 3; + pixel_y = -2 }, -/area/almayer/hallways/lower/vehiclehangar) -"meQ" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"meS" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - icon_state = "mono" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) -"meT" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/area/almayer/maint/hull/lower/l_m_p) +"meM" = ( +/obj/structure/sign/safety/airlock{ + pixel_y = -32 }, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/lower/l_m_p) +"meQ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "meY" = ( /turf/closed/wall/almayer{ damage_cap = 15000 }, /area/almayer/squads/alpha) -"mfH" = ( +"mfc" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_m_s) +"mfr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "mfM" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, @@ -46856,19 +47201,6 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"mfR" = ( -/obj/structure/surface/table/almayer, -/obj/item/paper_bin{ - pixel_x = -6; - pixel_y = 7 - }, -/obj/item/tool/pen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) -"mgb" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "mgd" = ( /obj/structure/machinery/autolathe/armylathe/full, /turf/open/floor/almayer{ @@ -46914,14 +47246,21 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/charlie_delta_shared) -"mgX" = ( -/obj/structure/platform{ - dir = 4 +"mgN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"mgZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/lower/cryo_cells) "mha" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -46992,6 +47331,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) +"miG" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "miV" = ( /obj/structure/sign/safety/rewire{ pixel_x = -17; @@ -47006,29 +47351,49 @@ icon_state = "redfull" }, /area/almayer/command/cic) -"mjs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "mjt" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ allow_construction = 0 }, /area/almayer/shipboard/brig/processing) -"mjy" = ( -/obj/structure/machinery/conveyor_switch{ - id = "lower_garbage" +"mju" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/stern_hallway) +"mjw" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"mjz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"mjC" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/warning_stripes{ + icon_state = "N" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/upper/s_bow) +"mjE" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "mjS" = ( /obj/structure/machinery/firealarm{ pixel_y = 28 @@ -47038,6 +47403,12 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie) +"mkb" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "mkc" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -47094,6 +47465,14 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"mkk" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "mkl" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -47113,30 +47492,19 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower/workshop/hangar) -"mkw" = ( -/obj/structure/sign/safety/security{ - pixel_y = -32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"mkq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"mkx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"mkF" = ( -/obj/structure/largecrate/random/barrel/blue, +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/maint/hull/upper/u_a_s) "mkG" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -47193,6 +47561,16 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower/workshop) +"mkW" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldpack, +/obj/item/storage/toolbox/mechanical, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/maint/hull/upper/u_a_s) "mlb" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -47254,50 +47632,55 @@ /obj/structure/machinery/door/poddoor/almayer/biohazard/white, /turf/open/floor/plating, /area/almayer/medical/medical_science) -"mnc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) "mng" = ( /turf/open/floor/almayer{ icon_state = "redcorner" }, /area/almayer/living/briefing) +"mns" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) +"mnz" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_umbilical) "mnA" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"mnC" = ( +"mnD" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "greencorner" + dir = 4; + icon_state = "orange" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/starboard_umbilical) "mnI" = ( /turf/open/floor/almayer{ icon_state = "blue" }, /area/almayer/living/briefing) -"mnV" = ( -/obj/structure/sign/safety/refridgeration{ - pixel_y = -32 - }, -/obj/structure/sign/safety/medical{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "mnW" = ( /obj/structure/surface/table/almayer, /obj/item/device/reagent_scanner{ @@ -47323,21 +47706,15 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) -"moc" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/upper/u_f_p) -"moq" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light{ - dir = 4 +"mod" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/u_m_p) +/area/almayer/maint/hull/lower/l_f_p) "mor" = ( /obj/structure/machinery/light{ dir = 8 @@ -47348,6 +47725,17 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"mot" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "mov" = ( /obj/structure/bed/chair{ dir = 1 @@ -47363,27 +47751,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha_bravo_shared) -"moK" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_s) -"moL" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/emails{ - dir = 1; - pixel_x = 1; - pixel_y = 4 - }, -/obj/item/tool/kitchen/utensil/fork{ - pixel_x = -9; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "moM" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer{ @@ -47395,18 +47762,18 @@ icon_state = "silver" }, /area/almayer/living/briefing) -"mph" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" +"moT" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 80 }, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" +/obj/structure/machinery/light{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/maint/hull/lower/l_a_p) "mpn" = ( /obj/structure/pipes/vents/pump, /obj/structure/surface/table/almayer, @@ -47414,6 +47781,16 @@ icon_state = "redfull" }, /area/almayer/living/briefing) +"mpt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/lower/port_umbilical) "mpP" = ( /obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer{ @@ -47421,26 +47798,17 @@ }, /area/almayer/engineering/lower) "mpV" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/machinery/light{ + dir = 1 }, -/area/almayer/hallways/lower/starboard_umbilical) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "mqb" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"mqd" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/upper/aft_hallway) "mqg" = ( /obj/structure/bed/chair{ dir = 4 @@ -47463,18 +47831,11 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"mqt" = ( -/turf/open/floor/almayer{ - icon_state = "bluecorner" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"mqB" = ( -/obj/structure/disposalpipe/segment, +"mqu" = ( /turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/hallways/lower/starboard_midship_hallway) "mqK" = ( /obj/structure/machinery/cm_vending/gear/spec, /obj/structure/sign/safety/hazard{ @@ -47488,18 +47849,6 @@ icon_state = "plate" }, /area/almayer/squads/bravo) -"mqR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "mqU" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -47509,12 +47858,18 @@ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_two) -"mqZ" = ( -/obj/structure/platform{ - dir = 8 +"mre" = ( +/obj/effect/decal/cleanable/cobweb{ + pixel_x = -9; + pixel_y = 19 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"mrm" = ( +/obj/effect/landmark/start/professor, +/obj/effect/landmark/late_join/cmo, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) "mrD" = ( /obj/structure/machinery/light{ dir = 1 @@ -47539,6 +47894,18 @@ icon_state = "green" }, /area/almayer/squads/req) +"mse" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) "msg" = ( /obj/structure/machinery/light, /obj/structure/sign/safety/waterhazard{ @@ -47587,16 +47954,6 @@ icon_state = "orange" }, /area/almayer/squads/bravo) -"msC" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 8; - req_one_access = list(2,34,30) - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_m_s) "msP" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ @@ -47611,6 +47968,14 @@ icon_state = "plate" }, /area/almayer/living/gym) +"mtj" = ( +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "mtl" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/execution) @@ -47651,6 +48016,32 @@ icon_state = "silver" }, /area/almayer/command/cichallway) +"mtQ" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"mtR" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/crushed_cup, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -5; + pixel_y = 9 + }, +/obj/item/spacecash/c10{ + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/ashtray/plastic{ + pixel_x = 5; + pixel_y = -10 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "mtZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -47660,12 +48051,6 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"mua" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) "mub" = ( /obj/structure/barricade/handrail{ dir = 4 @@ -47674,6 +48059,10 @@ icon_state = "plate" }, /area/almayer/living/gym) +"muc" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) "muq" = ( /obj/structure/bed/sofa/vert/grey/bot, /obj/structure/bed/sofa/vert/grey{ @@ -47700,6 +48089,14 @@ icon_state = "plate" }, /area/almayer/squads/alpha) +"muJ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/cryo_cells) "muQ" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -47720,19 +48117,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"mvg" = ( -/obj/docking_port/stationary/escape_pod/west, -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_p) -"mvi" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/revolver/m44{ - desc = "A bulky revolver, occasionally carried by assault troops and officers in the Colonial Marines, as well as civilian law enforcement. Fires .44 Magnum rounds. 'J.P' Is engraved into the barrel." - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "mvl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -47746,6 +48130,14 @@ icon_state = "bluecorner" }, /area/almayer/squads/delta) +"mvu" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "mvE" = ( /obj/item/bedsheet/brown{ pixel_y = 13 @@ -47798,12 +48190,6 @@ icon_state = "dark_sterile" }, /area/almayer/shipboard/brig/surgery) -"mww" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) "mwA" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -47825,11 +48211,12 @@ icon_state = "test_floor4" }, /area/almayer/medical/lower_medical_medbay) -"mwP" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +"mwO" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/area/almayer/maint/hull/upper/p_stern) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "mwQ" = ( /obj/structure/machinery/landinglight/ds1/delayone{ dir = 4 @@ -47850,14 +48237,26 @@ /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/stair_clone/upper) -"mxg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"mwY" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/port_fore_hallway) +"mxa" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" }, -/turf/open/floor/almayer, /area/almayer/hallways/upper/aft_hallway) "mxT" = ( /obj/structure/surface/table/almayer, @@ -47866,13 +48265,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"mxV" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "myl" = ( /obj/structure/machinery/power/apc/almayer/hardened{ cell_type = /obj/item/cell/hyper; @@ -47894,6 +48286,41 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) +"myx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) +"myy" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) +"myA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "myJ" = ( /obj/structure/machinery/light{ dir = 4 @@ -47905,6 +48332,13 @@ icon_state = "test_floor5" }, /area/almayer/squads/req) +"myN" = ( +/obj/structure/pipes/vents/pump{ + dir = 8; + id_tag = "mining_outpost_pump" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "myP" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/sentencing{ @@ -47915,38 +48349,17 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"mza" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "bot_armory"; - name = "\improper Armory Shutters" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 2; - name = "\improper Armory" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 2; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -2; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/brig/armory) "mzg" = ( /turf/open/floor/almayer{ icon_state = "emerald" }, /area/almayer/squads/charlie) +"mzk" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "mzq" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -47971,10 +48384,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) -"mzv" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "mzz" = ( /obj/structure/machinery/light, /turf/open/floor/almayer, @@ -47983,15 +48392,6 @@ /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"mzI" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "mzS" = ( /turf/open/floor/almayer{ dir = 9; @@ -48023,6 +48423,15 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"mAO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "mAV" = ( /obj/structure/machinery/cryopod, /turf/open/floor/almayer{ @@ -48030,14 +48439,12 @@ }, /area/almayer/squads/delta) "mBa" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" +/obj/structure/machinery/firealarm{ + dir = 1; + pixel_y = -28 }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "mBc" = ( /obj/structure/bed/chair{ dir = 8 @@ -48058,6 +48465,9 @@ icon_state = "dark_sterile" }, /area/almayer/living/pilotbunks) +"mBf" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_a_s) "mBp" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -48103,6 +48513,48 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) +"mBT" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/lower/engine_core) +"mBX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"mCg" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) +"mCj" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddernorthwest"; + name = "\improper North West Ladders Shutters" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "mCo" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -48110,15 +48562,6 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) -"mCE" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "mCL" = ( /obj/structure/sign/safety/fire_haz{ pixel_x = 8; @@ -48126,6 +48569,18 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south2) +"mCS" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/stern_hallway) "mDj" = ( /obj/structure/machinery/photocopier, /obj/item/paper{ @@ -48142,13 +48597,6 @@ icon_state = "green" }, /area/almayer/squads/req) -"mDz" = ( -/obj/structure/machinery/shower{ - pixel_y = 16 - }, -/obj/item/tool/soap, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "mDJ" = ( /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/starboard) @@ -48197,13 +48645,24 @@ icon_state = "test_floor4" }, /area/almayer/living/commandbunks) -"mDZ" = ( +"mEr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"mED" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "mEE" = ( /obj/structure/platform{ dir = 4; @@ -48215,6 +48674,40 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) +"mEL" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/obj/item/prop/helmetgarb/gunoil{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/item/weapon/gun/rifle/l42a{ + pixel_x = 17; + pixel_y = 6 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) +"mEN" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"mFa" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "mFc" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -48240,16 +48733,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"mFL" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "mFN" = ( /obj/effect/step_trigger/ares_alert/mainframe, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -48295,26 +48778,27 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"mFQ" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/lower/s_bow) "mGe" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/cichallway) -"mGk" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) "mGu" = ( /turf/open/floor/almayer{ dir = 4; icon_state = "silver" }, /area/almayer/command/securestorage) +"mGE" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -19; + pixel_y = -6 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19; + pixel_y = 6 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "mGT" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -48339,6 +48823,14 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) +"mHj" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "mHo" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/washing_machine{ @@ -48352,6 +48844,20 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) +"mHt" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) +"mHv" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/upper_medical) "mHx" = ( /obj/structure/bed/chair{ dir = 4 @@ -48401,17 +48907,6 @@ icon_state = "silver" }, /area/almayer/command/airoom) -"mHF" = ( -/obj/structure/surface/rack, -/obj/item/clothing/head/headband/red{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/item/clothing/glasses/regular/hipster, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "mHO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/light, @@ -48419,17 +48914,6 @@ icon_state = "mono" }, /area/almayer/living/pilotbunks) -"mId" = ( -/obj/structure/closet, -/obj/item/clothing/suit/armor/riot/marine/vintage_riot, -/obj/item/clothing/head/helmet/riot/vintage_riot, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "mIy" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -48463,6 +48947,26 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/upper_engineering/port) +"mIQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"mIX" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice10"; + pixel_x = -16; + pixel_y = 16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "mJa" = ( /obj/structure/closet/crate/trashcart, /obj/item/trash/boonie, @@ -48500,15 +49004,6 @@ /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/squads/alpha) -"mJp" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/hallways/upper/aft_hallway) "mJu" = ( /turf/open/floor/almayer/uscm/directional, /area/almayer/command/cic) @@ -48525,9 +49020,6 @@ icon_state = "blue" }, /area/almayer/living/pilotbunks) -"mJO" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_m_p) "mJP" = ( /obj/structure/machinery/cm_vending/gear/tl{ density = 0; @@ -48569,17 +49061,6 @@ "mKq" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/living/bridgebunks) -"mKs" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "mKw" = ( /obj/structure/disposalpipe/junction{ dir = 1 @@ -48645,6 +49126,17 @@ icon_state = "plate" }, /area/almayer/living/port_emb) +"mKO" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "mLe" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -48658,9 +49150,22 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"mLg" = ( +"mLr" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/maint/hull/lower/l_m_s) +"mLy" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = -16 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "mLz" = ( /obj/structure/machinery/door_control{ id = "pobunk1"; @@ -48693,17 +49198,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/main_office) -"mLN" = ( -/obj/structure/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "mLR" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -48713,6 +49207,12 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) +"mMC" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) "mMP" = ( /obj/effect/landmark/start/intel, /turf/open/floor/plating/plating_catwalk, @@ -48744,25 +49244,11 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"mNG" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/west{ - pixel_y = 32 - }, -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_y = 24; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, +"mNB" = ( /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "green" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/hallways/lower/port_midship_hallway) "mNI" = ( /obj/structure/machinery/door/window/westleft{ dir = 2 @@ -48780,20 +49266,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/perma) -"mNS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/largecrate/supply/weapons/m39{ - pixel_x = 2 - }, -/obj/structure/largecrate/supply/weapons/m41a{ - layer = 3.1; - pixel_x = 6; - pixel_y = 17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "mNX" = ( /turf/open/floor/almayer_hull{ dir = 4; @@ -48824,35 +49296,11 @@ /turf/closed/wall/almayer/outer, /area/almayer/command/airoom) "mOw" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) -"mOE" = ( -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"mOR" = ( -/obj/structure/surface/rack, -/obj/item/roller, -/obj/item/roller, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/u_m_s) -"mPc" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "mPf" = ( /turf/open/floor/almayer/uscm/directional{ dir = 6 @@ -48885,32 +49333,15 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) -"mPw" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"mPK" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 4 - }, -/obj/structure/sign/safety/storage{ - pixel_y = 7; - pixel_x = -17 - }, -/obj/structure/sign/safety/commline_connection{ - pixel_x = -17; - pixel_y = -7 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/squads/req) -"mPM" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_midship_hallway) +"mPB" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"mPQ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "mPR" = ( /obj/structure/machinery/light{ dir = 8 @@ -48920,6 +49351,14 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"mPW" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "mQc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -48929,14 +49368,6 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"mQd" = ( -/obj/structure/surface/rack, -/obj/item/device/radio, -/obj/item/tool/weldpack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/vehiclehangar) "mQn" = ( /obj/structure/sign/safety/rad_shield{ pixel_x = 32 @@ -48946,34 +49377,12 @@ icon_state = "orange" }, /area/almayer/engineering/lower/engine_core) -"mQx" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/port_fore_hallway) "mQC" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/port_atmos) -"mQF" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/upper/stern_hallway) -"mQY" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, +"mQQ" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_s) "mRn" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -49022,26 +49431,13 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"mRH" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ - req_access = null; - req_one_access = null; - req_one_access_txt = "7;23;27;102" - }, -/obj/item/reagent_container/food/drinks/coffee{ - pixel_x = -3; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) -"mRI" = ( -/obj/structure/machinery/door/airlock/almayer/maint, +"mRC" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "mono" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/hallways/upper/aft_hallway) "mRQ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -49058,22 +49454,33 @@ icon_state = "red" }, /area/almayer/command/lifeboat) -"mRU" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_m_p) "mRW" = ( /turf/open/floor/almayer/research/containment/corner1, /area/almayer/medical/containment/cell/cl) +"mSc" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Secretroom"; + indestructible = 1; + unacidable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_m_s) "mSi" = ( /obj/structure/bed/sofa/vert/grey/top{ pixel_y = 11 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"mSr" = ( -/obj/effect/landmark/crap_item, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +"mSm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "mSs" = ( /obj/structure/machinery/light{ dir = 8 @@ -49083,6 +49490,9 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"mSu" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/mess) "mSz" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/crew/alt, @@ -49090,6 +49500,12 @@ icon_state = "silverfull" }, /area/almayer/command/securestorage) +"mSG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "mSK" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/window/reinforced{ @@ -49100,19 +49516,25 @@ icon_state = "test_floor5" }, /area/almayer/medical/hydroponics) -"mSM" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) "mSU" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ icon_state = "blue" }, /area/almayer/squads/charlie_delta_shared) +"mTa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "mTc" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/emails{ @@ -49140,16 +49562,6 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) -"mTo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/hallways/upper/aft_hallway) "mTp" = ( /obj/structure/window/reinforced{ dir = 4; @@ -49164,15 +49576,12 @@ icon_state = "cargo_arrow" }, /area/almayer/medical/hydroponics) -"mTL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" +"mTK" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "mTN" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -49215,34 +49624,12 @@ }, /area/almayer/command/airoom) "mUE" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) -"mUL" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"mUY" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_m_s) -"mVh" = ( +/obj/structure/bed/stool, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "green" }, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/hallways/lower/port_midship_hallway) "mVr" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -49253,17 +49640,6 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"mVA" = ( -/obj/item/reagent_container/glass/bucket, -/obj/item/tool/mop{ - pixel_x = -6; - pixel_y = 24 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "mVE" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -49286,21 +49662,30 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"mVF" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "officers_mess"; - name = "\improper Privacy Shutters" +"mVY" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "19;30" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"mWh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) +"mWl" = ( +/obj/vehicle/powerloader, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "cargo" }, -/area/almayer/maint/upper/mess) +/area/almayer/hallways/lower/repair_bay) "mWs" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -49363,55 +49748,11 @@ "mXj" = ( /turf/closed/wall/almayer, /area/almayer/living/commandbunks) -"mXm" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"mXy" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/sign/safety/rewire{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/port_aft_hallway) -"mXP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"mYd" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = 32 - }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) -"mYt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 +"mYp" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer, /area/almayer/hallways/lower/vehiclehangar) "mYv" = ( /obj/structure/disposalpipe/sortjunction{ @@ -49421,6 +49762,17 @@ }, /turf/closed/wall/almayer, /area/almayer/squads/req) +"mYT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "mZb" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -49435,24 +49787,6 @@ icon_state = "blue" }, /area/almayer/command/cichallway) -"mZc" = ( -/obj/structure/sign/poster/blacklight{ - pixel_y = 35 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/reagent_dispensers/beerkeg/alt_dark{ - anchored = 1; - chemical = null; - density = 0; - pixel_x = -7; - pixel_y = 10 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "mZf" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/cleanable/dirt, @@ -49470,6 +49804,13 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) +"mZg" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "mZr" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -49506,18 +49847,6 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) -"mZP" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/vehiclehangar) "mZQ" = ( /obj/structure/machinery/vending/security, /obj/structure/machinery/light, @@ -49529,15 +49858,6 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/general_equipment) -"naa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) "nac" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -49548,12 +49868,6 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"naj" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/upper/aft_hallway) "nar" = ( /obj/structure/toilet{ dir = 4 @@ -49591,6 +49905,26 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"naN" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) +"naO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_fore_hallway) "naR" = ( /obj/structure/machinery/iv_drip, /obj/effect/decal/warning_stripes{ @@ -49618,24 +49952,29 @@ icon_state = "test_floor4" }, /area/almayer/living/gym) -"nbu" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +"naW" = ( +/obj/structure/surface/rack, +/obj/item/storage/box/cups{ + pixel_x = 4; + pixel_y = 9 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) -"nbW" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/storage/box/cups, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/lower/s_bow) +"ncb" = ( +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 1; + icon_state = "silver" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/repair_bay) "ncf" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -49648,9 +49987,6 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cryo) -"nci" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) "ncl" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -49665,6 +50001,15 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) +"ncw" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "ncE" = ( /obj/structure/machinery/light{ dir = 8 @@ -49692,31 +50037,72 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"ncV" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/welding, +"nda" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"ndl" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/area/almayer/maint/hull/lower/l_a_p) +"ndb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"ndc" = ( +/obj/structure/machinery/door_control{ + id = "InnerShutter"; + name = "Inner Shutter"; + pixel_x = 5; + pixel_y = 10 + }, +/obj/item/toy/deck{ + pixel_x = -9 + }, +/obj/item/ashtray/plastic, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/safety/intercom{ + pixel_y = -32 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) -"ndm" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ +/area/almayer/shipboard/panic) +"ndd" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "orange" }, -/area/almayer/maint/lower/cryo_cells) +/area/almayer/maint/hull/upper/u_a_s) +"ndl" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"ndT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "ndZ" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/flashlight/lamp, @@ -49737,15 +50123,18 @@ icon_state = "test_floor4" }, /area/almayer/powered) -"nef" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"nel" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) +"neu" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "green" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/hallways/upper/aft_hallway) "new" = ( /obj/item/reagent_container/glass/bucket/janibucket, /obj/item/reagent_container/glass/bucket/janibucket{ @@ -49777,12 +50166,6 @@ icon_state = "red" }, /area/almayer/command/lifeboat) -"neH" = ( -/obj/item/trash/cigbutt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "neO" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -49807,6 +50190,13 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) +"neX" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "nff" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -49817,6 +50207,28 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) +"nfQ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) +"ngc" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_access = null; + req_one_access = null + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 4; + id = "panicroomback"; + name = "\improper Safe Room Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_f_s) "ngf" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -49862,6 +50274,10 @@ icon_state = "red" }, /area/almayer/shipboard/brig/lobby) +"ngu" = ( +/obj/docking_port/stationary/vehicle_elevator/almayer, +/turf/open/floor/almayer/empty, +/area/almayer/hallways/lower/vehiclehangar) "ngw" = ( /obj/structure/surface/rack, /obj/item/mortar_shell/frag, @@ -49910,20 +50326,6 @@ icon_state = "redcorner" }, /area/almayer/living/briefing) -"ngK" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "DeployWorkR"; - name = "\improper Workshop Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/repair_bay) "ngU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -49953,6 +50355,14 @@ icon_state = "plate" }, /area/almayer/command/corporateliaison) +"nhb" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "nhi" = ( /obj/structure/bed/chair/comfy, /obj/structure/window/reinforced/ultra, @@ -49970,10 +50380,6 @@ icon_state = "plating" }, /area/almayer/engineering/lower/workshop) -"nhw" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "nhx" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/deck{ @@ -49990,16 +50396,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"nhE" = ( -/obj/structure/sign/safety/maint{ - pixel_y = 32 - }, -/obj/structure/sign/safety/storage{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "nhG" = ( /obj/item/newspaper{ name = "character sheet" @@ -50027,22 +50423,32 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"nhT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" +"nhI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/stern_hallway) -"nhV" = ( -/obj/structure/machinery/light/small, +"nhJ" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_p) +"nhU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "plating" }, -/area/almayer/maint/hull/lower/p_bow) -"nic" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/stern) +/area/almayer/shipboard/panic) "nig" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -50090,15 +50496,41 @@ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"niF" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"niy" = ( +/obj/structure/sign/poster/pinup{ + pixel_x = -30 + }, +/obj/structure/sign/poster/hunk{ + pixel_x = -25; + pixel_y = 10 + }, +/obj/item/trash/buritto, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 16 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/medical/medical_science) +/area/almayer/maint/hull/lower/l_m_s) +"niz" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddernortheast"; + name = "\improper North East Ladders Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"niK" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_aft_hallway) "niL" = ( /obj/structure/machinery/light{ dir = 1 @@ -50108,6 +50540,9 @@ icon_state = "sterile_green" }, /area/almayer/medical/medical_science) +"niN" = ( +/turf/open/floor/almayer/empty, +/area/almayer/hallways/lower/vehiclehangar) "niR" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" @@ -50116,6 +50551,16 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) +"niW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/computer/supplycomp/vehicle, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/vehiclehangar) "niY" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -50156,9 +50601,19 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"njn" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_m_s) +"njr" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/storage/box/lights/tubes{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/ash{ + pixel_y = 19 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "njD" = ( /obj/structure/closet/emcloset, /turf/open/floor/almayer{ @@ -50178,35 +50633,22 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"njO" = ( -/obj/structure/closet/secure_closet/guncabinet/red/armory_shotgun, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/shipboard/panic) -"njS" = ( -/obj/structure/sign/safety/rad_haz{ - pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/power/reactor, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/engineering/lower/engine_core) -"nkj" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "nkn" = ( /obj/structure/pipes/vents/pump{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"nkp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_umbilical) "nkx" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -50218,6 +50660,16 @@ icon_state = "red" }, /area/almayer/shipboard/starboard_missiles) +"nkE" = ( +/obj/structure/ladder{ + height = 2; + id = "ForeStarboardMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = -17 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/s_bow) "nkF" = ( /obj/structure/bed/chair/bolted{ dir = 4 @@ -50241,6 +50693,24 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"nkJ" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage{ + req_access = null; + req_one_access = null; + req_one_access_txt = "7;23;27;102" + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -3; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) +"nkR" = ( +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) "nkX" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer_network{ @@ -50257,12 +50727,12 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"nlh" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"nlt" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "emerald" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/hallways/lower/port_midship_hallway) "nlz" = ( /obj/structure/machinery/brig_cell/cell_3{ pixel_x = 32; @@ -50302,28 +50772,29 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"nmp" = ( -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/west{ - pixel_y = 32 +"nmj" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"nmp" = ( +/obj/structure/surface/rack, +/obj/item/book/manual/orbital_cannon_manual, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) -"nmH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 9; + icon_state = "red" }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/area/almayer/maint/hull/upper/u_a_p) +"nmq" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/souto/diet/lime{ + pixel_x = 7; + pixel_y = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/maint/hull/lower/l_a_s) "nmK" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -50336,6 +50807,12 @@ icon_state = "cargo" }, /area/almayer/squads/req) +"nmS" = ( +/obj/item/tool/pen, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "nmV" = ( /turf/open/floor/almayer{ dir = 1; @@ -50354,18 +50831,9 @@ icon_state = "plate" }, /area/almayer/command/cichallway) -"nnr" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/lower/port_aft_hallway) +"nnw" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_m_s) "nny" = ( /obj/structure/sign/safety/rewire{ pixel_x = -17; @@ -50384,24 +50852,25 @@ icon_state = "plate" }, /area/almayer/stair_clone/upper) -"nnH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/secure{ - pixel_x = -5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "nnL" = ( /obj/structure/toilet{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/corporateliaison) +"nnT" = ( +/obj/structure/machinery/power/smes/buildable, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/high_voltage{ + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "nnX" = ( /obj/structure/machinery/sentry_holder/almayer, /turf/open/floor/almayer{ @@ -50443,27 +50912,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"noy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"noE" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"noI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) "noP" = ( /obj/structure/machinery/light{ dir = 1 @@ -50481,6 +50929,9 @@ }, /turf/open/floor/plating, /area/almayer/engineering/starboard_atmos) +"npi" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "npt" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -50496,12 +50947,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/containment) -"npw" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "npA" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -50532,10 +50977,19 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/armory) +"nqp" = ( +/turf/open/floor/almayer{ + dir = 10; + icon_state = "cargo" + }, +/area/almayer/engineering/upper_engineering/port) "nqx" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) +"nqC" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_s) "nqG" = ( /obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ @@ -50547,6 +51001,12 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"nqL" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "nqO" = ( /obj/structure/closet/secure_closet/fridge/fish/stock, /turf/open/floor/almayer{ @@ -50571,17 +51031,37 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"nrb" = ( -/obj/item/robot_parts/arm/l_arm, -/obj/item/robot_parts/leg/l_leg, -/obj/item/robot_parts/arm/r_arm, -/obj/item/robot_parts/leg/r_leg, -/obj/structure/surface/rack, -/obj/effect/decal/cleanable/cobweb{ - dir = 8 +"nre" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "southcheckpoint"; + name = "\improper Checkpoint Shutters" + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"nrg" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/binoculars{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/device/binoculars, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) +"nrh" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/living/synthcloset) +/area/almayer/maint/lower/s_bow) "nri" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/working_joe{ @@ -50600,6 +51080,18 @@ icon_state = "emeraldcorner" }, /area/almayer/squads/charlie) +"nrD" = ( +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"nrG" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + req_access = null + }, +/obj/item/clothing/mask/rebreather/scarf/tacticalmask/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "nrN" = ( /obj/structure/machinery/sleep_console, /turf/open/floor/almayer{ @@ -50621,22 +51113,42 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"nsd" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/lights/bulbs{ - pixel_x = 3; - pixel_y = 7 +"nsh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"nso" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/maint/hull/lower/l_m_s) +"nsk" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/upper/stern_hallway) +"nsx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/hallways/lower/port_fore_hallway) +"nsO" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "nsQ" = ( /obj/structure/sink{ dir = 4; @@ -50727,6 +51239,13 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) +"nuH" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "nuK" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/franks{ @@ -50748,19 +51267,28 @@ /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"nvd" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" +"nvA" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/area/almayer/maint/hull/upper/u_m_p) -"nve" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/lower/l_f_s) +"nvE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) "nvG" = ( /obj/structure/machinery/light{ dir = 8 @@ -50779,14 +51307,6 @@ icon_state = "dark_sterile" }, /area/almayer/living/numbertwobunks) -"nvI" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "nvM" = ( /obj/structure/window/framed/almayer/white, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -50806,18 +51326,6 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"nvX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/screwdriver{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/stack/cable_coil{ - pixel_x = 8; - pixel_y = -4 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "nwb" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -50827,6 +51335,10 @@ }, /turf/open/floor/almayer, /area/almayer/squads/req) +"nwd" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "nwi" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom{ dir = 4 @@ -50835,56 +51347,18 @@ dir = 4 }, /area/almayer/medical/containment/cell) -"nwu" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = -32 - }, -/obj/structure/sign/safety/east{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) -"nww" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/hallways/upper/aft_hallway) "nwx" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "red" }, /area/almayer/shipboard/port_missiles) -"nwA" = ( -/obj/structure/largecrate/supply/generator, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) "nwD" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "orange" }, /area/almayer/command/cic) -"nwG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "plating_striped" - }, -/area/almayer/squads/req) "nwL" = ( /obj/structure/bed, /obj/item/bedsheet/brown, @@ -50892,10 +51366,6 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"nwT" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "nwU" = ( /obj/structure/machinery/light{ dir = 4 @@ -50933,28 +51403,34 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop) -"nxe" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/spawner/random/toolbox, -/obj/item/stack/sheet/metal{ - desc = "Semiotic Standard denoting the nearby presence of coffee: the lifeblood of any starship crew."; - icon = 'icons/obj/structures/props/semiotic_standard.dmi'; - icon_state = "coffee"; - name = "coffee semiotic"; - pixel_x = 20; - pixel_y = 12; - singular_name = "coffee semiotic" - }, +"nxg" = ( +/obj/structure/machinery/power/apc/almayer, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/hallways/lower/starboard_midship_hallway) "nxx" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/engineering/lower) +"nxJ" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) +"nxL" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "vehicle_elevator_railing_aux" + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) +"nxM" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "nyj" = ( /obj/effect/decal/medical_decals{ icon_state = "docdecal2" @@ -50977,9 +51453,21 @@ icon_state = "test_floor4" }, /area/almayer/living/briefing) +"nyF" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "nyQ" = ( /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) +"nyR" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "nyS" = ( /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ @@ -50987,12 +51475,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"nzt" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) "nzv" = ( /obj/structure/filingcabinet/filingcabinet, /obj/item/clipboard, @@ -51004,6 +51486,9 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) +"nzC" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/p_stern) "nzD" = ( /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer, @@ -51025,10 +51510,26 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"nAm" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +"nAC" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-y" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"nAN" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "nAY" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -51067,15 +51568,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"nBo" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "bluecorner" - }, -/area/almayer/hallways/upper/aft_hallway) "nBw" = ( /turf/open/floor/almayer{ dir = 1; @@ -51088,36 +51580,12 @@ icon_state = "mono" }, /area/almayer/living/pilotbunks) -"nBF" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) -"nBJ" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/s_bow) "nBK" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "red" }, /area/almayer/lifeboat_pumps/north2) -"nBV" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/o2, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_umbilical) -"nCe" = ( -/obj/structure/machinery/prop/almayer/computer{ - pixel_y = 20 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/repair_bay) "nCf" = ( /obj/effect/landmark/start/marine/tl/charlie, /obj/effect/landmark/late_join/charlie, @@ -51166,12 +51634,18 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"nCM" = ( -/obj/structure/largecrate/random/secure, +"nCA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/platform{ + dir = 4 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "silver" }, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/hallways/lower/repair_bay) "nCR" = ( /obj/structure/sink{ dir = 4; @@ -51207,13 +51681,6 @@ icon_state = "tcomms" }, /area/almayer/engineering/lower/engine_core) -"nDb" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_umbilical) "nDo" = ( /obj/structure/closet/l3closet/general, /obj/structure/window/reinforced{ @@ -51226,36 +51693,11 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/medical_science) -"nDL" = ( -/obj/structure/barricade/handrail{ - dir = 4 - }, -/obj/structure/surface/rack, -/obj/item/stack/tile/carpet{ - amount = 20 - }, -/obj/item/stack/sheet/wood/large_stack, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/upper_engineering/port) "nDM" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/req) -"nEc" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) -"nEl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "nEo" = ( /obj/structure/surface/table/almayer, /obj/item/storage/donut_box{ @@ -51294,16 +51736,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) -"nEO" = ( -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/s_bow) -"nEZ" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) "nFm" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/tool/surgery/scalpel, @@ -51392,48 +51824,43 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) -"nGk" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"nGM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"nGp" = ( +/obj/structure/platform{ + dir = 8 }, +/obj/item/stack/sheet/metal, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/upper/u_a_p) +"nGz" = ( +/obj/item/tool/warning_cone{ + pixel_x = -12; + pixel_y = 16 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"nGH" = ( +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_p) "nGY" = ( /obj/structure/closet/emcloset, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/lifeboat_pumps/north2) -"nGZ" = ( -/obj/structure/largecrate/supply/supplies/water, +"nHf" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"nHl" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/oxygen/red, +/obj/item/tool/screwdriver, /turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) -"nHu" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"nHG" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/hallways/lower/port_umbilical) "nHJ" = ( /obj/structure/machinery/light{ dir = 8 @@ -51457,16 +51884,14 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"nHX" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"nHN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/lower/p_bow) "nIj" = ( /turf/open/floor/almayer{ icon_state = "green" @@ -51512,13 +51937,6 @@ icon_state = "plating" }, /area/almayer/shipboard/port_missiles) -"nIF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/upper/aft_hallway) "nIG" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 @@ -51528,9 +51946,15 @@ icon_state = "silver" }, /area/almayer/command/securestorage) -"nIN" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/upper/u_m_p) +"nIL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "nIS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -51545,6 +51969,13 @@ icon_state = "orangecorner" }, /area/almayer/engineering/lower/engine_core) +"nJm" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "nJs" = ( /obj/structure/largecrate/random/case, /turf/open/floor/almayer{ @@ -51570,6 +52001,11 @@ icon_state = "plating" }, /area/almayer/command/airoom) +"nJJ" = ( +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) "nKq" = ( /obj/structure/machinery/status_display{ pixel_x = 16; @@ -51590,6 +52026,20 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) +"nLf" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "nLk" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/machinery/power/apc/almayer{ @@ -51600,9 +52050,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"nLp" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_f_p) "nLt" = ( /turf/open/floor/almayer{ dir = 1; @@ -51633,15 +52080,29 @@ icon_state = "plating" }, /area/almayer/engineering/upper_engineering) -"nLM" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 +"nLN" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) +"nLT" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_a_p) +"nMa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "nMe" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -51661,6 +52122,17 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) +"nMN" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench{ + pixel_y = 2 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"nMT" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "nMV" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -51706,22 +52178,29 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) +"nNz" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/aft_hallway) "nNH" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "emeraldcorner" }, /area/almayer/living/briefing) -"nNI" = ( -/obj/structure/bed/chair{ - dir = 4 +"nNN" = ( +/turf/open/floor/almayer{ + icon_state = "silvercorner" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"nNT" = ( -/obj/item/tool/weldingtool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/hallways/upper/aft_hallway) "nNV" = ( /obj/structure/bed/chair{ dir = 8; @@ -51768,22 +52247,17 @@ icon_state = "plate" }, /area/almayer/command/corporateliaison) -"nOx" = ( -/obj/item/stack/sheet/metal, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "nOC" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"nOX" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/secure_data{ - dir = 1 +"nOH" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/shipboard/panic) +/area/almayer/hallways/lower/starboard_fore_hallway) "nPa" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -51823,6 +52297,9 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) +"nPh" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/upper/mess) "nPs" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12 @@ -51859,13 +52336,12 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"nPO" = ( -/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" +"nPF" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "nPT" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ desc = "These shutters seem to be pretty poorly mantained and almost wedged into the room.. you're not sure if these are official."; @@ -51889,18 +52365,22 @@ icon_state = "red" }, /area/almayer/command/lifeboat) -"nQn" = ( -/obj/structure/surface/rack, -/obj/item/storage/toolbox/mechanical, -/obj/effect/spawner/random/tool, +"nQb" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"nQq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/s_bow) -"nQo" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/hallways/lower/port_fore_hallway) "nQv" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 @@ -51910,30 +52390,33 @@ icon_state = "plating_striped" }, /area/almayer/squads/req) -"nQw" = ( -/obj/structure/closet, -/obj/item/clothing/glasses/mgoggles/prescription, -/obj/item/clothing/glasses/mbcg, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "nQA" = ( /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"nRA" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 +"nQS" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/machinery/door_control{ + id = "laddersoutheast"; + name = "South East Ladders Shutters"; + pixel_y = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, /turf/open/floor/almayer{ - allow_construction = 0 + dir = 1; + icon_state = "green" }, /area/almayer/hallways/lower/port_midship_hallway) -"nRE" = ( +"nRC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/upper/u_f_s) @@ -51945,12 +52428,6 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"nRN" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "nRR" = ( /turf/open/floor/almayer{ dir = 1; @@ -51961,29 +52438,14 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering) -"nSk" = ( -/obj/structure/closet/secure_closet/engineering_welding, -/obj/item/stack/tile/carpet{ - amount = 20 +"nSm" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) -"nSq" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/u_m_s) "nSu" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -51992,6 +52454,18 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) +"nSC" = ( +/obj/structure/window/framed/almayer, +/turf/open/floor/plating, +/area/almayer/hallways/lower/repair_bay) +"nSE" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "nSG" = ( /obj/structure/machinery/door_control{ id = "tcomms"; @@ -52004,39 +52478,26 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/telecomms) +"nSI" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "nSS" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"nTc" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_p) "nTl" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "red" }, /area/almayer/squads/alpha) -"nTo" = ( -/obj/structure/surface/table/reinforced/prison, -/obj/structure/transmitter{ - dir = 8; - name = "Medical Telephone"; - phone_category = "Almayer"; - phone_id = "Medical Lower"; - pixel_x = 16 - }, -/obj/item/device/helmet_visor/medical/advanced, -/obj/item/device/helmet_visor/medical/advanced, -/obj/item/device/helmet_visor/medical/advanced, -/obj/item/device/helmet_visor/medical/advanced, -/turf/open/floor/almayer{ - icon_state = "sterile_green" - }, -/area/almayer/medical/lockerroom) "nTs" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -52051,6 +52512,13 @@ /obj/structure/bed/chair/comfy/blue, /turf/open/floor/carpet, /area/almayer/living/commandbunks) +"nTB" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/lower/port_umbilical) "nTH" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -52062,6 +52530,12 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/corporateliaison) +"nTU" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "bluecorner" + }, +/area/almayer/hallways/upper/aft_hallway) "nTZ" = ( /turf/open/floor/almayer{ dir = 5; @@ -52114,16 +52588,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) -"nUm" = ( -/obj/structure/bed/chair/comfy/beige, -/obj/item/reagent_container/glass/bucket{ - pixel_x = 12; - pixel_y = -5 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "nUn" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -52132,6 +52596,14 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"nUs" = ( +/obj/structure/surface/rack, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "nUv" = ( /obj/structure/machinery/light{ dir = 1 @@ -52140,9 +52612,9 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"nUT" = ( -/obj/structure/platform{ - dir = 8 +"nUS" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/almayer{ icon_state = "plate" @@ -52153,13 +52625,6 @@ icon_state = "test_floor4" }, /area/almayer/living/briefing) -"nVn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "nVq" = ( /obj/structure/sign/safety/security{ pixel_x = -17; @@ -52174,29 +52639,24 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"nVA" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +"nVz" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_a_p) "nVB" = ( /turf/open/floor/almayer, /area/almayer/command/securestorage) -"nVE" = ( -/obj/structure/closet/emcloset, +"nVC" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/lower/l_f_s) "nVF" = ( /obj/structure/disposalpipe/junction{ dir = 8 @@ -52205,17 +52665,6 @@ icon_state = "cargo_arrow" }, /area/almayer/living/offices) -"nVQ" = ( -/obj/structure/machinery/light, -/obj/structure/sign/safety/security{ - pixel_y = -32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "nVR" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/perma) @@ -52229,13 +52678,54 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/starboard) +"nVY" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_a_s) +"nWf" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"nWt" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) +"nWx" = ( +/obj/structure/machinery/vending/snack, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"nWK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/aft_hallway) "nWN" = ( /obj/structure/surface/table/almayer, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"nXo" = ( -/obj/item/storage/box/donkpockets, -/obj/structure/surface/rack, +"nWZ" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) +"nXv" = ( +/obj/structure/closet, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/regular/hipster, /turf/open/floor/almayer{ icon_state = "plate" }, @@ -52302,12 +52792,6 @@ icon_state = "silverfull" }, /area/almayer/command/securestorage) -"nYi" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "nYn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -52326,6 +52810,16 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"nYu" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = 7; + pixel_y = 14 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) "nYD" = ( /obj/structure/closet/secure_closet/medical2, /turf/open/floor/almayer{ @@ -52337,14 +52831,18 @@ dir = 8 }, /area/almayer/command/lifeboat) -"nYR" = ( -/obj/structure/sign/safety/cryo{ - pixel_y = 26 +"nZp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = -16; + pixel_y = 17 }, -/area/almayer/hallways/lower/starboard_aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "nZy" = ( /obj/structure/surface/table/almayer, /obj/structure/disposalpipe/segment{ @@ -52353,29 +52851,21 @@ /obj/item/facepaint/black, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) -"nZG" = ( -/obj/structure/platform{ - dir = 4 +"oac" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"nZR" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 8 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/panic) -"nZW" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/souto/blue{ - pixel_x = 2; - pixel_y = 3 + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/lower/p_bow) +"oao" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "oap" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -52383,34 +52873,37 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"oaw" = ( -/obj/structure/closet/firecloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, +"oaE" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 9; + icon_state = "red" }, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/hallways/upper/stern_hallway) +"oaI" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/upper/stern_hallway) "oaK" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"oaO" = ( -/obj/structure/machinery/conveyor{ - id = "lower_garbage" - }, -/obj/structure/machinery/recycler, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "plating_striped" - }, -/area/almayer/maint/hull/lower/l_a_p) "oaW" = ( /obj/structure/machinery/cryopod/right, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/squads/charlie) +"obc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "obo" = ( /obj/structure/disposalpipe/up/almayer{ dir = 8; @@ -52418,6 +52911,17 @@ }, /turf/closed/wall/almayer, /area/almayer/squads/req) +"obx" = ( +/obj/structure/ladder{ + height = 1; + id = "ForePortMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/p_bow) "oby" = ( /obj/structure/surface/table/almayer, /obj/item/trash/plate{ @@ -52428,6 +52932,12 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) +"obA" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/hallways/upper/aft_hallway) "obC" = ( /turf/open/floor/almayer{ dir = 4; @@ -52443,20 +52953,18 @@ icon_state = "plate" }, /area/almayer/squads/alpha_bravo_shared) -"obJ" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "obQ" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) +"obX" = ( +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_fore_hallway) "occ" = ( /obj/structure/surface/table/almayer, /obj/item/weapon/gun/energy/taser, @@ -52518,53 +53026,22 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"ocI" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"ocX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) +"ocS" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/s_bow) "odb" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"ode" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/s_bow) "odl" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"odt" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/lower/vehiclehangar) "odu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -52593,22 +53070,6 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) -"odG" = ( -/obj/structure/platform, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "odN" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -52619,6 +53080,14 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/sea_office) +"odT" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/pistachios, +/obj/item/tool/lighter/random{ + pixel_x = 13 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "odV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -52646,17 +53115,17 @@ icon_state = "cargo" }, /area/almayer/squads/alpha_bravo_shared) +"oeq" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_stern) "oer" = ( /turf/closed/wall/almayer{ damage_cap = 15000 }, /area/almayer/squads/delta) -"oes" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) "oex" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/machinery/light, @@ -52670,20 +53139,31 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/processing) -"oeH" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "oeM" = ( /obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "silver" }, /area/almayer/command/computerlab) +"oeY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"ofp" = ( +/obj/structure/bookcase{ + icon_state = "book-5"; + name = "medical manuals bookcase"; + opacity = 0 + }, +/obj/item/book/manual/surgery, +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/wood/ship, +/area/almayer/living/commandbunks) "ofH" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -52701,6 +53181,12 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) +"ofP" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "ofU" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -52715,18 +53201,23 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"ogd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"ogi" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"ogj" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, +/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, +/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"ogI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" }, -/area/almayer/hallways/upper/stern_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "ogK" = ( /obj/structure/bed/bedroll{ desc = "A bed of cotton fabric, purposely made for a cat to comfortably sleep on."; @@ -52741,25 +53232,28 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"ogM" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "ohj" = ( /obj/structure/machinery/cryopod, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/squads/charlie) -"ohu" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ - dir = 1; - name = "\improper Brig Maintenance" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" +"ohw" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/maint/hull/lower/l_m_s) "ohA" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -52797,19 +53291,6 @@ icon_state = "test_floor4" }, /area/almayer/command/lifeboat) -"ohI" = ( -/obj/structure/surface/table/almayer, -/obj/item/circuitboard/airlock, -/obj/item/circuitboard/airlock{ - pixel_x = 7; - pixel_y = 7 - }, -/obj/item/stack/cable_coil{ - pixel_x = -7; - pixel_y = 11 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "ohJ" = ( /obj/structure/machinery/computer/arcade, /turf/open/floor/wood/ship, @@ -52832,17 +53313,6 @@ icon_state = "test_floor4" }, /area/almayer/living/captain_mess) -"oif" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"oig" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) "oih" = ( /obj/structure/bed{ icon_state = "abed" @@ -52872,16 +53342,28 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"oiq" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 8; - req_one_access = list(2,34,30) +"oil" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 5; + icon_state = "plating" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/hallways/lower/vehiclehangar) +"oin" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "oir" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -52891,6 +53373,12 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"ois" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "oit" = ( /obj/effect/landmark/railgun_computer{ dir = 1 @@ -52900,12 +53388,6 @@ icon_state = "redfull" }, /area/almayer/shipboard/port_missiles) -"oiB" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "oiL" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -52924,10 +53406,14 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"oiX" = ( -/obj/docking_port/stationary/vehicle_elevator/almayer, -/turf/open/floor/almayer/empty, -/area/almayer/hallways/lower/vehiclehangar) +"oiR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "oiY" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -52944,6 +53430,33 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"oiZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) +"ojg" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "ojh" = ( /obj/structure/disposalpipe/junction{ dir = 8 @@ -52951,6 +53464,18 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) +"ojn" = ( +/obj/structure/sign/safety/security{ + pixel_y = -32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "ojF" = ( /obj/structure/machinery/cm_vending/clothing/tl/charlie{ density = 0; @@ -52991,16 +53516,6 @@ icon_state = "plate" }, /area/almayer/squads/charlie) -"okd" = ( -/obj/structure/machinery/door/poddoor/almayer{ - id = "n_umbilical"; - name = "\improper Umbillical Airlock"; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_umbilical) "okg" = ( /obj/structure/sign/safety/reception{ pixel_x = 8; @@ -53010,19 +53525,6 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"oko" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) -"okx" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "okD" = ( /obj/structure/prop/almayer/name_stencil{ icon_state = "almayer6" @@ -53031,20 +53533,26 @@ icon_state = "outerhull_dir" }, /area/space) -"old" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"olC" = ( -/obj/structure/largecrate/random/barrel/red, +"olk" = ( /obj/structure/machinery/light/small{ - dir = 8 + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"olv" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/ashtray/plastic, +/obj/item/trash/cigbutt{ + pixel_x = 4 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/u_m_s) +/area/almayer/maint/hull/upper/u_a_p) "olM" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -53081,12 +53589,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) -"olQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "olU" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -53094,12 +53596,6 @@ icon_state = "blue" }, /area/almayer/command/cichallway) -"olW" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/lower/s_bow) "omb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -53109,47 +53605,21 @@ icon_state = "silvercorner" }, /area/almayer/command/cichallway) -"ome" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "plate" +"omi" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/maint/hull/upper/p_bow) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) "omo" = ( /obj/structure/window/framed/almayer/white, /turf/open/floor/plating, /area/almayer/medical/lockerroom) -"omp" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/upper/aft_hallway) "omt" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"omx" = ( -/obj/structure/largecrate/random/barrel/white, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = 32 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_f_s) "omy" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -53160,6 +53630,10 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) +"omL" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_s) "omP" = ( /obj/item/tool/mop, /obj/structure/surface/rack, @@ -53176,36 +53650,25 @@ icon_state = "dark_sterile" }, /area/almayer/shipboard/brig/surgery) -"onh" = ( +"onn" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"onn" = ( -/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"onq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"onv" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/hallways/upper/aft_hallway) +"onr" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/lower/l_m_p) "onN" = ( /obj/structure/surface/table/almayer, /obj/structure/disposalpipe/segment{ @@ -53269,19 +53732,9 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"ooA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, +"opf" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"opd" = ( -/obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/upper/p_stern) "opC" = ( /obj/structure/machinery/door/airlock/almayer/command/reinforced{ name = "\improper Combat Information Center" @@ -53331,46 +53784,30 @@ /turf/open/space/basic, /area/space) "opN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/sign/safety/bridge{ - pixel_y = 32 - }, -/obj/structure/sign/safety/reception{ - pixel_x = 15; - pixel_y = 32 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) -"opV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door_control{ - id = "laddersoutheast"; - name = "South East Ladders Shutters"; - pixel_y = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/area/almayer/hallways/upper/stern_hallway) +"opU" = ( +/obj/structure/machinery/portable_atmospherics/canister/air, +/obj/structure/machinery/light/small{ + dir = 1 }, -/area/almayer/hallways/lower/port_midship_hallway) -"oqc" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/toxin, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, /area/almayer/maint/hull/upper/u_a_s) +"oqn" = ( +/obj/item/stool{ + pixel_x = -15; + pixel_y = 6 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "oqt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -53409,10 +53846,6 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"oqI" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "oqS" = ( /obj/structure/toilet{ dir = 1 @@ -53427,6 +53860,20 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) +"oqW" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 32 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/lower/l_f_s) "oqY" = ( /obj/structure/machinery/conveyor{ id = "req_belt" @@ -53473,14 +53920,16 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"orq" = ( -/obj/item/storage/toolbox/mechanical{ - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"ory" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/snacks/mre_pack/meal5, +/obj/item/device/flashlight/lamp{ + pixel_x = 3; + pixel_y = 12 }, -/area/almayer/maint/hull/upper/u_m_s) +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) "orH" = ( /turf/open/floor/almayer/uscm/directional{ dir = 10 @@ -53503,23 +53952,16 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"osn" = ( -/obj/item/trash/USCMtray{ - pixel_x = -4; - pixel_y = 10 - }, +"osd" = ( +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, /obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/utensil/pfork{ - pixel_x = 9; - pixel_y = 8 - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, +/obj/item/fuel_cell, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/almayer/maint/upper/u_m_s) +/area/almayer/engineering/lower/engine_core) "osx" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -53582,12 +54024,15 @@ }, /area/almayer/engineering/lower/workshop) "osQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, +/obj/structure/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "orange" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/upper/mess) "osT" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/prop/ice_colony/hula_girl{ @@ -53606,55 +54051,23 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"osX" = ( -/obj/structure/sign/safety/north{ - pixel_x = -17; - pixel_y = -8 +"oth" = ( +/obj/structure/machinery/gear{ + id = "vehicle_elevator_gears" }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"otq" = ( -/obj/structure/machinery/line_nexter{ - dir = 1; - id = "MTline"; - pixel_y = 3 + icon_state = "mono" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/lower/vehiclehangar) "otu" = ( /turf/closed/wall/almayer/research/containment/wall/connect_w, /area/almayer/medical/containment/cell) -"otC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"oue" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_midship_hallway) -"otE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"otW" = ( -/obj/structure/machinery/light/small, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "ouf" = ( /obj/structure/stairs{ dir = 1; @@ -53703,6 +54116,16 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop/hangar) +"ouy" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "ouB" = ( /obj/structure/bed/sofa/vert/grey/bot, /turf/open/floor/almayer, @@ -53716,18 +54139,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"ouU" = ( -/obj/structure/surface/table/almayer, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/technology_scanner, -/obj/effect/spawner/random/technology_scanner, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "ouW" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -53742,10 +54153,6 @@ icon_state = "silvercorner" }, /area/almayer/command/cichallway) -"ove" = ( -/obj/structure/airlock_assembly, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "ovi" = ( /turf/open/floor/almayer{ dir = 4; @@ -53763,6 +54170,16 @@ icon_state = "silver" }, /area/almayer/living/briefing) +"ovx" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1; + name = "\improper Emergency Air Storage" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_a_s) "ovG" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -53776,26 +54193,25 @@ dir = 4 }, /area/almayer/medical/containment/cell) -"ovQ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) "owg" = ( /turf/open/floor/almayer{ icon_state = "mono" }, /area/almayer/engineering/upper_engineering/starboard) -"owU" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"owD" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/lower/l_a_p) +"owO" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"owS" = ( +/obj/docking_port/stationary/escape_pod/west, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) "owW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -53819,69 +54235,62 @@ /obj/item/bedsheet/orange, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"oxe" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"oxg" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "oxi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/almayer, /area/almayer/living/cafeteria_officer) -"oxl" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +"oxo" = ( +/obj/structure/closet/crate, +/obj/item/ammo_box/magazine/l42a, +/obj/item/ammo_box/magazine/l42a, +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/almayer/maint/hull/upper/u_m_s) +"oxt" = ( /obj/structure/machinery/light{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"oxn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "plating_striped" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/squads/req) "oxu" = ( /obj/structure/sign/safety/galley{ pixel_x = -17 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"oxy" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"oxz" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "oxU" = ( /obj/structure/machinery/photocopier, /turf/open/floor/almayer, /area/almayer/command/lifeboat) +"oyd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) +"oyg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) "oyE" = ( /obj/effect/landmark/start/intel, /obj/structure/sign/poster{ @@ -53894,25 +54303,15 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/port_atmos) -"oyO" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/structure/sign/safety/water{ - pixel_x = -17 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +"oyJ" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_p) "oyR" = ( /obj/structure/closet/firecloset, /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/engineering/lower) -"oyX" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) "ozq" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ @@ -53922,6 +54321,22 @@ icon_state = "test_floor4" }, /area/almayer/squads/alpha) +"ozt" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"ozw" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "ozz" = ( /obj/structure/surface/table/almayer, /obj/item/tank/emergency_oxygen/double, @@ -53929,18 +54344,6 @@ icon_state = "mono" }, /area/almayer/engineering/upper_engineering/starboard) -"ozH" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) "ozN" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/lifeboat/blastdoor{ id_tag = "Boat2-D2"; @@ -53951,6 +54354,15 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/starboard) +"ozP" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "ozT" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -53969,15 +54381,23 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"oAa" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"oAr" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/tool/hand_labeler, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) +"oAw" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 1; + icon_state = "green" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/hallways/upper/aft_hallway) "oAB" = ( /obj/structure/platform{ dir = 8; @@ -53987,43 +54407,12 @@ dir = 10 }, /area/almayer/living/briefing) -"oAK" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "oAO" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "red" }, /area/almayer/lifeboat_pumps/north1) -"oAT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio{ - pixel_x = 8; - pixel_y = 7 - }, -/obj/item/clothing/head/soft/ferret{ - pixel_x = -7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"oAY" = ( -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 - }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/hallways/upper/aft_hallway) "oBq" = ( /obj/structure/bed, /obj/structure/machinery/flasher{ @@ -54035,9 +54424,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/cells) -"oBr" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_a_s) "oBA" = ( /obj/structure/sign/safety/conference_room{ pixel_x = -17; @@ -54052,30 +54438,29 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"oCa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +"oBM" = ( +/obj/item/tool/wirecutters/clippers, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/area/almayer/maint/hull/upper/u_a_s) +"oBQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_umbilical) -"oCb" = ( +/area/almayer/maint/hull/lower/l_m_s) +"oBS" = ( /obj/structure/sign/safety/hvac_old{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "oCf" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -54103,13 +54488,28 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) -"oCK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +"oCV" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"oDd" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "oDh" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +/obj/structure/surface/table/almayer, +/obj/item/storage/pouch/tools/full, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "oDi" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -54162,23 +54562,14 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"oDJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/spiderling_remains{ - pixel_x = 18; - pixel_y = -5 - }, -/obj/effect/decal/cleanable/ash{ - pixel_x = 11; - pixel_y = 25 +"oDI" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ - dir = 8; - icon_state = "sterile_green_corner" + icon_state = "plate" }, -/area/almayer/medical/lower_medical_medbay) +/area/almayer/maint/hull/upper/p_stern) "oDL" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -54199,15 +54590,6 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/medical_science) -"oDU" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/barricade/handrail, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/hallways/lower/port_midship_hallway) "oDY" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, @@ -54285,6 +54667,25 @@ icon_state = "red" }, /area/almayer/living/port_emb) +"oFb" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) +"oFg" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_s) "oFm" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -54293,64 +54694,64 @@ }, /area/almayer/engineering/lower/workshop) "oFn" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters/clippers, -/obj/item/handcuffs/zip, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/platform, +/obj/structure/largecrate/random/case/double{ + layer = 2.98 + }, +/obj/structure/sign/safety/life_support{ + pixel_x = 32 }, -/area/almayer/maint/hull/lower/l_f_p) -"oFr" = ( -/obj/item/storage/firstaid/regular, -/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/maint/hull/upper/u_a_s) -"oFV" = ( -/obj/structure/sign/poster{ - pixel_x = -32; - serial_number = 16 +"oFs" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/delta) -"oFY" = ( -/turf/open/floor/almayer, -/area/almayer/shipboard/brig/lobby) -"oGf" = ( -/obj/structure/surface/rack, -/obj/item/storage/firstaid/regular, +/area/almayer/hallways/lower/starboard_midship_hallway) +"oFv" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_s) -"oGh" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, +"oFL" = ( /turf/open/floor/almayer{ dir = 4; - icon_state = "orange" + icon_state = "emerald" }, -/area/almayer/hallways/lower/port_aft_hallway) -"oGi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/hallways/lower/port_midship_hallway) +"oFV" = ( +/obj/structure/sign/poster{ + pixel_x = -32; + serial_number = 16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/squads/delta) +"oFW" = ( +/obj/structure/machinery/door/poddoor/almayer{ + id = "n_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) -"oGj" = ( -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -16 +/area/almayer/hallways/lower/starboard_umbilical) +"oFY" = ( +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/lobby) +"oFZ" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"oGm" = ( /turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" + dir = 1; + icon_state = "blue" }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/hallways/upper/aft_hallway) "oGx" = ( /obj/structure/closet/secure_closet/surgical{ pixel_x = 30 @@ -54375,28 +54776,10 @@ /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"oGF" = ( -/obj/structure/platform{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "oGJ" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/engine_core) -"oGL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "oGP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -54446,21 +54829,6 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/charlie) -"oHf" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) -"oHg" = ( -/obj/structure/largecrate/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) "oHl" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/electrical, @@ -54469,23 +54837,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"oHs" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"oHt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/cryo{ - pixel_x = 8; - pixel_y = -26 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) "oHx" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 @@ -54494,6 +54845,10 @@ icon_state = "test_floor4" }, /area/almayer/engineering/laundry) +"oHy" = ( +/obj/structure/machinery/cm_vending/sorted/marine_food, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "oIa" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -54544,15 +54899,6 @@ "oIB" = ( /turf/closed/wall/almayer, /area/almayer/command/combat_correspondent) -"oJj" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) "oJk" = ( /turf/closed/wall/almayer, /area/almayer/engineering/lower/workshop) @@ -54567,22 +54913,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"oJL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_y = 30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_fore_hallway) "oJR" = ( /obj/effect/projector{ name = "Almayer_AresDown"; @@ -54606,6 +54936,18 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"oJX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/secure{ + pixel_x = -5 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "oKb" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -54614,6 +54956,15 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) +"oKi" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/maint/hull/lower/l_a_p) "oKv" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ layer = 1.9 @@ -54630,31 +54981,50 @@ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"oLf" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 +"oKz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) +"oKA" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/lower/vehiclehangar) +"oKB" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/maint/hull/upper/u_m_s) +"oKF" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "cargo_arrow" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"oLa" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "oLi" = ( /obj/effect/landmark/start/marine/medic/bravo, /obj/effect/landmark/late_join/bravo, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) -"oLj" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) "oLm" = ( /obj/structure/machinery/door_control{ id = "ARES StairsLower"; @@ -54729,6 +55099,12 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) +"oMp" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "oMs" = ( /obj/structure/machinery/computer/cameras/almayer{ dir = 1 @@ -54750,10 +55126,6 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"oNa" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) "oNb" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -54790,12 +55162,6 @@ icon_state = "plating" }, /area/almayer/medical/upper_medical) -"oNM" = ( -/obj/structure/largecrate/random/barrel, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "oNP" = ( /obj/structure/machinery/vending/cola{ density = 0; @@ -54816,22 +55182,24 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"oOi" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 +"oOb" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_y = -32 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "green" }, -/area/almayer/hallways/upper/stern_hallway) -"oOp" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/wirecutters, +/area/almayer/hallways/upper/aft_hallway) +"oOh" = ( +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 + }, +/obj/item/reagent_container/glass/bucket, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/upper/u_m_s) "oOw" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -54862,6 +55230,11 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) +"oPb" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "oPf" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -54898,6 +55271,36 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) +"oPr" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) +"oPs" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_m_s) +"oPu" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"oPv" = ( +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"oPx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "oPy" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -54936,26 +55339,26 @@ icon_state = "red" }, /area/almayer/command/cic) -"oPF" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"oPG" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "green" }, -/area/almayer/maint/hull/lower/l_a_s) -"oPT" = ( -/obj/structure/machinery/light{ - dir = 1 +/area/almayer/hallways/lower/starboard_midship_hallway) +"oPS" = ( +/obj/structure/platform_decoration{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"oQn" = ( /turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/upper/u_a_s) +"oPY" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/lower/l_m_s) "oQs" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/book/manual/surgery{ @@ -54965,30 +55368,19 @@ icon_state = "plate" }, /area/almayer/command/cichallway) -"oQw" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orangecorner" - }, -/area/almayer/hallways/lower/port_umbilical) "oQH" = ( /turf/open/floor/almayer{ icon_state = "cargo_arrow" }, /area/almayer/living/briefing) -"oQJ" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "oQL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "blue" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/hallways/upper/aft_hallway) "oQM" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -55012,20 +55404,18 @@ icon_state = "silver" }, /area/almayer/living/auxiliary_officer_office) +"oRh" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "oRk" = ( /turf/open/floor/almayer{ dir = 4; icon_state = "red" }, /area/almayer/shipboard/brig/processing) -"oRm" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - name = "\improper Port Viewing Room" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_s) "oRJ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -55070,6 +55460,16 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) +"oSf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "redcorner" + }, +/area/almayer/hallways/lower/port_fore_hallway) "oSq" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -55097,6 +55497,15 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) +"oSy" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -16 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "oSC" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -55106,14 +55515,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/lobby) -"oSG" = ( -/obj/structure/surface/table/almayer, -/obj/item/card/id/visa, -/obj/item/tool/crew_monitor, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "oSL" = ( /obj/structure/window/reinforced{ dir = 8 @@ -55137,26 +55538,10 @@ icon_state = "plate" }, /area/almayer/squads/alpha_bravo_shared) -"oSM" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) -"oSR" = ( -/obj/structure/stairs{ - icon_state = "ramptop" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"oTc" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) +"oSP" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "oTe" = ( /obj/item/prop/almayer/box, /obj/item/prop{ @@ -55186,6 +55571,21 @@ icon_state = "test_floor5" }, /area/almayer/squads/req) +"oTn" = ( +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/s_bow) +"oTv" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "oTA" = ( /obj/structure/machinery/cryopod, /obj/structure/machinery/light{ @@ -55195,15 +55595,17 @@ icon_state = "cargo" }, /area/almayer/squads/alpha) -"oTH" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"oTN" = ( +/obj/structure/surface/rack, +/obj/item/device/radio{ + pixel_x = 5; + pixel_y = 4 }, -/obj/structure/disposalpipe/segment, +/obj/item/device/radio, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/maint/hull/upper/u_f_s) "oTO" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -55217,35 +55619,21 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"oUi" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"oUt" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = 32 +"oTR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"oUx" = ( -/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"oUz" = ( -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/power/apc/almayer{ - dir = 1 + icon_state = "test_floor4" }, +/area/almayer/maint/hull/lower/l_m_s) +"oUo" = ( /turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/hallways/lower/port_midship_hallway) "oUG" = ( /obj/structure/machinery/light{ dir = 8 @@ -55255,21 +55643,24 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"oUO" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" +"oUM" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) -"oUZ" = ( -/obj/structure/surface/rack, -/obj/item/tool/crowbar, -/obj/item/tool/weldingtool, -/obj/item/tool/wrench, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"oVc" = ( +/obj/item/tool/wirecutters{ + pixel_y = -7 }, -/area/almayer/maint/hull/lower/l_m_p) +/obj/structure/sign/poster{ + desc = "You are becoming hysterical."; + icon_state = "poster11"; + pixel_y = 30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "oVf" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/evidence{ @@ -55287,28 +55678,12 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/general_equipment) -"oVk" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/port_fore_hallway) -"oVY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +"oVn" = ( +/obj/structure/closet/secure_closet/engineering_welding{ + req_one_access_txt = "7;23;27" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "oWf" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, @@ -55337,10 +55712,6 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"oWq" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "oWx" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -55357,41 +55728,25 @@ icon_state = "plate" }, /area/almayer/living/starboard_garden) -"oWE" = ( -/obj/structure/stairs, -/obj/structure/machinery/light{ - dir = 8 - }, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"oWF" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"oWN" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) "oXb" = ( /obj/effect/landmark/start/marine/charlie, /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) +"oXn" = ( +/turf/open/floor/almayer{ + icon_state = "redcorner" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"oXo" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "oXp" = ( /obj/effect/decal/cleanable/ash, /turf/open/floor/wood/ship, @@ -55432,12 +55787,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"oYi" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) "oYp" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -55447,55 +55796,35 @@ icon_state = "red" }, /area/almayer/living/offices/flight) -"oYr" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, +"oYD" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 4; + icon_state = "silvercorner" }, -/area/almayer/maint/hull/upper/u_a_p) -"oYs" = ( -/obj/structure/bed/chair{ - dir = 8 +/area/almayer/hallways/upper/aft_hallway) +"oYG" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/sign/safety/bridge{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/sign/safety/west{ + pixel_y = 32 }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/aft_hallway) +"oYP" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; + layer = 2.5; pixel_y = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"oYA" = ( -/obj/structure/surface/table/almayer, -/obj/structure/dropship_equipment/fuel/cooling_system{ - layer = 3.5 - }, -/obj/item/clothing/glasses/welding{ - layer = 3.6; - pixel_x = 2; - pixel_y = 7 - }, -/obj/effect/decal/cleanable/blood/oil, -/obj/structure/machinery/computer/working_joe{ - dir = 4; - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) -"oZn" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/hull/lower/l_f_p) "oZp" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light, @@ -55512,12 +55841,42 @@ icon_state = "red" }, /area/almayer/living/offices/flight) +"oZv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/vents/scrubber{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/lower/vehiclehangar) "oZy" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) +"oZz" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) +"oZC" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "oZD" = ( /obj/structure/sign/poster/music{ pixel_x = -27 @@ -55547,6 +55906,15 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"oZF" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/lower/s_bow) +"oZJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "oZV" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/roller, @@ -55587,6 +55955,10 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cryo) +"pau" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "paI" = ( /obj/structure/sign/safety/debark_lounge{ pixel_x = 15; @@ -55596,26 +55968,23 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"paJ" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "paL" = ( /turf/open/floor/almayer/uscm/directional{ dir = 1 }, /area/almayer/command/cic) -"pbo" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" +"paN" = ( +/obj/structure/surface/rack, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" }, -/area/almayer/maint/hull/upper/s_stern) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"pbd" = ( +/obj/structure/largecrate/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "pbp" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ @@ -55643,22 +56012,6 @@ icon_state = "bluefull" }, /area/almayer/command/cichallway) -"pcc" = ( -/obj/structure/surface/rack, -/obj/item/paper{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/folder/yellow, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_s) -"pcf" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "pcj" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -55674,6 +56027,11 @@ icon_state = "cargo" }, /area/almayer/hallways/hangar) +"pcp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "pcv" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -55703,6 +56061,12 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) +"pcK" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/upper/stern_hallway) "pcO" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -55713,18 +56077,31 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"pcR" = ( +/obj/item/frame/rack{ + layer = 3.1; + pixel_y = 19 + }, +/obj/structure/surface/rack, +/obj/item/tool/weldpack{ + pixel_x = 5 + }, +/obj/item/tool/weldpack{ + pixel_x = -2 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "pcY" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) -"pdp" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/maint/hull/upper/p_bow) +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "pdy" = ( /obj/structure/machinery/door_control{ id = "OTStore"; @@ -55750,28 +56127,12 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"pek" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/s_bow) -"peu" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, +"pep" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/hallways/upper/aft_hallway) -"peM" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" + dir = 5 }, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "peO" = ( /obj/structure/sign/safety/medical{ pixel_x = -17; @@ -55814,27 +56175,28 @@ allow_construction = 0 }, /area/almayer/stair_clone) -"pfD" = ( -/obj/structure/machinery/cm_vending/sorted/marine_food, +"pfu" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32 + }, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/lower/port_fore_hallway) +"pfy" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "pfH" = ( /obj/structure/platform_decoration, /turf/open/floor/almayer{ icon_state = "red" }, /area/almayer/lifeboat_pumps/south2) -"pfL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_x = -1; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "pfM" = ( /obj/structure/machinery/light{ dir = 4 @@ -55850,6 +56212,36 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) +"pfU" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) +"pga" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) +"pgg" = ( +/turf/open/floor/almayer{ + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pgq" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_aft_hallway) "pgw" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -55859,10 +56251,25 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/upper_engineering/port) +"pgx" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "pgD" = ( /turf/closed/wall/almayer, /area/almayer/lifeboat_pumps/south1) -"pgH" = ( +"pgE" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/emails{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/repair_bay) +"pgH" = ( /obj/effect/projector{ name = "Almayer_AresDown"; vector_x = 97; @@ -55879,13 +56286,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"pgJ" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "pgM" = ( /obj/structure/reagent_dispensers/water_cooler/walk_past{ pixel_x = 10; @@ -55944,15 +56344,21 @@ icon_state = "plate" }, /area/almayer/command/combat_correspondent) -"phw" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/card{ - dir = 8 - }, +"phn" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/shipboard/panic) +/area/almayer/maint/hull/lower/s_bow) +"phx" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + id_tag = "or03"; + name = "Lobby" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/medical/lower_medical_medbay) "phN" = ( /obj/structure/disposalpipe/junction{ dir = 4; @@ -55963,19 +56369,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/processing) -"pij" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"piJ" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "piK" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -55990,12 +56383,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"pjh" = ( -/obj/structure/machinery/vending/snack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "pjj" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -56005,15 +56392,15 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"pjr" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "pjw" = ( /turf/open/floor/almayer{ dir = 10; icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"pjz" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/p_bow) "pjF" = ( /obj/structure/surface/table/almayer, /obj/item/paper, @@ -56033,18 +56420,6 @@ icon_state = "plating_striped" }, /area/almayer/squads/req) -"pjP" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"pjQ" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, -/area/almayer/hallways/upper/aft_hallway) "pjR" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -56055,15 +56430,18 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"pjY" = ( -/obj/structure/machinery/light{ - dir = 4 +"pkv" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/almayer/maint/hull/lower/l_a_s) +"pkx" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ - dir = 10; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/l_f_s) "pkz" = ( /turf/open/floor/almayer{ icon_state = "redfull" @@ -56079,9 +56457,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"plv" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_p) "plI" = ( /obj/structure/machinery/cm_vending/sorted/medical/blood, /turf/open/floor/almayer{ @@ -56089,15 +56464,6 @@ icon_state = "sterile_green_side" }, /area/almayer/shipboard/brig/surgery) -"pmd" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_aft_hallway) "pmq" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -56128,6 +56494,14 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"pmS" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_p) "pmV" = ( /obj/structure/prop/server_equipment/yutani_server/broken{ density = 0; @@ -56140,16 +56514,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"pnh" = ( -/obj/structure/ladder{ - height = 2; - id = "ForePortMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = -17 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/p_bow) "pns" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -56160,12 +56524,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"pnC" = ( -/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +"pnI" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ - icon_state = "sterile_green_side" + icon_state = "plate" }, -/area/almayer/medical/lower_medical_medbay) +/area/almayer/maint/hull/upper/s_bow) "pnL" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_2" @@ -56183,21 +56551,21 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"pok" = ( -/obj/structure/filingcabinet{ - density = 0; - pixel_x = -8; - pixel_y = 18 +"pnV" = ( +/obj/structure/machinery/cm_vending/clothing/maintenance_technician, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/filingcabinet{ - density = 0; - pixel_x = 8; - pixel_y = 18 +/area/almayer/engineering/upper_engineering/port) +"poj" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "green" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/lower/port_midship_hallway) "poA" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/bucket/mopbucket, @@ -56236,21 +56604,6 @@ /obj/item/device/camera, /turf/open/floor/almayer, /area/almayer/command/corporateliaison) -"ppG" = ( -/obj/structure/bed/sofa/south/grey, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) -"ppM" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"ppV" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "pqc" = ( /turf/open/floor/almayer{ icon_state = "mono" @@ -56275,19 +56628,6 @@ /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering/port) -"pqv" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/hallways/upper/stern_hallway) -"pqw" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) "pqD" = ( /obj/structure/bed, /obj/item/bedsheet/medical, @@ -56305,22 +56645,16 @@ /obj/item/trash/cigbutt, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) +"pqG" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/p_bow) "pqK" = ( /obj/structure/machinery/cryopod, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/squads/bravo) -"pqM" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 1; - name = "\improper Workshop Vendors" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/repair_bay) "pqP" = ( /obj/structure/machinery/cm_vending/sorted/tech/comp_storage, /obj/structure/machinery/light{ @@ -56330,39 +56664,25 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"pqX" = ( -/obj/structure/bed/chair{ - dir = 4 +"pqU" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = 6 }, -/turf/open/floor/almayer, -/area/almayer/living/gym) -"prf" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +/obj/item/weapon/gun/rifle/l42a, +/obj/item/weapon/gun/rifle/l42a{ + pixel_y = -6 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"pri" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -25 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/pipes/standard/simple/hidden/supply{ +/area/almayer/maint/hull/upper/u_m_s) +"pqX" = ( +/obj/structure/bed/chair{ dir = 4 }, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"prl" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/living/gym) "prx" = ( /obj/structure/bed/chair/comfy{ dir = 4 @@ -56387,19 +56707,22 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"prV" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +"prS" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wet_sign, +/obj/item/tool/wet_sign{ + pixel_x = -3; + pixel_y = 2 }, -/area/almayer/hallways/upper/stern_hallway) -"prX" = ( -/obj/structure/ladder{ - height = 2; - id = "AftStarboardMaint" +/obj/item/tool/wet_sign{ + pixel_x = -8; + pixel_y = 6 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/upper/u_a_s) +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "prY" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray, @@ -56415,6 +56738,12 @@ icon_state = "bluefull" }, /area/almayer/living/bridgebunks) +"psl" = ( +/obj/structure/bed/sofa/south/grey, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "psK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -56443,6 +56772,12 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) +"psT" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) "pth" = ( /obj/structure/surface/table/almayer, /obj/item/folder/blue, @@ -56475,6 +56810,18 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) +"ptr" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "ptv" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/platform{ @@ -56502,14 +56849,6 @@ "ptK" = ( /turf/closed/wall/almayer, /area/almayer/engineering/upper_engineering/starboard) -"ptQ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/s_stern) "ptZ" = ( /obj/structure/platform{ dir = 4; @@ -56523,16 +56862,6 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"pum" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) "pun" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -56582,34 +56911,18 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"puJ" = ( -/obj/structure/prop/invuln/pipe_water, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/u_m_s) "puO" = ( /obj/structure/sign/safety/maint{ pixel_x = 32 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"puT" = ( -/obj/structure/machinery/light/small{ - dir = 4 +"puV" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "bluecorner" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) +/area/almayer/hallways/upper/aft_hallway) "pvh" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /obj/item/tool/warning_cone{ @@ -56619,31 +56932,22 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"pvi" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/hallways/upper/aft_hallway) -"pvE" = ( -/obj/structure/machinery/light{ - dir = 1 +"pvv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" +/obj/structure/bed/chair{ + dir = 4 }, -/area/almayer/hallways/upper/stern_hallway) -"pvI" = ( -/obj/structure/sign/safety/rad_haz{ +/obj/structure/sign/safety/water{ pixel_x = 8; - pixel_y = 32 + pixel_y = -32 }, -/obj/structure/machinery/power/reactor, +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/engineering/lower/engine_core) +/area/almayer/maint/hull/lower/l_f_s) "pvJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -56683,29 +56987,34 @@ icon_state = "redcorner" }, /area/almayer/shipboard/starboard_missiles) -"pwd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"pwe" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "mono" + dir = 5; + icon_state = "plating" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/vehiclehangar) "pwx" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/p_bow) "pwG" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) +"pwJ" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/item/stack/tile/carpet{ + amount = 20 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "pxj" = ( /obj/structure/bed, /obj/item/bedsheet/brown, @@ -56748,6 +57057,12 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) +"pxO" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "pyc" = ( /obj/structure/bed/stool, /turf/open/floor/almayer{ @@ -56755,6 +57070,19 @@ icon_state = "emerald" }, /area/almayer/living/port_emb) +"pye" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/airlock{ + pixel_y = -32 + }, +/obj/structure/sign/safety/hazard{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_umbilical) "pyi" = ( /obj/structure/prop/almayer/missile_tube{ icon_state = "missiletubesouth" @@ -56789,12 +57117,6 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/bravo) -"pym" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/upper/stern_hallway) "pyx" = ( /obj/structure/machinery/door_display/research_cell{ dir = 4; @@ -56851,15 +57173,6 @@ icon_state = "red" }, /area/almayer/shipboard/weapon_room) -"pzc" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) "pzd" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -56870,16 +57183,30 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"pzj" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "northcheckpoint"; - name = "\improper Checkpoint Shutters" +"pzi" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer{ - icon_state = "redfull" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/lower/l_m_s) +"pzl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"pzA" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "pzG" = ( /obj/docking_port/stationary/emergency_response/port1, /turf/open/floor/almayer{ @@ -56899,36 +57226,40 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) +"pzR" = ( +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "pzV" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "bluecorner" }, /area/almayer/living/briefing) -"pzW" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/hallways/lower/vehiclehangar) +"pAa" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) "pAm" = ( /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"pAV" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/item/tool/mop, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) -"pBg" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 1 - }, +"pAH" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_m_s) +"pBE" = ( +/obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/upper/u_a_s) "pBG" = ( /turf/closed/wall/almayer, /area/almayer/command/corporateliaison) +"pCe" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_s) "pCq" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -56946,17 +57277,6 @@ icon_state = "plate" }, /area/almayer/squads/req) -"pCQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/attachable/lasersight, -/obj/item/reagent_container/food/drinks/cans/souto/vanilla{ - pixel_x = 10; - pixel_y = 11 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "pDh" = ( /obj/structure/machinery/power/monitor{ name = "Core Power Monitoring" @@ -56975,6 +57295,24 @@ icon_state = "tcomms" }, /area/almayer/engineering/upper_engineering/starboard) +"pDk" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Brig" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/s_bow) +"pDl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "pDo" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -56988,6 +57326,18 @@ icon_state = "plating" }, /area/almayer/shipboard/starboard_point_defense) +"pDq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "pDr" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -57035,12 +57385,38 @@ icon_state = "red" }, /area/almayer/shipboard/brig/chief_mp_office) -"pEd" = ( +"pDZ" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/lower/l_m_s) +"pEf" = ( +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/upper/aft_hallway) +"pEh" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer{ + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/port_fore_hallway) "pEl" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -57059,12 +57435,35 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"pEp" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) +"pEu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/stern_hallway) "pEB" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) +"pEH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "pEJ" = ( /obj/structure/machinery/flasher{ alpha = 1; @@ -57092,55 +57491,72 @@ icon_state = "test_floor4" }, /area/almayer/lifeboat_pumps/south1) -"pFf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ +"pFh" = ( +/obj/structure/machinery/power/apc/almayer{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 }, -/area/almayer/hallways/upper/aft_hallway) -"pFq" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/binoculars, -/obj/item/device/whistle{ - pixel_y = 5 +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "plating" }, -/area/almayer/maint/hull/upper/u_f_s) -"pFr" = ( -/obj/structure/machinery/light/small, +/area/almayer/hallways/upper/stern_hallway) +"pFx" = ( +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" + }, +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" + }, +/obj/item/clothing/gloves/botanic_leather{ + name = "leather gloves" + }, +/obj/structure/closet/crate, +/obj/item/clothing/suit/storage/hazardvest/black, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) -"pGh" = ( -/obj/effect/decal/cleanable/cobweb{ - pixel_x = -9; - pixel_y = 19 +/area/almayer/maint/hull/lower/l_f_p) +"pFO" = ( +/obj/structure/stairs, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"pGD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"pGj" = ( -/obj/structure/largecrate/random/barrel/blue, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) -"pGG" = ( -/obj/effect/landmark/start/doctor, -/obj/structure/sign/safety/maint{ - pixel_y = 26 - }, -/obj/effect/landmark/late_join/doctor, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) +/area/almayer/maint/hull/lower/l_a_p) "pGK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -57152,6 +57568,18 @@ icon_state = "mono" }, /area/almayer/medical/hydroponics) +"pGQ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/stern_hallway) "pGT" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -57162,20 +57590,12 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"pHh" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"pHk" = ( +/obj/structure/closet/firecloset, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "cargo" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/hallways/lower/vehiclehangar) "pHp" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/perma) @@ -57185,23 +57605,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"pHD" = ( -/obj/structure/platform_decoration{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"pHF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) "pHG" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -57220,40 +57623,15 @@ /obj/structure/surface/table/almayer, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"pIf" = ( -/obj/structure/mirror{ - pixel_x = 28 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/maint/hull/upper/u_a_s) -"pIo" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) -"pIC" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +"pIM" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 10; + icon_state = "green" }, -/area/almayer/maint/lower/constr) +/area/almayer/hallways/upper/aft_hallway) "pIU" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -57268,6 +57646,13 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) +"pIX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/upper/aft_hallway) "pIZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -57277,16 +57662,10 @@ icon_state = "test_floor4" }, /area/almayer/lifeboat_pumps/north1) -"pJq" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) +"pJa" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_s) "pJr" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -57327,6 +57706,17 @@ icon_state = "dark_sterile" }, /area/almayer/living/port_emb) +"pJE" = ( +/obj/item/trash/uscm_mre, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice1"; + pixel_x = 16; + pixel_y = -16 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "pJR" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_AresUp"; @@ -57340,36 +57730,65 @@ dir = 4 }, /area/almayer/command/airoom) -"pKh" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 +"pJV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 1 }, -/obj/effect/landmark/start/nurse, -/obj/effect/landmark/late_join/nurse, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"pKB" = ( -/obj/structure/surface/rack, -/obj/item/circuitboard/firealarm, -/obj/item/circuitboard, -/obj/item/clipboard, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/light{ + dir = 4 }, -/area/almayer/maint/hull/upper/s_stern) -"pKW" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "DeployWorkR"; - name = "\improper Workshop Shutters" +/obj/structure/platform{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 4; + icon_state = "silver" }, /area/almayer/hallways/lower/repair_bay) +"pJY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/machinery/door_control{ + id = "hangarentrancenorth"; + name = "North Hangar Podlocks"; + pixel_y = -26; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) +"pKd" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"pKs" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/port_fore_hallway) "pKZ" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -57402,6 +57821,13 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) +"pLB" = ( +/obj/item/reagent_container/food/snacks/wrapped/chunk, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_stern) "pLO" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ dir = 4; @@ -57422,6 +57848,15 @@ icon_state = "cargo" }, /area/almayer/living/pilotbunks) +"pMh" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "pMj" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -57446,19 +57881,27 @@ icon_state = "plate" }, /area/almayer/medical/morgue) +"pMz" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "pMA" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "red" }, /area/almayer/hallways/upper/port) -"pMH" = ( -/obj/item/tool/wet_sign, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"pMI" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "pMJ" = ( /obj/structure/bed/chair{ dir = 1 @@ -57508,6 +57951,11 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/execution) +"pNu" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "pNM" = ( /obj/structure/platform{ dir = 4 @@ -57530,32 +57978,18 @@ icon_state = "sterile_green" }, /area/almayer/medical/hydroponics) +"pOa" = ( +/obj/item/book/manual/medical_diagnostics_manual, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/maint/hull/upper/u_a_p) "pOi" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/offices) -"pOp" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) -"pOC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/upper/aft_hallway) "pOD" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -57566,27 +58000,25 @@ icon_state = "mono" }, /area/almayer/living/pilotbunks) -"pOH" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/panic) "pON" = ( /turf/open/floor/almayer/uscm/directional{ dir = 8 }, /area/almayer/command/cic) -"pOW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"pOR" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) +/obj/structure/ladder{ + height = 2; + id = "cicladder3" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 23; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/medical/medical_science) "pOY" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/microwave{ @@ -57597,16 +58029,14 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"pPd" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "OuterShutter"; - name = "\improper Saferoom Shutters" +"pPq" = ( +/obj/structure/bed/chair{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/shipboard/panic) +/area/almayer/maint/hull/upper/u_m_s) "pPv" = ( /obj/structure/closet/cabinet, /obj/item/reagent_container/food/drinks/bottle/wine, @@ -57631,14 +58061,16 @@ icon_state = "plate" }, /area/almayer/living/captain_mess) -"pPy" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 +"pPw" = ( +/obj/structure/largecrate/supply/generator, +/obj/structure/machinery/light/small{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" + }, +/area/almayer/maint/hull/upper/u_a_p) "pPA" = ( /obj/structure/sign/poster{ desc = "One of those hot, tanned babes back the beaches of good ol' Earth."; @@ -57655,15 +58087,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"pPG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "pPM" = ( /obj/structure/surface/rack, /turf/open/floor/almayer{ @@ -57678,19 +58101,13 @@ icon_state = "red" }, /area/almayer/shipboard/port_missiles) -"pPQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) -"pPU" = ( +"pPR" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/hallways/lower/port_umbilical) +"pQh" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" + icon_state = "red" }, /area/almayer/hallways/upper/aft_hallway) "pQr" = ( @@ -57758,10 +58175,6 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"pRs" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "pRy" = ( /turf/open/floor/almayer/research/containment/corner_var1{ dir = 4 @@ -57805,24 +58218,20 @@ }, /turf/open/floor/plating, /area/almayer/engineering/lower/workshop) -"pSF" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, +"pSK" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"pSN" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out"; - pixel_x = -1 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"pSP" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "pSQ" = ( /obj/structure/reagent_dispensers/fueltank{ anchored = 1 @@ -57856,16 +58265,24 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"pTX" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/fire_haz{ +"pTD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ pixel_x = 8; pixel_y = -32 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"pTQ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/toolbox, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/lower/s_bow) "pUd" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ @@ -57934,23 +58351,12 @@ icon_state = "redfull" }, /area/almayer/shipboard/brig/processing) -"pUL" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) -"pVr" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ +"pVg" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/p_bow) "pVx" = ( /obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, /turf/open/floor/almayer{ @@ -57989,26 +58395,49 @@ }, /area/almayer/living/briefing) "pVF" = ( -/obj/structure/surface/table/almayer, -/obj/item/spacecash/c1000/counterfeit, -/obj/item/storage/box/drinkingglasses, -/obj/item/storage/fancy/cigar, -/obj/structure/machinery/atm{ - pixel_y = 32 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_aft_hallway) +"pVG" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orangecorner" }, +/area/almayer/maint/hull/upper/u_a_s) +"pVK" = ( /turf/open/floor/almayer, -/area/almayer/command/corporateliaison) +/area/almayer/maint/hull/upper/u_f_p) "pWb" = ( /obj/effect/landmark/start/marine/tl/delta, /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) -"pWd" = ( -/obj/structure/surface/table/almayer, +"pWg" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/lower/l_m_s) +"pWp" = ( +/obj/structure/stairs{ + dir = 4 + }, +/obj/effect/projector{ + name = "Almayer_Up2"; + vector_x = -1; + vector_y = 100 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "pWr" = ( /obj/structure/surface/rack, /obj/item/tool/minihoe{ @@ -58036,22 +58465,44 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) -"pWw" = ( -/obj/structure/bed/chair, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"pWA" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "green" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/squads/req) "pWN" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "blue" }, /area/almayer/living/pilotbunks) +"pWR" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_umbilical) +"pWT" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "emerald" + }, +/area/almayer/hallways/lower/port_midship_hallway) "pXl" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -58088,23 +58539,18 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) "pYh" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/one{ - pixel_x = 32; - pixel_y = -8 +/obj/structure/largecrate/random/barrel/red, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/vehiclehangar) "pYi" = ( /obj/structure/machinery/light{ dir = 4 @@ -58136,24 +58582,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"pYN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_fore_hallway) -"pYQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "pYS" = ( /obj/structure/pipes/binary/pump/on{ dir = 4 @@ -58169,18 +58597,21 @@ icon_state = "silvercorner" }, /area/almayer/shipboard/brig/cic_hallway) -"pZq" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, +"pZa" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/port_umbilical) +"pZk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/upper/stern_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "pZH" = ( /obj/structure/machinery/shower{ dir = 8 @@ -58222,28 +58653,19 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"qan" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"qas" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, +"qay" = ( /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" + dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"qax" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/hallways/lower/port_midship_hallway) +"qaT" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "qaV" = ( /turf/open/floor/almayer{ dir = 10; @@ -58258,6 +58680,9 @@ icon_state = "red" }, /area/almayer/living/briefing) +"qbs" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_m_p) "qbx" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -58308,6 +58733,12 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) +"qcr" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "qcy" = ( /obj/structure/sign/safety/bathunisex{ pixel_x = 8; @@ -58317,13 +58748,12 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) -"qcL" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = 8; - pixel_y = 32 +"qcM" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/upper/u_m_p) "qdk" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -58374,6 +58804,9 @@ icon_state = "emerald" }, /area/almayer/living/port_emb) +"qdy" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_m_s) "qdz" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -58397,12 +58830,6 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"qdV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "qec" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -58445,6 +58872,16 @@ icon_state = "cargo" }, /area/almayer/squads/charlie) +"qev" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "qeF" = ( /obj/structure/sign/safety/reception{ pixel_x = 8; @@ -58470,6 +58907,13 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) +"qeO" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/device/radio/headset/almayer/mt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "qeY" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/toy/beach_ball/holoball, @@ -58491,12 +58935,13 @@ icon_state = "plate" }, /area/almayer/squads/alpha_bravo_shared) -"qfq" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" +"qfp" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/hallways/lower/port_umbilical) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "qfy" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -58532,21 +58977,6 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"qfI" = ( -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) -"qfQ" = ( -/obj/structure/surface/rack, -/obj/item/stack/folding_barricade/three, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "qga" = ( /obj/structure/machinery/door/airlock/almayer/maint/reinforced{ dir = 1 @@ -58572,16 +59002,14 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"qgK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/airlock/almayer/generic/press{ - dir = 1; - name = "\improper Combat Correspondent Room" +"qgM" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/command/combat_correspondent) +/area/almayer/maint/lower/cryo_cells) "qgN" = ( /obj/structure/bed/chair{ dir = 4 @@ -58640,31 +59068,21 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop/hangar) -"qhG" = ( -/obj/structure/surface/table/almayer, -/obj/item/ashtray/bronze{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/ash, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = 4; - pixel_y = 13 - }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -7; - pixel_y = 14 +"qhR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/maint{ + pixel_x = -17; + pixel_y = -8 }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -13; - pixel_y = 8 +/obj/structure/sign/safety/storage{ + pixel_x = -17; + pixel_y = 7 }, -/obj/item/trash/cigbutt/ucigbutt{ - pixel_x = -6; - pixel_y = 9 +/turf/open/floor/almayer{ + dir = 4; + icon_state = "redcorner" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/hallways/lower/port_fore_hallway) "qhU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -58680,22 +59098,6 @@ icon_state = "orange" }, /area/almayer/squads/bravo) -"qid" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"qig" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "qih" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1; @@ -58715,6 +59117,16 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) +"qip" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "qit" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/light{ @@ -58732,6 +59144,14 @@ }, /turf/open/floor/almayer, /area/almayer/living/chapel) +"qiD" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/lower/s_bow) "qjz" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/clipboard, @@ -58748,28 +59168,11 @@ icon_state = "silvercorner" }, /area/almayer/command/computerlab) -"qjL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "qjN" = ( /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) -"qjT" = ( -/obj/structure/surface/table/almayer, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = 6 - }, -/obj/item/weapon/gun/rifle/l42a, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "qjV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -58781,6 +59184,23 @@ "qjZ" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/stern_point_defense) +"qkb" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) +"qkc" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "qki" = ( /obj/effect/landmark/start/marine/smartgunner/charlie, /obj/effect/landmark/late_join/charlie, @@ -58796,6 +59216,15 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) +"qkz" = ( +/obj/structure/machinery/cm_vending/clothing/maintenance_technician, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/engineering/upper_engineering/port) "qkP" = ( /obj/item/frame/light_fixture{ anchored = 1; @@ -58849,12 +59278,18 @@ }, /turf/open/floor/carpet, /area/almayer/living/commandbunks) -"qlu" = ( -/obj/structure/largecrate/random/case/double, +"qlt" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 1; + req_access = null; + req_one_access = null; + req_one_access_txt = "3;22;19" + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_f_s) "qlz" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer, @@ -58872,12 +59307,6 @@ /obj/structure/disposalpipe/trunk, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"qlL" = ( -/obj/item/reagent_container/food/drinks/cans/souto, -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" - }, -/area/almayer/hallways/lower/repair_bay) "qlS" = ( /obj/structure/reagent_dispensers/water_cooler/stacks{ density = 0; @@ -58893,10 +59322,28 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"qmh" = ( -/obj/structure/window/framed/almayer, -/turf/open/floor/plating, -/area/almayer/hallways/lower/repair_bay) +"qmb" = ( +/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ + access_modified = 1; + name = "\improper Requisition's Office"; + req_one_access = null; + req_one_access_txt = "1;26" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) "qmk" = ( /obj/structure/surface/table/almayer, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -58911,27 +59358,6 @@ icon_state = "bluecorner" }, /area/almayer/squads/delta) -"qmq" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/sign/safety/bathunisex{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "qmy" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -58994,19 +59420,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/medical_science) -"qmM" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "Saferoom Channel"; - pixel_y = -28 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "qmP" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine/uscm, @@ -59044,15 +59457,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"qnf" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/upper/stern_hallway) "qnh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -59077,14 +59481,15 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"qnA" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/item/tool/crowbar{ - pixel_x = 6; - pixel_y = 1 +"qny" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "Under Construction Shutters"; + name = "\improper Construction Site" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/lower/constr) "qnC" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ @@ -59100,6 +59505,28 @@ icon_state = "test_floor4" }, /area/almayer/living/pilotbunks) +"qnN" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"qob" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_aft_hallway) +"qoj" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "qom" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/chem_dispenser/soda{ @@ -59124,6 +59551,12 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) +"qor" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "qoJ" = ( /obj/structure/flora/pottedplant{ desc = "It is made of Fiberbush(tm). It contains asbestos."; @@ -59145,11 +59578,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"qoN" = ( -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_p) "qoR" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -59176,13 +59604,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/chemistry) -"qpH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) "qpQ" = ( /obj/item/reagent_container/glass/beaker/bluespace, /obj/structure/machinery/chem_dispenser/medbay, @@ -59190,29 +59611,15 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/chemistry) -"qpV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/distribution_pipes{ +"qqi" = ( +/obj/structure/sign/safety/hvac_old{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"qqb" = ( -/obj/structure/machinery/light{ - dir = 8 - }, /turf/open/floor/almayer{ - dir = 9; - icon_state = "blue" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) -"qqf" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/maint/hull/lower/s_bow) "qqn" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -59270,12 +59677,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"qqS" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "qqV" = ( /obj/structure/machinery/cm_vending/clothing/military_police_warden, /turf/open/floor/wood/ship, @@ -59304,10 +59705,36 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"qsp" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +"qrS" = ( +/obj/item/clothing/head/welding{ + pixel_y = 6 + }, +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"qsj" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/upper/stern_hallway) +"qsr" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "qsC" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/junction, @@ -59316,6 +59743,43 @@ icon_state = "plating_striped" }, /area/almayer/squads/req) +"qsJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/door_control{ + id = "DeployWorkR"; + name = "Workshop Shutters"; + pixel_x = -7; + pixel_y = -26; + req_one_access_txt = "3;22;2;19;7" + }, +/obj/structure/surface/rack, +/obj/item/rappel_harness{ + pixel_y = 8 + }, +/obj/item/rappel_harness, +/obj/item/rappel_harness{ + pixel_y = -6 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "silverfull" + }, +/area/almayer/hallways/lower/repair_bay) +"qsK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "qsL" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, @@ -59341,6 +59805,17 @@ icon_state = "plate" }, /area/almayer/living/gym) +"qtO" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/cryo_cells) +"qtZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/p_stern) "quj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -59420,12 +59895,33 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) +"qvd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/squads/req) +"qvl" = ( +/obj/item/stack/folding_barricade/three, +/obj/item/stack/folding_barricade/three, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/shipboard/panic) "qvC" = ( /obj/structure/machinery/power/apc/almayer{ dir = 4 }, /turf/open/floor/plating, /area/almayer/living/port_emb) +"qvG" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "qvI" = ( /obj/structure/sign/safety/maint{ pixel_x = -17 @@ -59447,13 +59943,6 @@ icon_state = "test_floor4" }, /area/almayer/command/corporateliaison) -"qwf" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "qwo" = ( /obj/structure/machinery/washing_machine, /obj/structure/machinery/washing_machine{ @@ -59487,6 +59976,9 @@ icon_state = "plate" }, /area/almayer/living/offices) +"qwE" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_a_s) "qwJ" = ( /obj/structure/machinery/door_control{ id = "ARES Operations Left"; @@ -59500,12 +59992,22 @@ icon_state = "silver" }, /area/almayer/command/airoom) -"qwY" = ( -/obj/structure/machinery/vending/coffee, -/turf/open/floor/almayer{ - icon_state = "plate" +"qwT" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/lower/cryo_cells) +"qxb" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/lightreplacer{ + pixel_x = 4; + pixel_y = 4 }, -/area/almayer/maint/hull/upper/u_f_s) +/obj/item/storage/toolbox/emergency, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "qxe" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 1 @@ -59586,21 +60088,6 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"qxI" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) -"qxJ" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"qxK" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "qxL" = ( /obj/structure/machinery/medical_pod/autodoc, /turf/open/floor/almayer{ @@ -59620,6 +60107,11 @@ dir = 4 }, /area/almayer/medical/containment/cell) +"qyd" = ( +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "qyi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -59632,6 +60124,12 @@ icon_state = "blue" }, /area/almayer/squads/delta) +"qyj" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "qyo" = ( /turf/open/floor/almayer{ dir = 1; @@ -59644,6 +60142,21 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"qyu" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"qyw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "qyD" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, @@ -59651,13 +60164,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"qyG" = ( -/obj/structure/sign/safety/hazard{ - desc = "A sign that warns of a hazardous environment nearby"; - name = "\improper Warning: Hazardous Environment" - }, -/turf/closed/wall/almayer, -/area/almayer/maint/hull/lower/l_f_p) "qyK" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -59665,21 +60171,16 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"qyP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"qyL" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/lower/vehiclehangar) "qyW" = ( /obj/structure/bed/chair{ dir = 4 @@ -59688,13 +60189,6 @@ icon_state = "emeraldfull" }, /area/almayer/squads/charlie_delta_shared) -"qyX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) "qyZ" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/view_objectives, @@ -59718,12 +60212,42 @@ icon_state = "plating" }, /area/almayer/shipboard/port_point_defense) -"qzA" = ( -/obj/structure/largecrate/random/secure, +"qzm" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8 + }, +/obj/item/device/flashlight/lamp{ + pixel_x = -5; + pixel_y = 16 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/maint/hull/upper/u_a_s) +"qAa" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) +"qAc" = ( +/obj/structure/sign/safety/north{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "qAs" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -59733,16 +60257,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop) -"qAy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) "qAA" = ( /obj/structure/machinery/power/monitor{ name = "Main Power Grid Monitoring" @@ -59763,29 +60277,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"qAG" = ( -/obj/structure/platform{ - dir = 1 - }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"qAK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/ashtray/plastic, -/obj/item/trash/cigbutt{ - pixel_x = 4 - }, -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "qAT" = ( /obj/structure/machinery/light, /obj/structure/surface/table/almayer, @@ -59808,12 +60299,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"qBl" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "qBq" = ( /obj/structure/machinery/door/airlock/almayer/generic{ dir = 2; @@ -59826,6 +60311,12 @@ icon_state = "test_floor4" }, /area/almayer/living/commandbunks) +"qBE" = ( +/obj/structure/closet, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/u_m_s) "qBM" = ( /obj/item/storage/fancy/crayons{ layer = 3.1; @@ -59837,18 +60328,6 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"qBS" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) "qCc" = ( /obj/structure/sign/safety/security{ pixel_x = 15; @@ -59876,16 +60355,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"qCH" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Secretroom"; - indestructible = 1; - unacidable = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_m_s) "qCU" = ( /obj/structure/machinery/light{ dir = 4 @@ -59920,12 +60389,6 @@ icon_state = "test_floor4" }, /area/almayer/command/lifeboat) -"qDB" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_a_p) "qDN" = ( /obj/structure/machinery/light{ dir = 8 @@ -59944,19 +60407,10 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_four) -"qDS" = ( -/obj/item/stack/tile/carpet{ - amount = 20 - }, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"qEc" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) +"qEa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "qEk" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -59970,15 +60424,6 @@ icon_state = "plating" }, /area/almayer/command/cic) -"qEl" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) "qEn" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -59993,6 +60438,13 @@ icon_state = "test_floor4" }, /area/almayer/medical/hydroponics) +"qEw" = ( +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "qEy" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -60000,25 +60452,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/processing) -"qEz" = ( -/obj/structure/machinery/door_control{ - id = "laddersouthwest"; - name = "South West Ladders Shutters"; - pixel_y = -21; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/obj/structure/sign/safety/stairs{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/west{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_fore_hallway) "qEA" = ( /obj/structure/bed, /obj/structure/machinery/flasher{ @@ -60043,34 +60476,45 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"qEM" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" +"qEP" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) +"qFi" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/shipboard/brig/chief_mp_office) +"qFm" = ( +/obj/structure/machinery/door/airlock/almayer/medical{ + dir = 1; + name = "Medical Storage" }, -/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/lower/port_fore_hallway) -"qEZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/medical/lower_medical_medbay) +"qFp" = ( +/obj/structure/surface/table/almayer, +/obj/item/attachable/lasersight, +/obj/item/reagent_container/food/drinks/cans/souto/vanilla{ + pixel_x = 10; + pixel_y = 11 }, /turf/open/floor/almayer{ - icon_state = "dark_sterile" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"qFi" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 +/area/almayer/maint/hull/upper/u_m_s) +"qFr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 2 }, /turf/open/floor/almayer, -/area/almayer/shipboard/brig/chief_mp_office) +/area/almayer/maint/hull/upper/u_f_p) "qFu" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer{ @@ -60108,16 +60552,6 @@ icon_state = "bluefull" }, /area/almayer/squads/delta) -"qFS" = ( -/obj/structure/largecrate/random/barrel/yellow, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "qGc" = ( /turf/open/floor/almayer{ dir = 1; @@ -60141,39 +60575,27 @@ icon_state = "cargo" }, /area/almayer/engineering/lower/workshop/hangar) -"qGC" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) "qGF" = ( /obj/structure/machinery/optable, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/medical/operating_room_two) -"qGP" = ( +"qGS" = ( /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/turf/open/floor/almayer{ + icon_state = "red" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/living/cryo_cells) "qGU" = ( /obj/structure/closet/firecloset, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/lifeboat_pumps/south2) -"qGZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) "qHg" = ( /turf/open/floor/almayer{ dir = 1; @@ -60190,20 +60612,30 @@ icon_state = "test_floor4" }, /area/almayer/powered) -"qHu" = ( -/obj/structure/machinery/light{ - dir = 1 +"qHK" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) -"qHG" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 }, -/area/almayer/maint/hull/upper/p_stern) +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/sign/safety/water{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "qHM" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -60214,23 +60646,16 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering) -"qIa" = ( -/obj/structure/platform{ - dir = 4 +"qHZ" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "OuterShutter"; + name = "\improper Saferoom Shutters" }, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"qIf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + icon_state = "test_floor4" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/shipboard/panic) "qIx" = ( /obj/structure/machinery/door/airlock/almayer/maint{ access_modified = 1; @@ -60242,6 +60667,18 @@ icon_state = "test_floor4" }, /area/almayer/command/corporateliaison) +"qIB" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/cm_vending/sorted/medical/bolted, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/medical_science) "qIL" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/camera/autoname/almayer{ @@ -60262,6 +60699,15 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) +"qJb" = ( +/obj/effect/decal/cleanable/vomit, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21" + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/engineering/upper_engineering/port) "qJf" = ( /obj/structure/machinery/light{ dir = 4 @@ -60291,6 +60737,18 @@ icon_state = "red" }, /area/almayer/shipboard/brig/perma) +"qJr" = ( +/obj/structure/platform_decoration{ + dir = 8 + }, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 7; + pixel_y = -3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "qJx" = ( /obj/structure/machinery/vending/cola, /turf/open/floor/almayer{ @@ -60354,19 +60812,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"qKb" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/box/lights/tubes{ - pixel_x = -8 - }, -/obj/item/storage/box/lights/tubes{ - pixel_x = 5 - }, -/obj/item/storage/box/lights/tubes{ - pixel_y = 10 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "qKi" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -60379,15 +60824,6 @@ icon_state = "plating" }, /area/almayer/engineering/upper_engineering) -"qKl" = ( -/obj/structure/sign/safety/intercom{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "qKz" = ( /obj/structure/machinery/light/small, /turf/open/floor/almayer{ @@ -60395,15 +60831,15 @@ icon_state = "silver" }, /area/almayer/command/securestorage) -"qKK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/blue, +"qKT" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/device/camera_film, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/upper/u_f_s) "qKY" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -60414,6 +60850,16 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"qLb" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_umbilical) "qLg" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ @@ -60469,6 +60915,16 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) +"qLO" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" + }, +/obj/structure/machinery/recycler, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/maint/hull/lower/l_a_p) "qLS" = ( /obj/structure/pipes/standard/manifold/hidden/supply/no_boom, /turf/open/floor/almayer/no_build{ @@ -60483,13 +60939,6 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"qLY" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "qMD" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/flashbangs, @@ -60531,6 +60980,12 @@ icon_state = "cargo" }, /area/almayer/squads/delta) +"qNw" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) "qNI" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -60540,20 +60995,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) -"qNK" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_f_s) "qNR" = ( /obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -60588,43 +61029,17 @@ /obj/structure/disposalpipe/junction, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/gym) -"qOS" = ( -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"qOY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_p) -"qPk" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"qPn" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"qPC" = ( +/obj/structure/largecrate/random/barrel/blue, +/obj/structure/sign/safety/restrictedarea{ + pixel_y = -32 }, -/area/almayer/maint/hull/lower/l_a_s) -"qPv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = -32 }, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "qPD" = ( /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) @@ -60653,10 +61068,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) -"qPU" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) "qPX" = ( /obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ @@ -60690,13 +61101,6 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) -"qQG" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) "qQS" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -60709,19 +61113,12 @@ icon_state = "tcomms" }, /area/almayer/command/airoom) -"qRb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"qRd" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +"qRi" = ( +/obj/structure/machinery/door/poddoor/railing{ + id = "vehicle_elevator_railing_aux" }, -/area/almayer/hallways/lower/starboard_aft_hallway) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/vehiclehangar) "qRj" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -60738,6 +61135,12 @@ icon_state = "silvercorner" }, /area/almayer/shipboard/brig/cic_hallway) +"qRq" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/upper/stern_hallway) "qRr" = ( /obj/structure/machinery/door/airlock/almayer/generic/corporate, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -60751,24 +61154,21 @@ icon_state = "test_floor4" }, /area/almayer/command/corporateliaison) -"qRx" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = -15 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "qSm" = ( /obj/structure/pipes/vents/pump{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/port_point_defense) -"qSw" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) +"qSB" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "qSE" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/condiment/hotsauce/cholula, @@ -60776,14 +61176,6 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) -"qSI" = ( -/obj/structure/surface/table/almayer, -/obj/item/tank/oxygen/red, -/obj/item/tool/screwdriver, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_umbilical) "qSK" = ( /obj/item/stack/sheet/metal{ layer = 2.9; @@ -60805,14 +61197,21 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"qTu" = ( -/obj/structure/machinery/power/apc/almayer{ +"qTd" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/stern_hallway) +"qTv" = ( +/obj/structure/closet, +/obj/item/device/flashlight/pen, +/obj/item/attachable/reddot, +/obj/structure/machinery/light/small{ dir = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/maint/hull/upper/u_m_s) "qTQ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -60883,11 +61282,15 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"qUO" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) +"qUT" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "qUZ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/door_control{ @@ -60910,12 +61313,6 @@ icon_state = "plate" }, /area/almayer/living/captain_mess) -"qVE" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "qVF" = ( /turf/open/floor/almayer{ icon_state = "cargo" @@ -60953,34 +61350,25 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"qWx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"qWG" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/flight_recorder{ + pixel_x = 9 + }, +/obj/item/tool/weldingtool{ + pixel_x = -7; + pixel_y = 3 + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "silver" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/hallways/lower/repair_bay) "qWI" = ( /obj/structure/machinery/status_display{ pixel_y = -30 }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"qWK" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "emerald" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"qWL" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/item/frame/rack, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "qWQ" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -60995,43 +61383,32 @@ dir = 4 }, /area/almayer/medical/containment/cell/cl) -"qWS" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/pill/happy{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = 9 - }, -/obj/item/tool/surgery/bonegel/empty{ - pixel_y = 15; - pixel_x = 4 - }, -/obj/item/tool/surgery/bonegel/empty{ - pixel_y = 13; - pixel_x = -8 - }, -/obj/item/tool/surgery/bonegel/empty{ - pixel_y = 19; - pixel_x = -5; - layer = 3.01 +"qXe" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/item/storage/box/gloves{ - layer = 3.2; - pixel_x = -5; - pixel_y = 2 +/area/almayer/maint/hull/upper/u_m_s) +"qXg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_corner" +/obj/structure/bed/chair{ + dir = 1 }, -/area/almayer/medical/lower_medical_medbay) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "qXk" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) +"qXm" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_s) "qXo" = ( /obj/structure/machinery/seed_extractor, /obj/structure/machinery/light{ @@ -61052,6 +61429,15 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) +"qXz" = ( +/obj/structure/pipes/vents/pump/on, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_aft_hallway) "qXE" = ( /obj/structure/machinery/brig_cell/perma_1{ pixel_x = 32 @@ -61089,6 +61475,10 @@ allow_construction = 0 }, /area/almayer/hallways/upper/port) +"qXW" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "qXZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -61145,17 +61535,6 @@ icon_state = "mono" }, /area/almayer/command/lifeboat) -"qYN" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/toy/deck, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/living/offices/flight) "qYQ" = ( /obj/structure/window/reinforced{ dir = 4; @@ -61179,20 +61558,23 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"qZy" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice2"; - pixel_x = 16; - pixel_y = 16 - }, -/obj/structure/largecrate/supply/supplies/flares, +"qZh" = ( +/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "green" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/hallways/lower/port_midship_hallway) +"qZj" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"qZx" = ( +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_s) "qZA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -61230,21 +61612,6 @@ icon_state = "greenfull" }, /area/almayer/living/offices) -"qZK" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"qZT" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "qZX" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -61259,12 +61626,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/engine_core) -"raE" = ( +"raq" = ( /obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"raD" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 4; + icon_state = "orangecorner" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/upper/stern_hallway) "raK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -61277,24 +61649,21 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"raO" = ( -/obj/structure/bed/sofa/south/grey/right, +"raT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/lower/l_f_p) "rbd" = ( -/obj/structure/barricade/handrail{ - dir = 8 - }, -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "rbi" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/ids{ @@ -61311,13 +61680,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"rbp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "rby" = ( /obj/structure/machinery/door_control{ id = "ARES Mainframe Left"; @@ -61335,6 +61697,18 @@ icon_state = "silvercorner" }, /area/almayer/command/computerlab) +"rbE" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/item/reagent_container/glass/rag, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "rbF" = ( /obj/effect/landmark/late_join, /obj/effect/landmark/ert_spawns/distress_cryo, @@ -61379,6 +61753,14 @@ }, /turf/open/floor/plating, /area/almayer/squads/req) +"rcw" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "rcx" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -61392,13 +61774,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"rcG" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) "rcS" = ( /obj/structure/machinery/computer/cryopod/eng{ dir = 8 @@ -61419,18 +61794,6 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"rdo" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/hallways/upper/aft_hallway) "rdt" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -61470,12 +61833,6 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/general_equipment) -"rdN" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) "rdS" = ( /obj/structure/machinery/light{ dir = 8 @@ -61490,12 +61847,14 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"rdT" = ( -/obj/structure/machinery/power/apc/almayer, +"rdX" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -25 + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "orange" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/upper/stern_hallway) "rec" = ( /obj/structure/bed/chair/comfy/bravo{ dir = 1 @@ -61516,21 +61875,21 @@ icon_state = "plate" }, /area/almayer/living/gym) -"reu" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"rez" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, +/turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_aft_hallway) -"reH" = ( -/obj/structure/noticeboard{ - pixel_x = -10; - pixel_y = 31 +"reF" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/adv{ + pixel_x = 6; + pixel_y = 6 }, +/obj/item/storage/firstaid/regular, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "plate" }, -/area/almayer/squads/req) +/area/almayer/maint/hull/upper/u_f_p) "reL" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/food/snacks/sliceable/bread{ @@ -61544,24 +61903,6 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"reM" = ( -/obj/structure/machinery/power/smes/buildable, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) -"reN" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/cryo_cells) "rfa" = ( /obj/effect/landmark/start/marine/medic/alpha, /obj/effect/landmark/late_join/alpha, @@ -61575,11 +61916,6 @@ icon_state = "containment_window_h" }, /area/almayer/medical/containment/cell/cl) -"rfB" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "rfI" = ( /obj/structure/sign/safety/airlock{ pixel_y = -32 @@ -61592,10 +61928,6 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) -"rfQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) "rfT" = ( /obj/item/frame/camera{ desc = "The Staff Officer insisted he needed to monitor everyone at all times."; @@ -61626,23 +61958,28 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/cryo) -"rgk" = ( -/obj/structure/platform_decoration{ - dir = 1 +"rgs" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "greencorner" }, -/area/almayer/maint/hull/upper/u_a_s) -"rgt" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/hallways/lower/starboard_midship_hallway) "rgy" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"rgC" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "rgK" = ( /obj/structure/pipes/vents/scrubber{ dir = 8 @@ -61663,13 +62000,22 @@ }, /area/almayer/living/auxiliary_officer_office) "rgL" = ( -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_p) +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/upper/u_f_p) "rgW" = ( /turf/open/floor/almayer{ icon_state = "emeraldcorner" }, /area/almayer/living/briefing) +"rhf" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "rhl" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -61681,18 +62027,6 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/main_office) -"rhm" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"rht" = ( -/obj/structure/machinery/vending/cola, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "rhy" = ( /obj/structure/surface/table/almayer, /obj/item/device/flashlight/lamp{ @@ -61707,12 +62041,6 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) -"rhD" = ( -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "rhO" = ( /obj/structure/machinery/vending/cola/research{ pixel_x = 4 @@ -61727,16 +62055,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"rhX" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/hallways/upper/stern_hallway) "rib" = ( /obj/structure/sink{ dir = 8; @@ -61747,41 +62065,26 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/perma) -"rir" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced, +"riv" = ( +/obj/structure/machinery/door/airlock/almayer/maint, /obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/s_bow) -"riB" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"riC" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S" +/area/almayer/maint/hull/lower/l_f_p) +"riw" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "plate" }, -/area/almayer/shipboard/panic) +/area/almayer/maint/hull/upper/u_a_p) "riE" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -61794,18 +62097,31 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"riG" = ( +/obj/structure/machinery/gear{ + id = "vehicle_elevator_gears" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/lower/vehiclehangar) +"riI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + pixel_y = 8 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "riJ" = ( /turf/open/floor/almayer{ dir = 5; icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"riK" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silvercorner" - }, -/area/almayer/hallways/upper/aft_hallway) "riP" = ( /obj/structure/machinery/light, /obj/structure/sign/safety/rewire{ @@ -61824,6 +62140,12 @@ icon_state = "plating" }, /area/almayer/shipboard/stern_point_defense) +"rji" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "rjn" = ( /obj/structure/machinery/light, /obj/structure/reagent_dispensers/water_cooler/stacks, @@ -61831,17 +62153,6 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"rjF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) "rjG" = ( /obj/structure/pipes/standard/tank/oxygen, /turf/open/floor/almayer{ @@ -61908,10 +62219,39 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering) +"rkn" = ( +/obj/structure/barricade/handrail{ + dir = 1; + pixel_y = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor5" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "rkz" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, /area/almayer/living/gym) +"rkF" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp{ + layer = 3.1; + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) +"rkS" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "rlc" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -61948,21 +62288,36 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"rlD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 +"rly" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" + icon_state = "orangecorner" }, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/hallways/lower/starboard_aft_hallway) +"rlO" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/s_stern) "rlQ" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "green" }, /area/almayer/living/grunt_rnr) +"rlY" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "rlZ" = ( /turf/open/floor/almayer{ icon_state = "dark_sterile" @@ -62008,18 +62363,38 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/general_equipment) -"rmz" = ( -/obj/structure/sign/safety/conference_room{ - pixel_x = 14; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) "rmB" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/pill/happy{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/prop/helmetgarb/prescription_bottle{ + pixel_x = 9 + }, +/obj/item/tool/surgery/bonegel/empty{ + pixel_y = 15; + pixel_x = 4 + }, +/obj/item/tool/surgery/bonegel/empty{ + pixel_y = 13; + pixel_x = -8 + }, +/obj/item/tool/surgery/bonegel/empty{ + pixel_y = 19; + pixel_x = -5; + layer = 3.01 + }, +/obj/item/storage/box/gloves{ + layer = 3.2; + pixel_x = -5; + pixel_y = 2 + }, /turf/open/floor/almayer{ - icon_state = "blue" + dir = 1; + icon_state = "sterile_green_corner" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/medical/lower_medical_medbay) "rmD" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -62040,18 +62415,28 @@ "rna" = ( /turf/closed/wall/almayer/white, /area/almayer/command/airoom) -"rnd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"rng" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_m_p) +"rnu" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/sign/safety/west{ + pixel_y = 32 + }, +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_y = 24; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/starboard_fore_hallway) "rnF" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 2; @@ -62088,25 +62473,19 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"rnO" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"rnP" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 10; + icon_state = "red" }, /area/almayer/hallways/upper/stern_hallway) "rob" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"roj" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/p_bow) "rou" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -62118,6 +62497,10 @@ icon_state = "cargo" }, /area/almayer/squads/bravo) +"row" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/cryo_cells) "roG" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -62140,6 +62523,17 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) +"roK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "roU" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -62147,15 +62541,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"roY" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" - }, -/area/almayer/hallways/upper/stern_hallway) "rpp" = ( /obj/effect/landmark/start/executive, /turf/open/floor/plating/plating_catwalk, @@ -62169,14 +62554,6 @@ icon_state = "sterile_green_side" }, /area/almayer/shipboard/brig/surgery) -"rpG" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_s) "rpK" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -62186,6 +62563,18 @@ icon_state = "plate" }, /area/almayer/command/cichallway) +"rqa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/stern_hallway) "rqb" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = 32 @@ -62202,38 +62591,10 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"rqv" = ( -/obj/structure/sign/poster/safety, -/turf/closed/wall/almayer, -/area/almayer/maint/lower/s_bow) -"rqz" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_y = 32 - }, -/obj/structure/sign/safety/water{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"rqD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) +"rqn" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "rqE" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -62245,13 +62606,16 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"rqQ" = ( -/obj/structure/machinery/door/poddoor/railing{ - id = "vehicle_elevator_railing_aux" +"rqL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orangecorner" + }, +/area/almayer/hallways/lower/starboard_umbilical) "rqS" = ( /obj/structure/surface/table/almayer, /obj/item/folder/red{ @@ -62267,15 +62631,18 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/evidence_storage) -"rrh" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "Under Construction Shutters"; - name = "\improper Construction Site" +"rro" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "orange" }, +/area/almayer/hallways/upper/stern_hallway) +"rrp" = ( +/obj/structure/largecrate/supply/supplies/mre, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/lower/constr) +/area/almayer/maint/hull/lower/l_m_p) "rrq" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -62306,13 +62673,6 @@ icon_state = "test_floor4" }, /area/almayer/living/bridgebunks) -"rrG" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "red" - }, -/area/almayer/hallways/upper/stern_hallway) "rrK" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -62338,25 +62698,26 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"rrU" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"rrO" = ( +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen/double, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/port_umbilical) +"rsr" = ( +/obj/structure/surface/rack, +/obj/item/tool/wirecutters, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "rsK" = ( /obj/structure/sign/safety/hvac_old, /turf/closed/wall/almayer, /area/almayer/squads/req) -"rsL" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_aft_hallway) "rsM" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -62370,31 +62731,6 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"rsP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"rsS" = ( -/obj/structure/machinery/door_control{ - id = "panicroomback"; - name = "\improper Safe Room"; - pixel_x = -25; - req_one_access_txt = "3" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) -"rsV" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "rtd" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -62404,12 +62740,6 @@ "rth" = ( /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"rtj" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/req) "rtA" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/flashlight/pen{ @@ -62497,57 +62827,62 @@ icon_state = "cargo" }, /area/almayer/hallways/hangar) +"ruC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"ruD" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) "ruL" = ( /obj/structure/window/framed/almayer/hull/hijack_bustable, /turf/open/floor/plating, /area/almayer/engineering/lower/workshop/hangar) -"rvA" = ( -/turf/open/floor/almayer, -/area/almayer/living/numbertwobunks) -"rvI" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/largecrate/random, +"ruS" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_bow) +/area/almayer/maint/hull/upper/s_stern) +"rvt" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) +"rvA" = ( +/turf/open/floor/almayer, +/area/almayer/living/numbertwobunks) "rvT" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer{ icon_state = "emerald" }, /area/almayer/squads/charlie) -"rwe" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -16 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"rwf" = ( -/obj/structure/sign/safety/analysis_lab{ - pixel_y = 26 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 15; - pixel_y = 26 - }, +"rwh" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) -"rwj" = ( +/area/almayer/maint/hull/lower/l_f_p) +"rwk" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" + icon_state = "cargo" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/starboard_aft_hallway) "rwq" = ( /obj/structure/sign/safety/cryo{ pixel_x = 7; @@ -62583,26 +62918,26 @@ }, /turf/open/floor/plating, /area/almayer/living/pilotbunks) -"rwZ" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_f_p) -"rxe" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, +"rxm" = ( +/obj/structure/largecrate/random/case/double, +/obj/structure/machinery/light{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) -"rxq" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/area/almayer/maint/upper/u_m_p) +"rxr" = ( +/obj/item/stool, +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "plating" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/hallways/lower/vehiclehangar) "rxK" = ( /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, @@ -62613,11 +62948,17 @@ icon_state = "silverfull" }, /area/almayer/command/computerlab) -"rxV" = ( -/obj/structure/barricade/handrail, -/obj/structure/largecrate/supply/generator, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) +"rye" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) +"ryg" = ( +/obj/structure/closet/firecloset, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "ryt" = ( /obj/structure/pipes/standard/manifold/visible, /turf/open/floor/almayer{ @@ -62644,20 +62985,28 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/port) -"rzk" = ( -/obj/item/tool/screwdriver, -/obj/structure/platform_decoration{ - dir = 8 - }, +"rzC" = ( +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) +"rzG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/maint/hull/upper/u_a_p) -"rzy" = ( -/obj/structure/disposalpipe/junction, /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/hallways/lower/port_umbilical) +"rzK" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "rzN" = ( /turf/open/floor/almayer{ icon_state = "dark_sterile" @@ -62677,28 +63026,20 @@ icon_state = "bluecorner" }, /area/almayer/living/briefing) -"rAo" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light/small{ +"rAc" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"rAw" = ( -/obj/structure/stairs/perspective{ - icon_state = "p_stair_full" - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 8 +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32; - pixel_y = -7 +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/hallways/lower/starboard_fore_hallway) +"rAk" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/p_bow) "rAx" = ( /obj/structure/disposalpipe/junction{ dir = 4 @@ -62774,6 +63115,15 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"rBd" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "rBj" = ( /obj/structure/machinery/processor, /turf/open/floor/plating/plating_catwalk, @@ -62795,12 +63145,6 @@ icon_state = "bluefull" }, /area/almayer/command/cichallway) -"rBD" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/upper/u_m_p) "rBH" = ( /obj/structure/machinery/constructable_frame{ icon_state = "box_2" @@ -62816,15 +63160,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"rCh" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "rCi" = ( /obj/structure/machinery/camera/autoname/almayer/containment/ares{ dir = 8 @@ -62881,6 +63216,12 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) +"rCP" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/port_midship_hallway) "rCU" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/open{ dir = 2; @@ -62897,6 +63238,19 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/chief_mp_office) +"rCX" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/sign/safety/stairs{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "rDb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -62929,15 +63283,20 @@ icon_state = "green" }, /area/almayer/squads/req) -"rDf" = ( +"rDk" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_umbilical) -"rDm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_a_s) +"rDp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "rDr" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ @@ -62974,34 +63333,20 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"rDH" = ( -/obj/structure/machinery/light, +"rDC" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"rDM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"rDO" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_fore_hallway) "rDQ" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/shipboard/brig/cryo) -"rDR" = ( -/obj/structure/machinery/vending/coffee, -/obj/item/toy/bikehorn/rubberducky{ - desc = "You feel as though this rubber duck has been here for a long time. It's Mr. Quackers! He loves you!"; - name = "Quackers"; - pixel_x = 5; - pixel_y = 17 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "rDV" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -63023,17 +63368,15 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/chief_mp_office) "rEd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -12; + pixel_y = 13 }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/upper/u_a_s) "rEf" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -63059,16 +63402,13 @@ }, /area/space) "rEs" = ( -/turf/open/floor/almayer{ - icon_state = "orange" +/obj/structure/machinery/light/small{ + dir = 4 }, -/area/almayer/maint/hull/upper/u_a_s) -"rEt" = ( -/obj/structure/largecrate/random/secure, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/upper/u_a_s) "rEv" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -63082,19 +63422,13 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"rEK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, +"rEF" = ( /obj/structure/prop/invuln/overhead_pipe{ pixel_x = 12; pixel_y = 12 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/lower/l_m_p) "rEL" = ( /obj/structure/machinery/cm_vending/gear/intelligence_officer, /turf/open/floor/almayer{ @@ -63166,32 +63500,29 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"rGc" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +"rFO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer{ - dir = 10; - icon_state = "red" + dir = 4; + icon_state = "orange" }, /area/almayer/hallways/upper/stern_hallway) +"rFS" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_a_s) "rGj" = ( /turf/open/floor/almayer{ icon_state = "red" }, /area/almayer/squads/alpha) -"rGr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) -"rGz" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "rGE" = ( /obj/structure/machinery/door/airlock/almayer/command{ name = "\improper Conference Room" @@ -63216,15 +63547,6 @@ icon_state = "test_floor4" }, /area/almayer/command/cichallway) -"rGL" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) "rGU" = ( /obj/structure/machinery/computer/skills{ req_one_access_txt = "200" @@ -63232,6 +63554,13 @@ /obj/structure/surface/table/woodentable/fancy, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) +"rGZ" = ( +/obj/structure/machinery/computer/arcade, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" + }, +/area/almayer/squads/req) "rHc" = ( /turf/open/floor/carpet, /area/almayer/command/cichallway) @@ -63242,13 +63571,26 @@ icon_state = "plate" }, /area/almayer/squads/alpha_bravo_shared) -"rHn" = ( +"rHg" = ( /obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ + dir = 1; icon_state = "green" }, /area/almayer/hallways/upper/aft_hallway) +"rHm" = ( +/obj/structure/machinery/door/poddoor/railing{ + dir = 2; + id = "vehicle_elevator_railing" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "cargo_arrow" + }, +/area/almayer/hallways/lower/vehiclehangar) "rHo" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ layer = 1.9 @@ -63268,19 +63610,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/lower_medical_medbay) -"rHq" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"rHr" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) "rHw" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = 25 @@ -63292,17 +63621,17 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"rHB" = ( -/obj/item/ammo_box/magazine/misc/mre/empty{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/reagent_container/food/drinks/cans/aspen{ - pixel_x = 11; - pixel_y = -3 +"rHA" = ( +/obj/item/storage/backpack/marine/satchel{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag3"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/maint/hull/lower/l_m_p) "rHN" = ( /obj/structure/pipes/vents/pump/on, /turf/open/floor/plating/plating_catwalk, @@ -63335,27 +63664,26 @@ icon_state = "test_floor4" }, /area/almayer/medical/lower_medical_lobby) -"rIw" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/s_bow) "rID" = ( /turf/open/floor/almayer{ dir = 6; icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"rIE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/l42a, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = 6 +"rIG" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 }, +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/lower/l_f_s) "rIH" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -63373,27 +63701,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"rIP" = ( -/obj/structure/machinery/light{ - dir = 8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"rIV" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "rIW" = ( /obj/structure/machinery/cm_vending/gear/synth, /obj/effect/decal/cleanable/cobweb2, @@ -63402,11 +63709,11 @@ }, /area/almayer/living/synthcloset) "rJf" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/maint/hull/lower/l_a_p) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "rJh" = ( /obj/item/storage/backpack/marine/satchel{ desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; @@ -63461,6 +63768,21 @@ /obj/structure/machinery/cm_vending/own_points/experimental_tools, /turf/open/floor/almayer, /area/almayer/living/synthcloset) +"rJE" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rJF" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "rJK" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, @@ -63498,14 +63820,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"rJY" = ( -/obj/item/book/manual/medical_diagnostics_manual, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) "rKd" = ( /turf/open/floor/almayer/uscm/directional{ dir = 5 @@ -63535,6 +63849,19 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) +"rKI" = ( +/obj/structure/machinery/light/small, +/obj/structure/sign/safety/nonpress_0g{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/press_area_ag{ + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_umbilical) "rKO" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -63550,11 +63877,38 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"rKX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out" + }, +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/sign/safety/stairs{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) +"rLi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "rLk" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) +"rLl" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = -32 + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "rLp" = ( /obj/structure/machinery/chem_dispenser/soda{ pixel_y = 20 @@ -63567,30 +63921,6 @@ icon_state = "containment_window_h" }, /area/almayer/medical/containment/cell/cl) -"rLH" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/binoculars{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/device/binoculars, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 4; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) -"rLK" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/hvac_old{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/cryo_cells) "rLP" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -63603,25 +63933,41 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"rLQ" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "rLU" = ( /turf/open/floor/almayer/research/containment/floor2{ dir = 8 }, /area/almayer/medical/containment/cell/cl) -"rMj" = ( -/obj/structure/reagent_dispensers/fueltank, +"rMh" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/hallways/lower/vehiclehangar) -"rMO" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 +"rMk" = ( +/obj/structure/sign/poster/ad{ + pixel_x = 30 }, +/obj/structure/closet, +/obj/item/clothing/mask/cigarette/weed, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/lower/s_bow) +/area/almayer/maint/hull/lower/l_m_s) +"rMG" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "rMT" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -63692,6 +64038,38 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) +"rNT" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"rNY" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"rNZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) +"rOa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "rOc" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -63710,14 +64088,6 @@ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"rOv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) "rOC" = ( /obj/structure/machinery/light{ dir = 1 @@ -63726,6 +64096,15 @@ icon_state = "plate" }, /area/almayer/command/cic) +"rOD" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "rOI" = ( /obj/structure/pipes/vents/pump{ dir = 8; @@ -63740,14 +64119,21 @@ icon_state = "plate" }, /area/almayer/living/gym) -"rPq" = ( -/obj/structure/machinery/constructable_frame{ - icon_state = "box_2" - }, +"rOR" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/u_m_s) +"rPc" = ( +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/hallways/lower/starboard_umbilical) +"rPl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "rPt" = ( /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) @@ -63787,14 +64173,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"rQs" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "rQt" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -63802,20 +64180,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"rQw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 2 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/shipboard/panic) "rQy" = ( /turf/closed/wall/almayer/white/reinforced, /area/almayer/medical/hydroponics) @@ -63825,6 +64189,12 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/delta) +"rQP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) "rQV" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -63850,21 +64220,27 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"rRb" = ( -/obj/effect/decal/cleanable/dirt, +"rQX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 1; + icon_state = "orangecorner" }, -/area/almayer/maint/hull/upper/u_m_s) -"rRf" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/area/almayer/hallways/lower/starboard_umbilical) +"rRg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Starboard Railguns and Viewing Room" }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "red" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/u_f_s) "rRq" = ( /turf/closed/wall/almayer, /area/almayer/lifeboat_pumps/south2) @@ -63889,6 +64265,25 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) +"rRP" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat/orange{ + pixel_x = -9; + pixel_y = 16 + }, +/obj/item/clothing/suit/storage/hazardvest/blue{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/item/clothing/head/hardhat{ + pixel_x = 10; + pixel_y = 1 + }, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = 1 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "rRU" = ( /obj/structure/machinery/light{ dir = 8 @@ -63927,30 +64322,18 @@ icon_state = "orangefull" }, /area/almayer/squads/alpha_bravo_shared) -"rSx" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/rods/plasteel{ - amount = 36 - }, -/obj/item/stack/catwalk{ - amount = 60; - pixel_x = 5; - pixel_y = 4 +"rSz" = ( +/obj/structure/machinery/light{ + dir = 4 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"rSA" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddersouthwest"; - name = "\improper South West Ladders Shutters" +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "orangecorner" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/lower/port_aft_hallway) "rSG" = ( /obj/structure/toilet{ pixel_y = 16 @@ -63965,35 +64348,38 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) -"rSR" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/sign/safety/cryo{ - pixel_x = 36 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/cryo_cells) -"rTe" = ( -/obj/structure/machinery/light{ - dir = 1 +"rSI" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 }, -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"rTj" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, -/area/almayer/maint/upper/u_m_p) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "rTk" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"rTA" = ( -/obj/structure/disposalpipe/junction{ +"rTr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "northcheckpoint"; + name = "\improper Checkpoint Shutters" + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "redfull" }, /area/almayer/hallways/lower/starboard_midship_hallway) "rTJ" = ( @@ -64002,6 +64388,12 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) +"rTX" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "rTZ" = ( /obj/structure/sign/safety/maint{ pixel_x = -17 @@ -64017,14 +64409,6 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"rUi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) "rUk" = ( /obj/structure/bed/chair/wood/normal{ dir = 1 @@ -64032,10 +64416,11 @@ /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) "rUq" = ( -/obj/effect/landmark/start/nurse, -/obj/effect/landmark/late_join/nurse, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "rUy" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -64044,20 +64429,6 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"rUN" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"rVc" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "rVm" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -64068,38 +64439,20 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/main_office) -"rVt" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, -/obj/structure/machinery/part_fabricator/dropship, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/repair_bay) -"rVC" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) "rVN" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "red" }, /area/almayer/shipboard/port_missiles) -"rWb" = ( -/obj/item/tool/minihoe{ - pixel_x = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"rWm" = ( +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 }, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "rWn" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -64119,15 +64472,10 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) -"rWv" = ( -/obj/structure/machinery/status_display{ - pixel_y = 30 - }, +"rWy" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"rWz" = ( -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_s) +/area/almayer/hallways/lower/port_aft_hallway) "rWF" = ( /obj/structure/machinery/firealarm{ dir = 4; @@ -64144,12 +64492,6 @@ icon_state = "cargo" }, /area/almayer/living/cryo_cells) -"rWP" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "rWT" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -64157,12 +64499,30 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/briefing) +"rWV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_aft_hallway) "rXd" = ( /obj/structure/machinery/vending/security, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/shipboard/brig/general_equipment) +"rXg" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/hvac_old{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/cryo_cells) "rXj" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -64180,6 +64540,21 @@ icon_state = "cargo" }, /area/almayer/living/cryo_cells) +"rXs" = ( +/obj/structure/surface/rack, +/obj/item/roller, +/obj/item/roller, +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/item/clothing/glasses/disco_fever{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) "rXv" = ( /obj/structure/machinery/door/airlock/almayer/maint, /obj/structure/disposalpipe/segment{ @@ -64189,28 +64564,18 @@ icon_state = "test_floor4" }, /area/almayer/living/gym) -"rXF" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_p) -"rXH" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) -"rXQ" = ( -/obj/structure/machinery/light/small{ - dir = 8 +"rXM" = ( +/obj/structure/surface/rack, +/obj/item/paper{ + pixel_x = 3; + pixel_y = 3 }, +/obj/item/folder/yellow, +/obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_bow) +/area/almayer/maint/hull/upper/u_f_s) "rXS" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ @@ -64223,23 +64588,6 @@ icon_state = "test_floor4" }, /area/almayer/squads/delta) -"rXU" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_f_s) -"rXV" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/upper/stern_hallway) "rYh" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -64262,6 +64610,16 @@ icon_state = "plate" }, /area/almayer/squads/delta) +"rYs" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "rYv" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/warning_stripes{ @@ -64274,52 +64632,54 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"rYG" = ( -/obj/structure/machinery/light{ - dir = 4 - }, +"rYJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder, /turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) -"rYI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 + icon_state = "plate" }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/living/offices/flight) +"rYK" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_fore_hallway) -"rYJ" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/taperecorder, +/area/almayer/maint/hull/lower/l_f_p) +"rYM" = ( +/obj/item/storage/box/donkpockets, +/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/living/offices/flight) -"rZt" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +/area/almayer/maint/hull/upper/u_a_s) +"rYT" = ( +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "red" }, -/obj/structure/machinery/door_control{ - id = "hangarentrancesouth"; - name = "South Hangar Shutters"; - pixel_y = 30; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +/area/almayer/maint/hull/upper/u_a_p) +"rYV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"rZb" = ( +/obj/structure/closet/firecloset, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/lower/starboard_midship_hallway) "rZB" = ( /obj/structure/pipes/standard/simple/visible{ dir = 9 @@ -64328,15 +64688,6 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_medbay) -"rZC" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "rZP" = ( /obj/structure/surface/table/almayer, /obj/item/tool/weldpack, @@ -64345,18 +64696,12 @@ icon_state = "plate" }, /area/almayer/shipboard/starboard_point_defense) -"sab" = ( -/obj/effect/landmark/start/doctor, -/obj/effect/landmark/late_join/doctor, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) -"sai" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +"saa" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/lower/l_a_p) "saL" = ( /obj/structure/machinery/door/airlock/almayer/generic/corporate{ name = "Corporate Liaison's Closet" @@ -64365,13 +64710,15 @@ icon_state = "test_floor4" }, /area/almayer/command/corporateliaison) -"saT" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 4 +"sbb" = ( +/obj/structure/machinery/door/airlock/almayer/security{ + dir = 2; + name = "\improper Security Checkpoint" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/shipboard/panic) "sbq" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ icon_state = "almayer_pdoor"; @@ -64381,30 +64728,33 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/notunnel) -"sbt" = ( -/obj/structure/machinery/door/airlock/almayer/security{ - dir = 2; - name = "\improper Security Checkpoint" - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "safe_armory"; - name = "\improper Hangar Armory Shutters" - }, +"sbA" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, /turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/shipboard/panic) -"sbE" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 + icon_state = "orange" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/lower/l_m_s) "sbJ" = ( /turf/closed/wall/almayer/white/hull, /area/almayer/powered/agent) +"sbM" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 4 + }, +/obj/structure/sign/safety/storage{ + pixel_y = 7; + pixel_x = -17 + }, +/obj/structure/sign/safety/commline_connection{ + pixel_x = -17; + pixel_y = -7 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/squads/req) "sbP" = ( /obj/effect/landmark/start/police, /obj/effect/decal/warning_stripes{ @@ -64413,6 +64763,39 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cryo) +"sbU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/bed/sofa/south/white/left{ + pixel_y = 16 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "silver" + }, +/area/almayer/maint/hull/upper/u_m_p) +"sbV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"sce" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool{ + pixel_x = 6 + }, +/obj/item/tool/shovel/etool, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "sco" = ( /obj/structure/sign/prop1{ layer = 3.1 @@ -64423,19 +64806,6 @@ /obj/structure/surface/table/reinforced/black, /turf/open/floor/carpet, /area/almayer/command/cichallway) -"sct" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/lower/engine_core) "scu" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -64505,15 +64875,12 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"scX" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/kitchen/tray, -/obj/item/reagent_container/food/drinks/bottle/whiskey, -/obj/item/toy/deck{ - pixel_x = -9 +"sde" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer{ + allow_construction = 0 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/lower/port_midship_hallway) "sdf" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -64563,6 +64930,9 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"sdz" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) "sdC" = ( /obj/structure/bed/chair{ dir = 4 @@ -64571,6 +64941,14 @@ icon_state = "blue" }, /area/almayer/squads/delta) +"sdF" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/aft_hallway) "sdO" = ( /obj/structure/ladder{ height = 1; @@ -64580,13 +64958,34 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"seL" = ( -/obj/structure/pipes/vents/pump{ - dir = 8; - id_tag = "mining_outpost_pump" +"sdP" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) +"sen" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/maint/hull/upper/u_m_s) +"sep" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/s_bow) +"sfv" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "sfT" = ( /turf/open/floor/almayer, /area/almayer/hallways/upper/port) @@ -64693,16 +65092,15 @@ icon_state = "red" }, /area/almayer/shipboard/brig/cells) -"sgL" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "southcheckpoint"; - name = "\improper Checkpoint Shutters" +"sgI" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, /turf/open/floor/almayer{ - icon_state = "redfull" + dir = 4; + icon_state = "green" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/hallways/upper/aft_hallway) "sgR" = ( /obj/structure/surface/table/almayer, /obj/item/toy/deck{ @@ -64719,12 +65117,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) -"she" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "shh" = ( /obj/structure/machinery/autolathe, /turf/open/floor/almayer, @@ -64764,6 +65156,14 @@ "sht" = ( /turf/open/floor/almayer, /area/almayer/living/pilotbunks) +"shJ" = ( +/obj/structure/platform_decoration{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "shL" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/electrical, @@ -64775,36 +65175,12 @@ icon_state = "cargo" }, /area/almayer/engineering/lower/engine_core) -"sir" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_access = null; - req_one_access = null - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "panicroomback"; - name = "\improper Safe Room Shutters" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_f_s) -"sit" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"sic" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"siy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/lower/s_bow) "siz" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/hangar{ @@ -64821,12 +65197,12 @@ icon_state = "redfull" }, /area/almayer/living/offices/flight) -"siC" = ( +"siB" = ( +/obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer{ - dir = 9; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/lower/vehiclehangar) "siN" = ( /obj/structure/machinery/light{ dir = 1 @@ -64842,23 +65218,21 @@ icon_state = "plate" }, /area/almayer/engineering/lower) -"siS" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "red" +"siP" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 18 }, -/area/almayer/hallways/upper/stern_hallway) -"siT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 18 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/u_a_s) "siW" = ( /obj/structure/machinery/body_scanconsole, /obj/structure/disposalpipe/segment{ @@ -64875,9 +65249,6 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/brig/main_office) -"sje" = ( -/turf/open/floor/almayer/empty, -/area/almayer/hallways/lower/vehiclehangar) "sjj" = ( /obj/structure/machinery/keycard_auth{ pixel_x = -7; @@ -64907,16 +65278,6 @@ icon_state = "test_floor4" }, /area/almayer/command/lifeboat) -"sjw" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/maint/hull/upper/u_m_p) "sjz" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out"; @@ -64926,6 +65287,19 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) +"sjC" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) +"sjZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "skj" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -64973,6 +65347,13 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower/workshop) +"skO" = ( +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "skR" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_10" @@ -65010,91 +65391,62 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"slo" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 +"slr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) +"slu" = ( /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" + icon_state = "N"; + pixel_y = 1 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "slv" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/turf/open/floor/almayer{ - icon_state = "cargo" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/area/almayer/engineering/lower/engine_core) -"slF" = ( -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/area/almayer/shipboard/brig/processing) -"smi" = ( /turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/living/grunt_rnr) -"smw" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/med_data/laptop{ - dir = 8 - }, -/obj/item/device/flashlight/lamp{ - pixel_x = -5; - pixel_y = 16 + dir = 8; + icon_state = "orange" }, -/obj/structure/sign/safety/terminal{ +/area/almayer/hallways/upper/stern_hallway) +"slx" = ( +/obj/structure/sign/safety/hvac_old{ pixel_x = 8; - pixel_y = -32 - }, -/obj/structure/machinery/light/small{ - dir = 4 + pixel_y = 32 }, +/obj/structure/largecrate/supply/supplies/flares, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"smA" = ( -/obj/item/trash/cigbutt{ - pixel_x = -10; - pixel_y = 13 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice10"; - pixel_x = -16; - pixel_y = 16 - }, +/area/almayer/maint/hull/lower/l_m_s) +"slF" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 9; + icon_state = "red" }, -/area/almayer/maint/hull/lower/l_m_s) -"smH" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" +/area/almayer/shipboard/brig/processing) +"slG" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) -"smU" = ( +/area/almayer/maint/hull/lower/l_a_s) +"smi" = ( /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "green" }, -/area/almayer/shipboard/panic) +/area/almayer/living/grunt_rnr) "smW" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -65152,10 +65504,15 @@ icon_state = "plate" }, /area/almayer/squads/req) -"snx" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) +"snC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/lower/starboard_umbilical) "snE" = ( /obj/structure/machinery/cryopod/right, /obj/effect/decal/warning_stripes{ @@ -65191,25 +65548,6 @@ icon_state = "plate" }, /area/almayer/command/cic) -"snM" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/squads/req) -"snN" = ( -/obj/structure/curtain/red, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "snR" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ @@ -65247,6 +65585,9 @@ }, /turf/open/floor/almayer, /area/almayer/living/gym) +"soC" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/s_bow) "soK" = ( /obj/item/storage/firstaid/fire/empty, /obj/item/storage/firstaid/o2/empty, @@ -65262,34 +65603,23 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"soT" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/lattice_prop{ - icon_state = "lattice1"; - pixel_x = 16; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "soX" = ( /obj/structure/window/reinforced/toughened, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/command/cic) -"spd" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"spa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/maint/hull/upper/u_a_p) +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/stern_hallway) +"spn" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "spF" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -65315,6 +65645,12 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) +"spN" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "spS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -65324,39 +65660,6 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"spT" = ( -/obj/structure/closet/crate{ - desc = "One of those old special operations crates from back in the day. After a leaked report from a meeting of SOF leadership lambasted the crates as 'waste of operational funds' the crates were removed from service."; - name = "special operations crate" - }, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/clothing/mask/gas/swat, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/attachable/suppressor, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/obj/item/explosive/grenade/smokebomb, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"spW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/hallways/upper/aft_hallway) "sqa" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -65392,16 +65695,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering) -"sqP" = ( -/obj/structure/surface/table/almayer, -/obj/structure/machinery/computer/emails{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/u_m_s) "sqW" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/item/seeds/tomatoseed, @@ -65410,39 +65703,28 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) -"srh" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"sre" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 6; + icon_state = "red" }, -/area/almayer/hallways/lower/port_umbilical) -"srl" = ( -/obj/structure/largecrate/random/barrel/red, +/area/almayer/hallways/lower/port_fore_hallway) +"sro" = ( +/obj/structure/machinery/light/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) -"srO" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) -"srR" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/obj/structure/machinery/light, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/area/almayer/maint/hull/lower/l_m_s) +"srA" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "srT" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 8 @@ -65454,28 +65736,14 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/evidence_storage) -"ssk" = ( -/obj/structure/surface/rack, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/storage/backpack/marine/satchel{ - desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; - icon = 'icons/obj/janitor.dmi'; - icon_state = "trashbag3"; - name = "trash bag"; - pixel_x = 3; - pixel_y = -2 +"ssx" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/maint/hull/upper/p_bow) "ssD" = ( /obj/structure/machinery/light/small{ dir = 4 @@ -65486,19 +65754,24 @@ }, /area/almayer/shipboard/brig/main_office) "ssF" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32; +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/rifle/l42a, +/obj/item/weapon/gun/rifle/l42a{ pixel_y = 6 }, -/obj/structure/sign/safety/reduction{ - pixel_x = 32; - pixel_y = -8 +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) +"ssH" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/stern) "ssU" = ( /obj/structure/machinery/constructable_frame, /turf/open/floor/almayer{ @@ -65530,13 +65803,10 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/shipboard/navigation) -"stk" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = -17 - }, +"stm" = ( /turf/open/floor/almayer{ - dir = 8; - icon_state = "green" + dir = 5; + icon_state = "silver" }, /area/almayer/hallways/upper/aft_hallway) "str" = ( @@ -65558,12 +65828,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north1) -"stA" = ( -/obj/structure/machinery/portable_atmospherics/hydroponics, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "stO" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/faxmachine/uscm/brig, @@ -65575,25 +65839,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/perma) -"stP" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_s) -"stR" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"sub" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/lower/vehiclehangar) "suc" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/disposalpipe/segment{ @@ -65619,18 +65864,6 @@ }, /turf/open/floor/almayer, /area/almayer/command/computerlab) -"suH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "suJ" = ( /obj/structure/machinery/door/airlock/almayer/maint{ name = "\improper Core Hatch" @@ -65643,18 +65876,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower/engine_core) -"suU" = ( -/obj/structure/stairs, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "suY" = ( /obj/structure/platform_decoration, /turf/open/floor/almayer{ @@ -65676,43 +65897,6 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"svt" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"svw" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"svF" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/effect/landmark/yautja_teleport, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"svV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = 6 - }, -/obj/item/weapon/gun/rifle/l42a, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "swn" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -65735,12 +65919,6 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"swG" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "swH" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/device/radio/intercom{ @@ -65776,15 +65954,6 @@ icon_state = "cargo" }, /area/almayer/engineering/upper_engineering) -"sxD" = ( -/obj/structure/machinery/door/airlock/almayer/generic{ - dir = 2; - name = "\improper Officer's Bunk" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/living/bridgebunks) "sxE" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -65798,10 +65967,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"sxS" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) "sxW" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -65813,12 +65978,30 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"syj" = ( -/obj/structure/sign/safety/escapepod{ - pixel_y = 32 +"syf" = ( +/obj/structure/pipes/standard/cap/hidden{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = -25 + }, +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/hallways/upper/stern_hallway) +"syo" = ( +/obj/structure/stairs, +/obj/effect/projector{ + name = "Almayer_Up1"; + vector_x = -19; + vector_y = 98 + }, +/obj/structure/blocker/forcefield/multitile_vehicles, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "syH" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 @@ -65828,13 +66011,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/delta) -"szb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) "szf" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -65849,6 +66025,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) +"szs" = ( +/obj/structure/bed/sofa/south/grey/left{ + pixel_y = 12 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "szE" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -65886,6 +66068,14 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/main_office) +"szS" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass{ + name = "Brig" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/p_bow) "szU" = ( /obj/structure/toilet{ dir = 8 @@ -65915,32 +66105,18 @@ icon_state = "orange" }, /area/almayer/engineering/ce_room) -"sAD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"sAS" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "sBg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/general_equipment) -"sBK" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 - }, +"sBD" = ( +/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer{ - icon_state = "redfull" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/upper/s_bow) "sBL" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/machinery/light, @@ -65948,20 +66124,30 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"sBY" = ( -/obj/item/tool/wet_sign, -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"sCg" = ( +"sBP" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/structure/surface/table/almayer, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"sCi" = ( +/obj/structure/machinery/pipedispenser/orderable, /turf/open/floor/almayer{ - dir = 8; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/maint/hull/upper/u_a_s) +"sCs" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 11 + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "sCA" = ( /obj/structure/bed/chair/comfy/delta{ dir = 4 @@ -65999,12 +66185,6 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"sCT" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_f_s) "sCV" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -66018,47 +66198,20 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"sCW" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/structure/surface/table/almayer, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"sDe" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - layer = 3.33; - pixel_x = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - layer = 3.33; - pixel_y = 2 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - layer = 3.3 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "S"; - layer = 3.3 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/upper/stern_hallway) "sDu" = ( /obj/item/clothing/under/marine/dress, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) -"sDx" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/vehiclehangar) +"sDv" = ( +/obj/structure/machinery/line_nexter{ + dir = 1; + id = "MTline"; + pixel_y = 3 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "sDA" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/bed/chair/comfy/charlie{ @@ -66075,6 +66228,11 @@ icon_state = "red" }, /area/almayer/shipboard/port_missiles) +"sDE" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "sDM" = ( /turf/open/floor/almayer{ dir = 9; @@ -66101,15 +66259,6 @@ icon_state = "cargo" }, /area/almayer/squads/bravo) -"sEg" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) "sEi" = ( /obj/structure/bed/chair{ can_buckle = 0; @@ -66155,6 +66304,14 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) +"sEs" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "sEt" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/spray/cleaner, @@ -66163,13 +66320,37 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) -"sEu" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"sEz" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sEC" = ( +/obj/structure/sign/safety/storage{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"sEE" = ( +/obj/structure/prop/invuln/joey, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/hull/lower/l_m_s) +"sEJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "sEK" = ( /obj/effect/decal/warning_stripes{ icon_state = "E" @@ -66197,15 +66378,13 @@ icon_state = "plate" }, /area/almayer/command/cic) -"sER" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"sEW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/lower/stern) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) "sEZ" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_y = 26 @@ -66227,6 +66406,12 @@ icon_state = "cargo" }, /area/almayer/shipboard/starboard_missiles) +"sFo" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/upper/stern_hallway) "sFC" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -66236,15 +66421,44 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/main_office) +"sFO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "sGh" = ( /turf/open/floor/almayer/uscm/directional, /area/almayer/command/lifeboat) -"sGw" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_f_s) -"sGK" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) +"sGm" = ( +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"sGD" = ( +/obj/structure/platform{ + dir = 4 + }, +/obj/item/storage/firstaid/rad, +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"sGJ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -30 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "sGL" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -66261,12 +66475,17 @@ icon_state = "cargo" }, /area/almayer/engineering/upper_engineering/port) -"sGQ" = ( -/obj/structure/closet/emcloset, +"sGP" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/lower/s_bow) +/area/almayer/hallways/upper/stern_hallway) +"sGQ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "sGU" = ( /obj/structure/mirror, /turf/closed/wall/almayer, @@ -66277,10 +66496,6 @@ icon_state = "silverfull" }, /area/almayer/command/airoom) -"sHe" = ( -/obj/structure/largecrate/supply/supplies/tables_racks, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "sHm" = ( /obj/structure/disposalpipe/up/almayer{ id = "almayerlink_OT_req" @@ -66346,10 +66561,11 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"sIu" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) +"sIw" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "sIA" = ( /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."; @@ -66368,30 +66584,21 @@ icon_state = "silver" }, /area/almayer/engineering/port_atmos) -"sIR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_midship_hallway) "sIU" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/hallways/hangar) -"sJa" = ( -/obj/structure/sign/safety/cryo{ - pixel_y = -26 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) "sJm" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/shipboard/brig/chief_mp_office) +"sJo" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "sJC" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -66461,13 +66668,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"sLk" = ( -/obj/structure/ladder{ - height = 2; - id = "cicladder4" - }, -/turf/open/floor/plating/almayer, -/area/almayer/medical/medical_science) "sLo" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -66478,15 +66678,15 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"sLx" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +"sLs" = ( +/obj/structure/largecrate/supply, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 32 }, -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/upper/s_bow) "sLA" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -66494,12 +66694,19 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"sLX" = ( +"sLJ" = ( +/obj/docking_port/stationary/escape_pod/cl, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) +"sMe" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "emeraldcorner" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/lower/l_m_s) "sMu" = ( /obj/item/trash/uscm_mre, /obj/structure/bed/chair/comfy/charlie{ @@ -66509,6 +66716,15 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) +"sMC" = ( +/obj/structure/machinery/light/small{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "sMM" = ( /obj/structure/cable/heavyduty{ icon_state = "4-8" @@ -66527,6 +66743,18 @@ icon_state = "orange" }, /area/almayer/squads/bravo) +"sNu" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "sNz" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -66535,22 +66763,19 @@ dir = 1 }, /area/almayer/medical/containment/cell) +"sNC" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"sNF" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_f_p) "sNI" = ( /obj/structure/bed/chair/comfy/delta, /turf/open/floor/almayer{ icon_state = "bluefull" }, /area/almayer/living/briefing) -"sNL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "sNO" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3" @@ -66561,12 +66786,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"sNP" = ( -/obj/structure/largecrate/supply/floodlights, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "sNR" = ( /turf/closed/wall/almayer/research/containment/wall/corner, /area/almayer/medical/containment/cell/cl) @@ -66580,22 +66799,9 @@ icon_state = "test_floor4" }, /area/almayer/command/cic) -"sOr" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_access = null; - req_one_access = null; - req_one_access_txt = "3;22;19" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_f_s) +"sOq" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/s_bow) "sOt" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/machinery/status_display{ @@ -66639,22 +66845,17 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/south1) -"sOD" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"sOL" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"sOH" = ( +/obj/structure/ladder{ + height = 1; + id = "ForeStarboardMaint" }, -/obj/structure/closet/toolcloset, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "orange" +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/maint/upper/mess) +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/s_bow) "sOZ" = ( /obj/structure/sign/safety/ammunition{ pixel_y = 32 @@ -66683,6 +66884,14 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/perma) +"sPI" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) "sPJ" = ( /obj/structure/machinery/firealarm{ dir = 4; @@ -66693,23 +66902,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) -"sPY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"sQu" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "sQF" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -66721,20 +66913,14 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"sRM" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"sRk" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/souto/blue{ + pixel_x = 2; + pixel_y = 3 }, +/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_a_s) -"sRP" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) "sSa" = ( /obj/structure/machinery/door/airlock/almayer/marine/requisitions{ dir = 2; @@ -66762,6 +66948,19 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) +"sSu" = ( +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "sSC" = ( /turf/open/floor/almayer{ dir = 6; @@ -66792,6 +66991,12 @@ icon_state = "plate" }, /area/almayer/command/cic) +"sSP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29" + }, +/turf/open/floor/wood/ship, +/area/almayer/command/corporateliaison) "sTd" = ( /turf/open/floor/almayer{ dir = 4; @@ -66817,13 +67022,9 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"sTU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +"sTT" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_a_s) "sTV" = ( /obj/structure/machinery/power/apc/almayer/hardened{ cell_type = /obj/item/cell/hyper; @@ -66831,6 +67032,15 @@ }, /turf/open/floor/plating, /area/almayer/command/airoom) +"sTX" = ( +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "sUg" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -66841,12 +67051,6 @@ icon_state = "silverfull" }, /area/almayer/shipboard/brig/cic_hallway) -"sUi" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_a_p) "sUj" = ( /obj/effect/decal/warning_stripes{ icon_state = "NE-out"; @@ -66858,14 +67062,20 @@ }, /area/almayer/squads/delta) "sUk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" }, -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 +/area/almayer/hallways/lower/port_aft_hallway) +"sUq" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/stern) "sUs" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -66876,12 +67086,36 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) +"sUA" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "sUE" = ( /obj/structure/surface/table/reinforced/almayer_B, /turf/open/floor/almayer{ icon_state = "bluefull" }, /area/almayer/command/cichallway) +"sUH" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) +"sUI" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -19; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -19; + pixel_y = 6 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "sUO" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -66905,15 +67139,22 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) -"sVA" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 +"sVp" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sVv" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox, +/obj/effect/spawner/random/technology_scanner, +/obj/effect/spawner/random/technology_scanner, +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/l_m_s) "sVT" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/mechanical, @@ -66934,23 +67175,31 @@ "sVV" = ( /turf/open/floor/almayer, /area/almayer/hallways/upper/starboard) -"sWp" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -12; - pixel_y = 13 +"sWb" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_s) -"sWw" = ( +/area/almayer/maint/upper/u_m_s) +"sWn" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/stern_hallway) +"sWy" = ( /obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "sWC" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -66990,12 +67239,14 @@ icon_state = "dark_sterile" }, /area/almayer/medical/containment) -"sXq" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +"sXg" = ( +/obj/structure/surface/table/almayer, +/obj/item/frame/table, +/obj/item/storage/toolbox/electrical, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/maint/hull/upper/u_a_s) "sXt" = ( /obj/structure/machinery/cm_vending/clothing/tl/alpha{ density = 0; @@ -67011,6 +67262,22 @@ /obj/effect/landmark/late_join/bravo, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/bravo) +"sXy" = ( +/obj/item/device/camera{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/structure/surface/table/almayer, +/obj/item/device/camera_film{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/device/camera_film, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/shipboard/brig/main_office) "sXB" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -67024,15 +67291,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"sXC" = ( -/obj/structure/sign/safety/storage{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) "sXE" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Auxiliary Support Officer's Room" @@ -67041,6 +67299,21 @@ icon_state = "test_floor4" }, /area/almayer/living/auxiliary_officer_office) +"sXG" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/upper/stern_hallway) +"sXJ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_umbilical) "sXQ" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/item/seeds/appleseed, @@ -67052,6 +67325,17 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) +"sYe" = ( +/obj/structure/surface/rack, +/obj/item/stack/cable_coil, +/obj/item/attachable/flashlight/grip, +/obj/item/ammo_box/magazine/l42a{ + pixel_y = 14 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "sYh" = ( /turf/open/floor/almayer{ dir = 1; @@ -67077,28 +67361,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"sYj" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) -"sYr" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Hangar Lockdown"; - name = "\improper Hangar Lockdown Blast Door" - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/port_umbilical) "sYw" = ( /obj/structure/platform{ dir = 8 @@ -67155,18 +67417,6 @@ /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/plating, /area/almayer/medical/upper_medical) -"sZc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"sZe" = ( -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) "sZq" = ( /obj/structure/machinery/cm_vending/sorted/marine_food{ density = 0; @@ -67227,6 +67477,33 @@ icon_state = "blue" }, /area/almayer/living/port_emb) +"sZN" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/door_control{ + id = "laddernortheast"; + name = "North East Ladders Shutters"; + pixel_y = -25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"sZQ" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) +"sZW" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_fore_hallway) "tab" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/box/flashbangs{ @@ -67283,9 +67560,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/perma) -"taw" = ( -/turf/closed/wall/almayer, -/area/almayer/maint/hull/upper/u_a_s) "taH" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ id = "Containment Cell 2"; @@ -67314,6 +67588,11 @@ icon_state = "test_floor4" }, /area/almayer/medical/containment/cell) +"taM" = ( +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/upper/u_f_p) "taV" = ( /obj/effect/projector{ name = "Almayer_Down1"; @@ -67325,43 +67604,66 @@ icon_state = "plate" }, /area/almayer/hallways/upper/starboard) -"tbD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"tbd" = ( +/obj/structure/machinery/light{ + unacidable = 1; + unslashable = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) -"tbF" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, /turf/open/floor/almayer{ - icon_state = "silvercorner" - }, -/area/almayer/hallways/upper/aft_hallway) -"tcd" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio{ - pixel_x = -6; - pixel_y = 3 + icon_state = "sterile_green_side" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"tcm" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/area/almayer/medical/lockerroom) +"tbz" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" }, -/obj/structure/largecrate/random/barrel/white, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) -"tcO" = ( -/turf/closed/wall/almayer/outer, /area/almayer/maint/hull/lower/l_a_p) -"tcS" = ( +"tbG" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/open/floor/plating/plating_catwalk, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) +"tcn" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"tcq" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, /area/almayer/hallways/lower/starboard_aft_hallway) +"tcP" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) +"tcY" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + layer = 5.1; + name = "water pipe" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/lower/constr) "tcZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -67398,14 +67700,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"tdi" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) "tdv" = ( /obj/structure/surface/table/almayer, /obj/structure/sign/safety/terminal{ @@ -67446,27 +67740,35 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha_bravo_shared) -"tdH" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/obj/item/bedsheet/yellow, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "tdI" = ( /turf/open/floor/almayer{ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) +"tdN" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "tdT" = ( /obj/structure/bed/chair/comfy/beige{ dir = 1 }, /turf/open/floor/carpet, /area/almayer/command/cichallway) +"tdU" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/blocker/forcefield/multitile_vehicles, +/obj/structure/sign/safety/stairs{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "teg" = ( /obj/structure/bed/chair{ dir = 8 @@ -67484,14 +67786,13 @@ }, /area/almayer/lifeboat_pumps/north1) "ter" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/lower/l_f_p) "teu" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/weapon/gun/shotgun/pump{ @@ -67499,10 +67800,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"tey" = ( -/obj/item/tool/wet_sign, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) "tez" = ( /obj/effect/landmark/ert_spawns/distress_cryo, /obj/effect/landmark/late_join, @@ -67517,6 +67814,9 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) +"teI" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/u_f_p) "teY" = ( /obj/structure/machinery/light{ dir = 1 @@ -67538,6 +67838,16 @@ icon_state = "red" }, /area/almayer/shipboard/brig/lobby) +"tfj" = ( +/obj/structure/machinery/conveyor{ + id = "lower_garbage" + }, +/obj/structure/plasticflaps, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/maint/hull/lower/l_a_p) "tfH" = ( /obj/structure/machinery/light/containment, /obj/effect/decal/warning_stripes{ @@ -67547,10 +67857,6 @@ dir = 1 }, /area/almayer/medical/containment/cell) -"tfQ" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) "tge" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -67562,37 +67868,16 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) -"tgm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"tgh" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"tgy" = ( -/obj/structure/machinery/light, /obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ - req_one_access = null; - req_one_access_txt = "7;23;27;102" - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) -"tgz" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 - }, -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 + icon_state = "E"; + pixel_x = 2 }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/upper/u_f_p) "tgK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -67602,6 +67887,15 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) +"tgP" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "tgV" = ( /obj/structure/bed, /obj/item/bedsheet/medical, @@ -67635,6 +67929,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) +"tht" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "thv" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -67657,6 +67957,12 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha_bravo_shared) +"thK" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "thL" = ( /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) @@ -67685,12 +67991,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) -"tih" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "tii" = ( /obj/structure/machinery/firealarm{ pixel_x = 6; @@ -67772,31 +68072,14 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"tiX" = ( -/obj/item/reagent_container/glass/bucket/janibucket{ - pixel_x = -1; - pixel_y = 13 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) -"tiY" = ( -/obj/structure/closet, -/obj/item/reagent_container/food/drinks/bottle/sake, -/obj/item/newspaper, -/obj/item/clothing/gloves/yellow, -/obj/item/stack/tile/carpet{ - amount = 20 - }, -/obj/structure/machinery/light/small{ - dir = 8 +"tje" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/upper/u_a_p) -"tiZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, +/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/aft_hallway) "tjj" = ( /turf/open/floor/almayer{ @@ -67822,40 +68105,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/tankerbunks) -"tjz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 4; - pixel_y = -3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) -"tjH" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/radio/headset/almayer/mt, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"tjO" = ( -/obj/structure/janitorialcart, -/obj/item/tool/mop, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/maint/hull/lower/l_m_s) -"tkg" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) "tkn" = ( /obj/structure/surface/table/almayer, /obj/item/storage/toolbox/mechanical, @@ -67892,6 +68141,16 @@ icon_state = "redfull" }, /area/almayer/hallways/upper/starboard) +"tkX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) +"tla" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/upper/s_bow) "tld" = ( /obj/structure/machinery/prop/almayer/computer{ dir = 8; @@ -67947,6 +68206,13 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) +"tlX" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "tmg" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/hypospray, @@ -67958,22 +68224,27 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"tml" = ( -/obj/structure/largecrate/supply/supplies/mre, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +"tms" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + dir = 4; + id = "officers_mess"; + name = "\improper Privacy Shutters" + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "19;30" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/upper/mess) "tmB" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"tmE" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) "tmH" = ( /obj/structure/pipes/vents/pump, /obj/structure/machinery/camera/autoname/almayer{ @@ -68007,38 +68278,44 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"tmQ" = ( -/obj/structure/machinery/light/small{ - dir = 1 +"tmS" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) -"tmX" = ( -/obj/effect/landmark/start/professor, -/obj/effect/landmark/late_join/cmo, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/living/offices) +/turf/open/floor/almayer{ + dir = 5; + icon_state = "red" + }, +/area/almayer/hallways/upper/stern_hallway) "tnb" = ( /obj/structure/bed/chair/comfy/black, /turf/open/floor/almayer{ icon_state = "redfull" }, /area/almayer/shipboard/port_missiles) -"tne" = ( -/obj/structure/machinery/door_control/cl/quarter/backdoor{ - pixel_x = -25; - pixel_y = 23 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "tni" = ( /turf/open/floor/almayer{ dir = 1; icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_three) +"tnD" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) +"tnS" = ( +/obj/structure/platform_decoration{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"tnT" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/repair_bay) "tnY" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -68050,9 +68327,19 @@ icon_state = "cargo" }, /area/almayer/squads/alpha) -"tob" = ( +"toe" = ( +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) +"toh" = ( +/obj/structure/machinery/light/small, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) +/area/almayer/maint/hull/lower/l_a_p) "tos" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -68064,12 +68351,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/engine_core) -"tot" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "tou" = ( /obj/structure/bed/chair{ dir = 4 @@ -68085,17 +68366,15 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"toD" = ( -/obj/structure/largecrate/supply/generator, -/obj/item/reagent_container/food/drinks/bottle/whiskey{ - layer = 2.9; - pixel_x = -10; - pixel_y = 3 +"toz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "plating" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/hallways/lower/vehiclehangar) "toO" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/engineering_construction, @@ -68116,20 +68395,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"toQ" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "tpa" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/structure/window/reinforced{ @@ -68146,37 +68411,21 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"tpj" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" - }, -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +"tpk" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/p_stern) "tpn" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/brig/evidence_storage) "tpB" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/poddoor/almayer{ - dir = 4; - id = "hangarentrancesouth"; - name = "\improper South Hangar Podlock" - }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 4; + icon_state = "silver" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/upper/aft_hallway) "tpD" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -68187,29 +68436,45 @@ icon_state = "silver" }, /area/almayer/living/bridgebunks) -"tpG" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 +"tpQ" = ( +/obj/structure/closet/crate/trashcart, +/obj/item/clothing/gloves/yellow, +/obj/item/device/multitool, +/obj/item/tool/screwdriver{ + icon_state = "screwdriver7" }, +/obj/item/tool/crowbar/red, +/obj/item/book/manual/engineering_hacking, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_umbilical) -"tpR" = ( +/area/almayer/maint/hull/upper/u_a_p) +"tqp" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/disposalpipe/segment, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tqf" = ( -/obj/structure/sign/safety/ladder{ - pixel_x = -16 +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) +"tqs" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/hardhat{ + pixel_x = 10; + pixel_y = 1 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 2 +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = -8; + pixel_y = 6 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) +/obj/item/clothing/suit/storage/hazardvest/yellow, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = 8; + pixel_y = 7 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"tqt" = ( +/obj/item/tool/wet_sign, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) "tqE" = ( /obj/structure/machinery/light{ dir = 8 @@ -68220,6 +68485,9 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) +"tqG" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "tqO" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -68232,47 +68500,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"tqQ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) -"tqV" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/toolbox/electrical{ - pixel_y = 9 - }, -/obj/item/storage/toolbox/mechanical/green, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"tra" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - dir = 2; - req_one_access = null; - req_one_access_txt = "19;34;30" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_p) "trb" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, @@ -68349,9 +68576,17 @@ /obj/item/clothing/suit/chef/classic, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) -"tsr" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/upper/mess) +"tsc" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_fore_hallway) "tst" = ( /obj/structure/machinery/cryopod/right, /obj/effect/decal/warning_stripes{ @@ -68392,10 +68627,12 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/upper_medical) -"tsE" = ( -/obj/structure/largecrate/random/barrel/blue, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +"tsI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "tsM" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -68428,24 +68665,6 @@ }, /turf/open/floor/plating, /area/almayer/powered/agent) -"tty" = ( -/obj/structure/surface/table/almayer, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/clothing/glasses/mgoggles, -/obj/item/clothing/glasses/mgoggles, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"ttB" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"ttD" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "ttE" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin{ @@ -68526,45 +68745,9 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"tup" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -30 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "tuA" = ( /turf/closed/wall/almayer/outer, /area/almayer/shipboard/port_missiles) -"tuC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_fore_hallway) -"tuJ" = ( -/obj/item/reagent_container/glass/bucket{ - pixel_x = 4; - pixel_y = 9 - }, -/obj/item/tool/shovel/spade{ - pixel_x = -3; - pixel_y = -3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) "tuN" = ( /turf/open/floor/almayer{ icon_state = "orange" @@ -68577,26 +68760,23 @@ icon_state = "redcorner" }, /area/almayer/shipboard/weapon_room) -"tvl" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 +"tvc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"tvr" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) -"tvt" = ( -/obj/structure/window/framed/almayer/hull, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/hallways/lower/starboard_midship_hallway) +"tvm" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "tvw" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -68605,13 +68785,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"tvA" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "tvM" = ( /obj/structure/bed/chair{ dir = 1 @@ -68643,21 +68816,16 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"tvS" = ( -/obj/docking_port/stationary/escape_pod/south, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_s) -"twp" = ( -/obj/structure/ladder{ - height = 1; - id = "AftStarboardMaint" +"twi" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = 32 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/l_a_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "twq" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/hand_labeler{ @@ -68702,13 +68870,28 @@ icon_state = "cargo" }, /area/almayer/command/cic) -"twQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 +"twL" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/one{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/ammunition{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"twO" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/lower/l_a_s) "twW" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -68723,47 +68906,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"txd" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"txp" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"txy" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"txE" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"txH" = ( -/obj/structure/bed/stool, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "txO" = ( /obj/structure/machinery/landinglight/ds1{ dir = 4 @@ -68778,17 +68920,6 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"txS" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/machinery/camera/autoname/almayer{ - name = "ship-grade camera" - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/lower/engine_core) "tyb" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -68803,6 +68934,9 @@ dir = 4 }, /area/almayer/medical/containment/cell) +"tyH" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "tyK" = ( /obj/effect/spawner/random/toolbox, /obj/structure/machinery/light{ @@ -68813,6 +68947,13 @@ icon_state = "cargo_arrow" }, /area/almayer/shipboard/starboard_missiles) +"tyY" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "tzd" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -68820,28 +68961,34 @@ }, /turf/open/floor/plating, /area/almayer/shipboard/brig/processing) +"tze" = ( +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "red" + }, +/area/almayer/hallways/upper/stern_hallway) "tzw" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) -"tzx" = ( -/obj/structure/machinery/light{ - unacidable = 1; - unslashable = 1 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"tzC" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/area/almayer/medical/lockerroom) -"tzF" = ( -/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "mono" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/l_m_p) "tzL" = ( /obj/structure/sign/safety/waterhazard{ pixel_x = 8; @@ -68858,14 +69005,10 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) -"tAb" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) +"tzZ" = ( +/obj/effect/landmark/start/reporter, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "tAq" = ( /obj/structure/surface/table/reinforced/black, /obj/item/clothing/mask/breath{ @@ -68880,6 +69023,12 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) +"tAH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "orange" + }, +/area/almayer/hallways/upper/stern_hallway) "tAL" = ( /obj/structure/machinery/cryopod, /turf/open/floor/almayer{ @@ -68909,13 +69058,18 @@ icon_state = "cargo" }, /area/almayer/medical/lower_medical_medbay) -"tAW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"tBd" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, +/obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/starboard_aft_hallway) +"tBp" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "tBq" = ( /obj/item/tool/crowbar, /turf/open/floor/plating/plating_catwalk, @@ -68927,42 +69081,18 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"tBU" = ( -/obj/structure/platform, -/obj/structure/largecrate/random/case/double{ - layer = 2.98 - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"tBY" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, +"tCi" = ( /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/mess) -"tCd" = ( -/obj/item/folder/red{ - desc = "A red folder. The previous contents are a mystery, though the number 28 has been written on the inside of each flap numerous times. Smells faintly of cough syrup."; - name = "folder: 28"; - pixel_x = -4; - pixel_y = 5 - }, -/obj/structure/surface/table/almayer, -/obj/item/toy/crayon{ - pixel_x = 9; - pixel_y = -2 + icon_state = "test_floor4" }, +/area/almayer/maint/hull/upper/u_f_s) +"tCv" = ( +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "orange" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/hallways/lower/port_umbilical) "tCx" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/sign/safety/maint{ @@ -68981,23 +69111,10 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/port) -"tCC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/maint/hull/upper/u_a_s) -"tCD" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, +"tCM" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" + icon_state = "test_floor4" }, /area/almayer/hallways/upper/aft_hallway) "tCT" = ( @@ -69008,6 +69125,17 @@ icon_state = "plate" }, /area/almayer/command/cic) +"tDq" = ( +/obj/structure/largecrate/random, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"tDw" = ( +/obj/structure/largecrate/supply/ammo/m41a/half, +/obj/structure/largecrate/supply/ammo/pistol/half{ + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "tDZ" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -69041,15 +69169,27 @@ icon_state = "plating" }, /area/almayer/medical/upper_medical) -"tEu" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 +"tEk" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard{ + pixel_x = 12; + pixel_y = 7 + }, +/obj/item/tool/crowbar{ + pixel_x = 6; + pixel_y = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/upper/u_m_p) +"tEo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) "tEB" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ @@ -69091,11 +69231,16 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) -"tFQ" = ( +"tFH" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/status_display{ + pixel_y = 30 + }, /turf/open/floor/almayer{ - icon_state = "orange" + dir = 1; + icon_state = "green" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/starboard_midship_hallway) "tFS" = ( /obj/structure/machinery/computer/supplycomp, /obj/structure/sign/safety/terminal{ @@ -69160,47 +69305,6 @@ icon_state = "redfull" }, /area/almayer/living/briefing) -"tGH" = ( -/obj/structure/sign/safety/restrictedarea, -/obj/structure/sign/safety/security{ - pixel_x = 15 - }, -/turf/closed/wall/almayer, -/area/almayer/shipboard/panic) -"tGS" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) -"tGT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/photocopier{ - anchored = 0 - }, -/obj/structure/sign/poster/art{ - pixel_y = 32 - }, -/turf/open/floor/wood/ship, -/area/almayer/command/corporateliaison) -"tGW" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/hallways/upper/stern_hallway) -"tHk" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "tHr" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/status_display{ @@ -69227,12 +69331,27 @@ icon_state = "orangecorner" }, /area/almayer/living/briefing) -"tHF" = ( -/obj/structure/machinery/light, +"tHw" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_aft_hallway) +/area/almayer/maint/hull/lower/stern) +"tHA" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/station_alert, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "orange" + }, +/area/almayer/maint/upper/mess) "tHQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -69260,15 +69379,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/engine_core) -"tIl" = ( -/obj/structure/pipes/vents/pump/on, -/obj/structure/machinery/light{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_aft_hallway) "tIp" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Dorms" @@ -69284,12 +69394,12 @@ icon_state = "test_floor4" }, /area/almayer/living/port_emb) -"tIF" = ( -/obj/structure/largecrate/random/barrel/green, +"tIE" = ( +/obj/structure/girder/displaced, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/u_a_p) "tIK" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal3"; @@ -69302,13 +69412,15 @@ /turf/open/floor/wood/ship, /area/almayer/living/basketball) "tIN" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice13"; + pixel_x = 16; + pixel_y = 16 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "tIQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -69324,17 +69436,10 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"tIX" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/firstaid/adv{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) +"tJa" = ( +/obj/docking_port/stationary/escape_pod/east, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) "tJi" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/paper_bin/uscm, @@ -69343,24 +69448,33 @@ icon_state = "plate" }, /area/almayer/living/bridgebunks) -"tJq" = ( -/obj/structure/machinery/light/small{ +"tJn" = ( +/obj/structure/pipes/vents/scrubber{ dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"tJw" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_midship_hallway) "tJz" = ( /obj/structure/machinery/firealarm{ pixel_y = -28 }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"tJH" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/upper/stern_hallway) "tJM" = ( /obj/structure/toilet{ pixel_y = 13 @@ -69422,6 +69536,25 @@ icon_state = "cargo" }, /area/almayer/living/bridgebunks) +"tKu" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "sterile_green_side" + }, +/area/almayer/medical/lockerroom) +"tKv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "tLa" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -69473,17 +69606,41 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"tLZ" = ( +"tLj" = ( +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /turf/open/floor/almayer{ - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/port_umbilical) +"tLA" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/squads/req) +"tLD" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/obj/item/bedsheet/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "tMc" = ( /obj/structure/machinery/chem_master/industry_mixer, /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) +"tMu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 2 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "tMH" = ( /obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ name = "\improper Warden's Office"; @@ -69506,22 +69663,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/chief_mp_office) -"tMT" = ( -/obj/item/tool/weldingtool, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "red" - }, -/area/almayer/maint/hull/upper/u_a_p) -"tMU" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "tMW" = ( /obj/effect/decal/warning_stripes{ icon_state = "NW-out"; @@ -69531,19 +69672,31 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"tNw" = ( -/obj/structure/surface/table/almayer, -/obj/item/storage/pouch/tools/full, -/turf/open/floor/almayer{ - icon_state = "plate" +"tNf" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/s_bow) +"tNm" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer/open{ + id = "vehicle1door"; + name = "Vehicle Bay One" }, -/area/almayer/maint/hull/upper/u_m_p) -"tNB" = ( -/obj/structure/bed/sofa/south/grey/left, +/obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/lower/vehiclehangar) +"tNy" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"tNE" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_fore_hallway) "tNP" = ( /obj/structure/sign/safety/debark_lounge{ pixel_x = 15; @@ -69562,6 +69715,12 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha) +"tOp" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "tOr" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -69590,52 +69749,12 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) -"tON" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) "tOW" = ( /turf/open/floor/almayer{ dir = 10; icon_state = "green" }, /area/almayer/living/grunt_rnr) -"tPc" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"tPj" = ( -/obj/structure/machinery/door/airlock/almayer/marine/requisitions{ - access_modified = 1; - name = "\improper Requisition's Office"; - req_one_access = null; - req_one_access_txt = "1;26" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/disposalpipe/segment{ - dir = 8 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/squads/req) "tPm" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -69649,20 +69768,6 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) -"tPz" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/aft_hallway) -"tPB" = ( -/obj/effect/projector{ - name = "Almayer_Down2"; - vector_x = 1; - vector_y = -100 - }, -/turf/open/floor/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/upper/aft_hallway) "tPI" = ( /obj/structure/bed/chair{ dir = 4 @@ -69678,16 +69783,6 @@ }, /turf/open/floor/almayer, /area/almayer/living/briefing) -"tQe" = ( -/obj/structure/sign/safety/escapepod{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "tQi" = ( /obj/effect/landmark/start/warrant, /obj/effect/decal/warning_stripes{ @@ -69705,30 +69800,44 @@ icon_state = "sterile_green_side" }, /area/almayer/shipboard/brig/surgery) -"tQA" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - dir = 1 +"tQw" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/upper/u_m_s) +/area/almayer/maint/hull/lower/l_a_p) "tQL" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"tQO" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_y = -32 +"tQM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/obj/structure/sign/poster/pinup{ + pixel_x = -30 }, /turf/open/floor/almayer{ - icon_state = "green" + icon_state = "dark_sterile" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/command/corporateliaison) +"tQN" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/p_bow) "tQV" = ( /turf/closed/wall/almayer/outer, /area/almayer/lifeboat_pumps/south1) +"tRd" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "tRs" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/spray/cleaner, @@ -69749,14 +69858,11 @@ }, /area/almayer/living/basketball) "tSm" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldingtool{ - pixel_x = 6; - pixel_y = -16 +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/obj/item/clothing/head/welding, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) "tSp" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -69779,15 +69885,15 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"tSY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"tST" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/repair_bay) "tTk" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -69810,9 +69916,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"tTC" = ( -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "tTD" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/storage/box/uscm_mre, @@ -69826,13 +69929,6 @@ icon_state = "kitchen" }, /area/almayer/living/captain_mess) -"tTG" = ( -/obj/structure/sign/safety/terminal{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "tUh" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -69885,12 +69981,13 @@ icon_state = "bluefull" }, /area/almayer/living/bridgebunks) -"tVn" = ( -/obj/structure/platform{ - dir = 1 +"tVl" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/maint/hull/lower/l_f_p) "tVq" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -69900,84 +69997,38 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha) -"tVs" = ( -/obj/structure/closet, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/u_m_s) -"tVx" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) -"tVZ" = ( -/turf/open/floor/almayer{ - icon_state = "cargo_arrow" +"tVJ" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 7 }, -/area/almayer/hallways/lower/repair_bay) -"tWd" = ( -/obj/structure/largecrate/random/case, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"tWf" = ( -/obj/structure/machinery/light{ - dir = 1 +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = 1; + pixel_y = -1 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/l_f_p) "tWi" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"tWl" = ( -/obj/structure/machinery/door/airlock/almayer/engineering{ - name = "\improper Disposals" - }, -/obj/structure/disposalpipe/junction{ - dir = 8; - icon_state = "pipe-j2" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_a_p) -"tWp" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"tWF" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;30;34" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/upper/mess) "tWL" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 +/obj/structure/sign/poster{ + desc = "It says DRUG."; + icon_state = "poster2"; + pixel_y = 30 }, -/turf/open/floor/almayer{ - icon_state = "silver" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/hallways/lower/repair_bay) -"tWM" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/maint/upper/u_m_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "tWY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -70034,11 +70085,20 @@ icon_state = "test_floor4" }, /area/almayer/squads/req) -"tXo" = ( -/turf/open/floor/almayer{ - icon_state = "redcorner" +"tXA" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "tXM" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -70082,6 +70142,22 @@ icon_state = "plate" }, /area/almayer/living/port_emb) +"tXX" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/firstaid/o2, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/technology_scanner, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) +"tYh" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "tYi" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -70093,15 +70169,9 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lower_medical_lobby) -"tYr" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) +"tYu" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/hallways/lower/vehiclehangar) "tYw" = ( /obj/effect/decal/medical_decals{ icon_state = "triagedecalbottomleft"; @@ -70123,12 +70193,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"tYV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) "tYX" = ( /turf/open/floor/almayer{ icon_state = "test_floor4" @@ -70157,23 +70221,16 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/port) -"tZM" = ( -/obj/structure/sink{ - pixel_y = 24 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"tZP" = ( -/obj/structure/surface/rack, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/obj/structure/machinery/light/small{ - dir = 1 +"tZO" = ( +/obj/structure/sign/safety/autodoc{ + pixel_x = 20; + pixel_y = -32 }, +/obj/structure/machinery/cm_vending/sorted/medical/bolted, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "sterile_green_side" }, -/area/almayer/engineering/upper_engineering/port) +/area/almayer/medical/lower_medical_medbay) "tZZ" = ( /obj/structure/machinery/cryopod, /obj/effect/decal/warning_stripes{ @@ -70196,12 +70253,6 @@ /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"uag" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/upper/mess) "uah" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -70212,6 +70263,13 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"uai" = ( +/obj/structure/window/framed/almayer, +/obj/structure/curtain/open/shower{ + name = "hypersleep curtain" + }, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) "ual" = ( /obj/structure/sink{ pixel_y = 24 @@ -70235,15 +70293,6 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) -"uaA" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_s) -"uaG" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/lower/starboard_umbilical) "uaI" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/processor{ @@ -70254,6 +70303,9 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) +"uaR" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "uaU" = ( /obj/structure/surface/table/almayer, /obj/structure/flora/pottedplant{ @@ -70279,6 +70331,19 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"ubB" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 1; + name = "\improper Brig Maintenance" + }, +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/p_bow) "ubI" = ( /obj/structure/surface/table/almayer, /obj/item/folder/black_random{ @@ -70292,27 +70357,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"ubQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) -"uch" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/upper/aft_hallway) "ucp" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -70323,14 +70367,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south2) -"ucy" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 - }, -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/l_a_p) "ucz" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/overwatch/almayer{ @@ -70353,23 +70389,12 @@ icon_state = "plate" }, /area/almayer/command/cic) -"udf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/sign/safety/maint{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/storage{ - pixel_y = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 3 +"ucU" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/maint/hull/lower/p_bow) "udi" = ( /turf/open/floor/almayer{ icon_state = "red" @@ -70403,6 +70428,13 @@ icon_state = "plate" }, /area/almayer/squads/alpha) +"udH" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/power/apc/almayer, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "udK" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -70458,12 +70490,12 @@ icon_state = "bluefull" }, /area/almayer/living/briefing) -"uew" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 +"ueq" = ( +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/lower/port_midship_hallway) "ueG" = ( /obj/item/bedsheet/orange, /obj/structure/bed{ @@ -70477,6 +70509,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/engineering/ce_room) +"ueH" = ( +/obj/structure/sink{ + pixel_y = 24 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/s_bow) "ueJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -70488,6 +70526,15 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"ueX" = ( +/obj/structure/pipes/vents/scrubber{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/port_umbilical) "ueZ" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/alpha{ @@ -70528,12 +70575,38 @@ icon_state = "test_floor4" }, /area/almayer/command/cic) -"ugj" = ( +"ufM" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 1; + name = "ship-grade camera" + }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" + icon_state = "orangecorner" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/upper/stern_hallway) +"ugq" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/upper/aft_hallway) +"ugt" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/s_bow) "ugu" = ( /obj/structure/machinery/cm_vending/sorted/marine_food, /turf/open/floor/almayer, @@ -70554,21 +70627,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"ugZ" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) -"uhh" = ( -/obj/structure/machinery/vending/cola{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) "uhl" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -70579,22 +70637,24 @@ icon_state = "cargo_arrow" }, /area/almayer/living/offices) -"uhq" = ( -/obj/structure/disposalpipe/segment{ +"uhn" = ( +/obj/structure/platform{ dir = 4 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - dir = 4; - id = "northcheckpoint"; - name = "\improper Checkpoint Shutters" +/area/almayer/maint/hull/upper/u_a_p) +"uhv" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer{ - icon_state = "redfull" + dir = 4; + icon_state = "orangecorner" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/upper/stern_hallway) "uhE" = ( /obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, /turf/open/floor/plating/plating_catwalk, @@ -70613,6 +70673,13 @@ icon_state = "cargo_arrow" }, /area/almayer/living/offices) +"uhS" = ( +/obj/structure/sign/safety/hazard{ + desc = "A sign that warns of a hazardous environment nearby"; + name = "\improper Warning: Hazardous Environment" + }, +/turf/closed/wall/almayer, +/area/almayer/maint/hull/lower/l_f_p) "uhW" = ( /turf/open/floor/almayer{ dir = 1; @@ -70640,12 +70707,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"uiK" = ( -/obj/item/ammo_box/magazine/misc/mre, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) "uiR" = ( /obj/structure/prop/invuln{ desc = "An inflated membrane. This one is puncture proof. Wow!"; @@ -70674,12 +70735,23 @@ icon_state = "test_floor4" }, /area/almayer/command/cichallway) -"ujf" = ( -/obj/structure/largecrate/random/barrel/yellow, +"ujc" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/u_m_s) +/area/almayer/maint/hull/upper/u_m_s) +"ujr" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/engineering/lower/engine_core) "ujz" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -70698,19 +70770,15 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"uky" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"ukk" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + req_one_access = null; + req_one_access_txt = "2;30;34" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_umbilical) -"ukC" = ( -/obj/effect/decal/cleanable/blood/drip, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/upper/u_m_s) "ukP" = ( /obj/structure/reagent_dispensers/fueltank, /turf/open/floor/almayer{ @@ -70757,22 +70825,61 @@ icon_state = "plating_striped" }, /area/almayer/squads/req) -"ulH" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 8 +"ulD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/hallways/upper/aft_hallway) +"ulG" = ( +/obj/item/tool/weldpack{ + pixel_y = 15 + }, +/obj/structure/surface/table/almayer, +/obj/item/clothing/head/welding, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) +"ulI" = ( +/obj/structure/ladder{ + height = 1; + id = "AftPortMaint" + }, +/obj/structure/sign/safety/ladder{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/lower/l_a_p) "ulZ" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "cargo_arrow" }, /area/almayer/living/offices) +"umb" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_aft_hallway) +"umf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_umbilical) "umh" = ( /obj/structure/platform_decoration{ dir = 8 @@ -70782,15 +70889,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south2) -"umk" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "umm" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/light/small, @@ -70798,6 +70896,14 @@ icon_state = "rasputin15" }, /area/almayer/powered/agent) +"umn" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_umbilical) "umy" = ( /obj/structure/machinery/light{ dir = 1 @@ -70807,22 +70913,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"umD" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) -"umI" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/upper/aft_hallway) "umS" = ( /obj/structure/bed/chair/comfy{ dir = 8 @@ -70856,6 +70946,12 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) +"unm" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_midship_hallway) "uns" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/item/seeds/carrotseed, @@ -70875,13 +70971,30 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"unQ" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/effect/spawner/random/tool, +"unA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/hallways/lower/starboard_midship_hallway) +"unI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 4; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) "unT" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/item/tool/crowbar, @@ -70893,16 +71006,6 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"unU" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical/bolted, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) "unZ" = ( /obj/structure/platform{ dir = 1 @@ -70924,18 +71027,30 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) -"uoj" = ( -/obj/item/tool/pen, +"uos" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/hallways/lower/starboard_aft_hallway) "uoA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/starboard_point_defense) +"uoF" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "uoH" = ( /obj/structure/machinery/firealarm{ dir = 1; @@ -70945,13 +71060,34 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"uoO" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 +"uoM" = ( +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) +/turf/open/floor/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/upper/aft_hallway) +"upv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/mess) +"upz" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "upM" = ( /obj/structure/machinery/light{ dir = 4 @@ -70966,6 +71102,13 @@ icon_state = "cargo_arrow" }, /area/almayer/living/offices) +"upP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/fourway/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_aft_hallway) "upR" = ( /obj/structure/machinery/light{ dir = 1 @@ -70979,10 +71122,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"upS" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) "uqd" = ( /obj/structure/surface/table/almayer, /obj/effect/decal/warning_stripes{ @@ -71013,13 +71152,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) -"uqg" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) "uqh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -71059,60 +71191,42 @@ }, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"uqJ" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/maint/hull/upper/u_a_s) -"urg" = ( -/obj/docking_port/stationary/escape_pod/east, +"uqW" = ( +/obj/item/tool/wet_sign, +/obj/effect/decal/cleanable/blood, /turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) -"urk" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orangecorner" +/area/almayer/maint/lower/constr) +"uqY" = ( +/obj/effect/projector{ + name = "Almayer_Up4"; + vector_x = -19; + vector_y = 104 }, -/area/almayer/hallways/lower/starboard_umbilical) -"urs" = ( /turf/open/floor/almayer{ - dir = 1; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"ury" = ( -/obj/structure/bed/chair{ - dir = 8 + allow_construction = 0 }, -/obj/effect/decal/cleanable/blood, -/obj/structure/machinery/light/small{ +/area/almayer/hallways/lower/port_midship_hallway) +"urv" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) -"urL" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 + icon_state = "test_floor4" }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 +/area/almayer/hallways/lower/starboard_aft_hallway) +"urD" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_s) +/area/almayer/maint/hull/lower/l_f_p) "urM" = ( /obj/structure/machinery/light{ dir = 8 @@ -71127,6 +71241,19 @@ /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) +"urZ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_a_p) +"usl" = ( +/turf/open/floor/almayer{ + icon_state = "orangecorner" + }, +/area/almayer/hallways/upper/stern_hallway) "usm" = ( /obj/structure/machinery/light, /obj/structure/sign/safety/waterhazard{ @@ -71137,19 +71264,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) -"usq" = ( -/obj/structure/sign/safety/ammunition{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, -/turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/shipboard/panic) "usy" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -71161,6 +71275,13 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) +"usF" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "usL" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -71211,15 +71332,6 @@ icon_state = "cargo" }, /area/almayer/engineering/upper_engineering) -"utC" = ( -/obj/structure/machinery/portable_atmospherics/canister/air, -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/upper/u_a_s) "utK" = ( /obj/structure/machinery/light{ dir = 4 @@ -71294,12 +71406,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower) -"uuI" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/port_midship_hallway) "uuR" = ( /obj/structure/desertdam/decals/road_edge{ icon_state = "road_edge_decal8"; @@ -71323,46 +71429,21 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) -"uuT" = ( -/obj/structure/pipes/vents/scrubber{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_aft_hallway) "uvh" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/obj/structure/disposalpipe/segment{ +/obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) -"uvp" = ( -/obj/structure/largecrate/supply, -/obj/structure/sign/safety/bulkhead_door{ - pixel_y = 32 +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_bow) -"uvq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/starboard_fore_hallway) "uvt" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -71381,6 +71462,23 @@ icon_state = "orangecorner" }, /area/almayer/squads/bravo) +"uvB" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "uvP" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -71415,10 +71513,30 @@ icon_state = "red" }, /area/almayer/shipboard/brig/cells) -"uwf" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) +"uwi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) +"uwj" = ( +/obj/item/stack/cable_coil{ + pixel_x = 1; + pixel_y = 10 + }, +/obj/item/trash/pistachios, +/obj/item/tool/screwdriver, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/hallways/lower/repair_bay) +"uwk" = ( +/obj/structure/machinery/power/terminal, +/turf/open/floor/almayer, +/area/almayer/maint/upper/mess) "uws" = ( /obj/structure/machinery/light{ dir = 4 @@ -71439,6 +71557,12 @@ "uwv" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/weapon_room/notunnel) +"uwJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "uwN" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -71483,18 +71607,6 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) -"uxb" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) -"uxl" = ( -/obj/item/cell/high/empty, -/obj/item/cell/high/empty, -/obj/structure/surface/rack, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) "uxp" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -71511,12 +71623,21 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) -"uxs" = ( -/obj/structure/machinery/pipedispenser/orderable, +"uxx" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"uxy" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/hallways/lower/port_midship_hallway) "uxC" = ( /obj/structure/machinery/light{ dir = 4 @@ -71550,6 +71671,15 @@ /obj/structure/pipes/standard/manifold/hidden/supply, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) +"uyb" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "uyd" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -71579,13 +71709,19 @@ icon_state = "dark_sterile" }, /area/almayer/medical/chemistry) -"uzv" = ( -/obj/structure/bed/chair{ - dir = 8; - pixel_y = 3 +"uyK" = ( +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 18 + }, +/turf/open/floor/almayer{ + icon_state = "plate" }, +/area/almayer/maint/hull/upper/u_f_p) +"uyV" = ( +/obj/item/stack/sheet/metal, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/maint/hull/upper/u_a_p) "uzy" = ( /obj/item/reagent_container/glass/bucket, /obj/effect/decal/cleanable/blood/oil, @@ -71606,15 +71742,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/hangar) -"uAi" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "uAj" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, @@ -71633,6 +71760,12 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"uAx" = ( +/obj/structure/platform{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "uAC" = ( /obj/item/bedsheet/purple{ layer = 3.2 @@ -71677,6 +71810,10 @@ /obj/item/toy/plush/farwa, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/cells) +"uAN" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "uAW" = ( /obj/structure/machinery/cryopod{ layer = 3.1; @@ -71695,37 +71832,20 @@ }, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"uBj" = ( +"uBE" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"uBx" = ( -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 + icon_state = "E"; + pixel_x = 1 }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -16; - pixel_y = 13 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/sign/safety/water{ - pixel_x = -17 +/area/almayer/maint/hull/lower/l_a_s) +"uBI" = ( +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/hallways/lower/port_fore_hallway) "uBM" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -71754,6 +71874,21 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) +"uBS" = ( +/obj/structure/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"uBX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_umbilical) "uCh" = ( /obj/structure/reagent_dispensers/watertank, /obj/structure/sign/safety/water{ @@ -71765,27 +71900,6 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"uCt" = ( -/obj/structure/sign/safety/stairs{ - pixel_x = -17; - pixel_y = 7 - }, -/obj/structure/sign/safety/escapepod{ - pixel_x = -17; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"uCw" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/item/reagent_container/food/snacks/tomatomeat, -/obj/item/reagent_container/food/snacks/tomatomeat, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "uCM" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -71804,12 +71918,13 @@ icon_state = "test_floor4" }, /area/almayer/squads/charlie) -"uCR" = ( -/obj/item/tool/warning_cone{ - pixel_y = 13 +"uCU" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) "uCW" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 @@ -71817,9 +71932,20 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/cichallway) -"uDg" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/s_bow) +"uDl" = ( +/obj/structure/closet, +/obj/item/stack/sheet/glass/large_stack, +/obj/item/device/lightreplacer, +/obj/item/reagent_container/spray/cleaner, +/obj/item/stack/rods{ + amount = 40 + }, +/obj/item/tool/weldingtool, +/obj/item/clothing/glasses/welding, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/s_bow) "uDn" = ( /obj/structure/ladder{ height = 1; @@ -71837,6 +71963,19 @@ icon_state = "dark_sterile" }, /area/almayer/medical/lockerroom) +"uDT" = ( +/obj/structure/surface/table/almayer, +/obj/item/circuitboard/airlock, +/obj/item/circuitboard/airlock{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/stack/cable_coil{ + pixel_x = -7; + pixel_y = 11 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "uDW" = ( /obj/structure/machinery/cm_vending/clothing/tl/delta{ density = 0; @@ -71846,36 +71985,15 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"uEO" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 3 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"uES" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/platform{ - dir = 8 - }, -/obj/structure/machinery/recharge_station{ - layer = 2.9 - }, -/obj/structure/sign/safety/high_voltage{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 +"uFb" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + dir = 1; + name = "\improper Port Viewing Room" }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/maint/hull/upper/u_f_p) "uFd" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -71906,12 +72024,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/lockerroom) -"uFp" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/s_bow) "uFq" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -71922,11 +72034,27 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/lobby) +"uFE" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/clothing/head/helmet/marine/tech/tanker, +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "uFH" = ( /obj/structure/surface/table/almayer, /obj/effect/landmark/map_item, /turf/open/floor/almayer, /area/almayer/living/briefing) +"uFK" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "redcorner" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "uGc" = ( /obj/structure/machinery/suit_storage_unit/compression_suit/uscm, /obj/structure/sign/safety/hazard{ @@ -71944,18 +72072,19 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) -"uGf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 +"uGy" = ( +/obj/structure/ladder{ + height = 2; + id = "AftPortMaint" }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +/turf/open/floor/plating/almayer, +/area/almayer/maint/hull/upper/u_a_p) +"uGI" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/hallways/lower/port_midship_hallway) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) "uGN" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, @@ -71966,54 +72095,54 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"uGU" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) -"uHk" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/light{ - dir = 4 +"uHi" = ( +/obj/structure/sign/safety/security{ + pixel_x = 15; + pixel_y = 32 }, -/obj/structure/sign/safety/maint{ - pixel_x = -17 +/obj/structure/sign/safety/restrictedarea{ + pixel_y = 32 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/lower/cryo_cells) +/area/almayer/hallways/lower/port_fore_hallway) "uHr" = ( /turf/open/floor/almayer{ dir = 8; icon_state = "red" }, /area/almayer/lifeboat_pumps/south2) -"uHT" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +"uHZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/machinery/door/airlock/almayer/generic/press{ + dir = 1; + name = "\improper Combat Correspondent Room" }, -/area/almayer/maint/lower/s_bow) -"uIa" = ( /turf/open/floor/almayer{ - icon_state = "greencorner" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/command/combat_correspondent) "uIv" = ( /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"uIw" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_m_s) "uIA" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) +"uIF" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "uII" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -72034,19 +72163,24 @@ icon_state = "test_floor4" }, /area/almayer/squads/alpha_bravo_shared) -"uJb" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/airlock{ - pixel_y = -32 +"uIX" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uIZ" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/sign/safety/high_voltage{ + pixel_x = 32; + pixel_y = 7 }, -/obj/structure/sign/safety/hazard{ - pixel_x = 15; - pixel_y = -32 +/obj/structure/sign/safety/fire_haz{ + pixel_x = 32; + pixel_y = -8 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/maint/hull/lower/l_f_s) "uJk" = ( /obj/structure/prop/almayer/name_stencil{ icon_state = "almayer4" @@ -72055,6 +72189,25 @@ icon_state = "outerhull_dir" }, /area/space) +"uJr" = ( +/obj/structure/machinery/door_control{ + id = "laddersouthwest"; + name = "South West Ladders Shutters"; + pixel_y = -21; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 + }, +/obj/structure/sign/safety/stairs{ + pixel_x = 15; + pixel_y = -32 + }, +/obj/structure/sign/safety/west{ + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_fore_hallway) "uJs" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -72064,13 +72217,18 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/main_office) -"uJM" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 +"uJP" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +/turf/open/floor/almayer{ + icon_state = "mono" + }, +/area/almayer/medical/upper_medical) +"uJT" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "uJU" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -72105,11 +72263,13 @@ }, /area/almayer/living/gym) "uKl" = ( -/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/light/small{ + dir = 8 + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_f_s) "uKv" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/device/multitool{ @@ -72120,12 +72280,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"uKH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "uKV" = ( /obj/structure/sign/safety/storage{ pixel_x = 32; @@ -72141,26 +72295,15 @@ /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_point_defense) -"uLG" = ( -/obj/structure/closet/crate/freezer{ - desc = "A freezer crate. Someone has written 'open on christmas' in marker on the top." - }, -/obj/item/reagent_container/food/snacks/mre_pack/xmas2, -/obj/item/reagent_container/food/snacks/mre_pack/xmas1, -/obj/item/reagent_container/food/snacks/mre_pack/xmas3, +"uLs" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/s_stern) +/area/almayer/hallways/lower/starboard_aft_hallway) "uMc" = ( /obj/structure/window/framed/almayer/hull, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering/starboard) -"uMf" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) "uMj" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -72197,24 +72340,18 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"uNf" = ( -/obj/structure/sign/safety/conference_room{ - pixel_y = 32 +"uNd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/maint/hull/upper/u_f_s) "uNg" = ( /obj/structure/machinery/cryopod, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/living/bridgebunks) -"uNp" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = -30 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) "uNq" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/light{ @@ -72229,10 +72366,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"uNz" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) "uNB" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -72254,17 +72387,14 @@ icon_state = "blue" }, /area/almayer/living/basketball) -"uNQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 +"uNO" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/hallways/lower/starboard_fore_hallway) "uNV" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22" @@ -72274,14 +72404,6 @@ "uOi" = ( /turf/closed/wall/almayer/outer, /area/almayer/lifeboat_pumps/south2) -"uOE" = ( -/obj/structure/pipes/vents/pump{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "uOJ" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer{ @@ -72294,15 +72416,18 @@ icon_state = "blue" }, /area/almayer/living/basketball) -"uPE" = ( +"uPB" = ( +/obj/structure/machinery/light, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"uPN" = ( -/obj/item/tool/wirecutters/clippers, +/area/almayer/hallways/lower/port_fore_hallway) +"uPD" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/upper/u_m_p) "uPP" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ dir = 2; @@ -72313,13 +72438,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/lower) -"uPQ" = ( -/obj/item/weapon/dart/green, -/obj/structure/dartboard{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "uPW" = ( /obj/structure/bed/chair{ dir = 4 @@ -72328,15 +72446,19 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"uPX" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" +"uQg" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"uQi" = ( -/turf/open/floor/almayer{ - icon_state = "green" +/obj/effect/projector{ + name = "Almayer_Down3"; + vector_x = 1; + vector_y = -102 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/almayer{ + allow_construction = 0 }, /area/almayer/hallways/upper/aft_hallway) "uQm" = ( @@ -72357,6 +72479,31 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) +"uQp" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_stern) +"uQE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"uRe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/stern_hallway) +"uRh" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "uRo" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -72389,12 +72536,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"uRD" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) "uRM" = ( /obj/structure/bed{ can_buckle = 0 @@ -72422,14 +72563,6 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"uRR" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Brig" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/s_bow) "uRY" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -72463,16 +72596,16 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"uSI" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "uSS" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/almayer{ icon_state = "dark_sterile" }, /area/almayer/medical/lockerroom) -"uSU" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "uSW" = ( /obj/structure/stairs/perspective{ dir = 4; @@ -72487,31 +72620,13 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) -"uSZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, +"uTc" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) -"uTk" = ( -/obj/structure/largecrate/random/secure, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"uTs" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/obj/structure/machinery/door/airlock/almayer/maint/reinforced, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/p_bow) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) "uTv" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -72520,13 +72635,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/bravo) -"uTE" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "uTN" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, @@ -72534,16 +72642,10 @@ icon_state = "mono" }, /area/almayer/living/pilotbunks) -"uTP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/machinery/door/firedoor/border_only/almayer{ - dir = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_aft_hallway) +"uTS" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "uTU" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -72574,6 +72676,10 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) +"uUa" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "uUe" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -72590,28 +72696,6 @@ icon_state = "cargo" }, /area/almayer/engineering/upper_engineering/port) -"uUf" = ( -/obj/structure/surface/table/almayer, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = -7; - pixel_y = 9 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = 9 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_x = -9; - pixel_y = -4 - }, -/obj/item/prop/helmetgarb/prescription_bottle{ - pixel_y = -2 - }, -/obj/item/reagent_container/pill/happy, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) "uUi" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -72664,6 +72748,10 @@ }, /turf/open/floor/plating, /area/almayer/engineering/upper_engineering/port) +"uUD" = ( +/obj/structure/largecrate/supply/weapons/pistols, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "uVc" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 1 @@ -72678,30 +72766,16 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"uVg" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "uVh" = ( /obj/structure/filingcabinet/seeds, /turf/open/floor/almayer{ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"uVp" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) +"uVi" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "uVv" = ( /obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ dir = 1 @@ -72710,6 +72784,18 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"uVx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/almayer{ + icon_state = "dark_sterile" + }, +/area/almayer/maint/hull/upper/u_a_s) "uVA" = ( /turf/open/floor/almayer{ dir = 4; @@ -72741,29 +72827,15 @@ icon_state = "plate" }, /area/almayer/living/pilotbunks) -"uVZ" = ( -/turf/open/floor/almayer{ - dir = 5; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "uWc" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer{ icon_state = "emeraldfull" }, /area/almayer/living/briefing) -"uWm" = ( -/obj/effect/projector{ - name = "Almayer_Up4"; - vector_x = -19; - vector_y = 104 - }, -/turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_midship_hallway) +"uWv" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/upper/stairs) "uWV" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -72813,16 +72885,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/engine_core) -"uXm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "uXL" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -72832,13 +72894,6 @@ icon_state = "tcomms" }, /area/almayer/engineering/upper_engineering/starboard) -"uXU" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, -/obj/item/reagent_container/food/snacks/sliceable/pizza/mushroompizza, -/obj/item/reagent_container/food/snacks/sliceable/pizza/vegetablepizza, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) "uYa" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 @@ -72871,22 +72926,20 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"uYM" = ( -/obj/structure/machinery/status_display{ - pixel_y = -30 +"uYP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/hallways/lower/port_fore_hallway) -"uZm" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/hallways/lower/port_midship_hallway) +"uZb" = ( +/turf/open/floor/almayer, +/area/almayer/maint/upper/mess) "uZo" = ( /obj/structure/bed/stool, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -72912,12 +72965,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"uZI" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "bluecorner" - }, -/area/almayer/hallways/upper/aft_hallway) "uZV" = ( /obj/structure/reagent_dispensers/fueltank/gas/methane{ anchored = 1 @@ -72941,49 +72988,30 @@ icon_state = "test_floor4" }, /area/almayer/living/basketball) -"vaq" = ( -/obj/structure/disposalpipe/junction{ +"vag" = ( +/obj/structure/prop/invuln/overhead_pipe{ dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) -"vaM" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 - }, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" + pixel_y = 13 }, -/area/almayer/hallways/lower/starboard_umbilical) -"vaQ" = ( -/obj/structure/machinery/door/airlock/almayer/medical{ - dir = 1; - name = "Medical Storage" +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"vaA" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 10; + icon_state = "blue" }, -/area/almayer/medical/lower_medical_medbay) -"vaV" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/hallways/upper/aft_hallway) +"vaH" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "vaZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "SW-out" @@ -73005,16 +73033,23 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"vbu" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/weldpack, -/obj/item/storage/toolbox/mechanical, -/obj/item/reagent_container/spray/cleaner, +"vbk" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_s) +"vbq" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddernortheast"; + name = "\improper North East Ladders Shutters" + }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/hallways/lower/starboard_midship_hallway) "vbB" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/lifeboat_pumps/south1) @@ -73034,6 +73069,12 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) +"vbJ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "vbM" = ( /obj/structure/flora/pottedplant{ desc = "It is made of Fiberbush(tm). It contains asbestos."; @@ -73077,18 +73118,25 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) -"vbZ" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"vcg" = ( +/obj/structure/machinery/light/small{ + dir = 4 }, -/obj/structure/pipes/vents/scrubber{ - dir = 1 +/obj/structure/largecrate/random/barrel/green, +/obj/structure/sign/safety/maint{ + pixel_x = 15; + pixel_y = 32 }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "plate" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/maint/hull/upper/s_bow) +"vcl" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "vcm" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = -30 @@ -73119,22 +73167,41 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) -"vcI" = ( -/obj/effect/decal/cleanable/blood/oil/streak, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"vcL" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 2; + id = "bot_armory"; + name = "\improper Armory Shutters" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"vcO" = ( -/obj/structure/machinery/light{ - dir = 4 +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/machinery/door/airlock/almayer/security/glass/reinforced{ + dir = 2; + name = "\improper Armory" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -2; + pixel_y = 1 }, /turf/open/floor/almayer{ - dir = 9; - icon_state = "red" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/shipboard/brig/armory) +"vdc" = ( +/obj/item/tool/wet_sign, +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) "vdl" = ( /obj/structure/window/reinforced/ultra{ pixel_y = -12 @@ -73147,6 +73214,22 @@ icon_state = "plating_striped" }, /area/almayer/shipboard/brig/execution) +"vdB" = ( +/obj/item/reagent_container/food/drinks/cans/souto, +/turf/open/floor/almayer{ + icon_state = "cargo_arrow" + }, +/area/almayer/hallways/lower/repair_bay) +"vdI" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "vdL" = ( /obj/structure/sign/safety/reception{ pixel_x = -17; @@ -73182,26 +73265,20 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"vdT" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"vef" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ + name = "\improper Port Viewing Room" }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/upper/u_m_s) +/area/almayer/maint/hull/upper/u_f_p) "ven" = ( /obj/structure/bed/chair, /turf/open/floor/almayer{ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"veq" = ( -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "veu" = ( /obj/structure/surface/table/almayer, /obj/item/trash/USCMtray{ @@ -73212,27 +73289,16 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) -"veO" = ( -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = 6 - }, -/obj/item/weapon/gun/rifle/l42a, -/obj/item/weapon/gun/rifle/l42a{ - pixel_y = -6 - }, +"veN" = ( +/obj/item/stool, +/obj/effect/landmark/yautja_teleport, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_m_s) -"veW" = ( -/obj/structure/machinery/door/airlock/almayer/generic/glass{ - name = "\improper Passenger Cryogenics Bay" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/maint/upper/u_m_s) +"veX" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/shipboard/panic) "vfa" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -73245,6 +73311,33 @@ icon_state = "emerald" }, /area/almayer/squads/charlie) +"vfc" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = -28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vfn" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/item/reagent_container/glass/bucket/mopbucket, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 14 + }, +/obj/structure/janitorialcart, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/lower/s_bow) "vfo" = ( /obj/structure/machinery/door/airlock/almayer/secure/reinforced{ dir = 2; @@ -73290,16 +73383,6 @@ dir = 1 }, /area/almayer/medical/containment/cell) -"vfS" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 2 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) "vgi" = ( /obj/structure/pipes/vents/scrubber, /turf/open/floor/almayer, @@ -73381,6 +73464,12 @@ icon_state = "red" }, /area/almayer/command/lifeboat) +"vgN" = ( +/obj/structure/machinery/light, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "vgO" = ( /turf/closed/wall/almayer/research/containment/wall/east, /area/almayer/medical/containment/cell) @@ -73397,6 +73486,31 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) +"vgY" = ( +/obj/structure/largecrate/random/case/double, +/obj/item/tool/wet_sign{ + pixel_y = 18 + }, +/obj/item/trash/cigbutt/ucigbutt{ + desc = "A handful of rounds to reload on the go."; + icon = 'icons/obj/items/weapons/guns/handful.dmi'; + icon_state = "bullet_2"; + name = "handful of pistol bullets (9mm)"; + pixel_x = -8; + pixel_y = 10 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"vhb" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 8; + req_one_access = list(2,34,30) + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_p) "vhe" = ( /obj/structure/filingcabinet{ density = 0; @@ -73422,10 +73536,15 @@ /obj/structure/machinery/disposal, /turf/open/floor/almayer, /area/almayer/living/offices/flight) -"vhA" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +"vhM" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "vhR" = ( /obj/structure/flora/pottedplant{ desc = "It is made of Fiberbush(tm). It contains asbestos."; @@ -73471,6 +73590,15 @@ icon_state = "plate" }, /area/almayer/medical/morgue) +"vij" = ( +/obj/structure/machinery/firealarm{ + pixel_y = 28 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "vil" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -73548,6 +73676,25 @@ icon_state = "plate" }, /area/almayer/squads/bravo) +"viV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/poddoor/almayer{ + dir = 4; + id = "hangarentrancenorth"; + name = "\improper North Hangar Podlock" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) +"vja" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "vjb" = ( /obj/structure/sign/safety/restrictedarea{ pixel_x = -17 @@ -73576,29 +73723,19 @@ icon_state = "plating" }, /area/almayer/shipboard/port_missiles) -"vjk" = ( +"vji" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/obj/item/fuel_cell, /obj/structure/machinery/camera/autoname/almayer{ + dir = 1; name = "ship-grade camera" }, -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/structure/sign/safety/hazard{ - pixel_y = 32 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/almayer/hallways/lower/starboard_umbilical) +/area/almayer/engineering/lower/engine_core) "vjv" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -73622,45 +73759,20 @@ icon_state = "green" }, /area/almayer/living/grunt_rnr) -"vjG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "orange" - }, -/area/almayer/hallways/lower/port_umbilical) "vjK" = ( /obj/effect/decal/cleanable/dirt, /turf/open/floor/almayer, /area/almayer/shipboard/port_missiles) -"vjS" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - layer = 5.1; - name = "water pipe" - }, +"vjL" = ( /obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; id = "Hangar Lockdown"; name = "\improper Hangar Lockdown Blast Door" }, /turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/lower/constr) -"vjT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/hallways/lower/vehiclehangar) "vjW" = ( /obj/structure/reagent_dispensers/watertank{ anchored = 1 @@ -73695,27 +73807,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/medical_science) -"vky" = ( -/obj/structure/machinery/door/poddoor/almayer/open{ - id = "Brig Lockdown Shutters"; - name = "\improper Brig Lockdown Shutter" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/p_bow) -"vkI" = ( -/obj/item/coin/silver{ - desc = "A small coin, bearing the falling falcons insignia."; - name = "falling falcons challenge coin" - }, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "vkM" = ( /obj/structure/machinery/door/airlock/almayer/security/glass{ dir = 1; @@ -73729,26 +73820,14 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/general_equipment) -"vkO" = ( -/obj/structure/closet, -/obj/item/stack/sheet/glass/large_stack, -/obj/item/device/lightreplacer, -/obj/item/reagent_container/spray/cleaner, -/obj/item/stack/rods{ - amount = 40 - }, -/obj/item/tool/weldingtool, -/obj/item/clothing/glasses/welding, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/lower/s_bow) "vkQ" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "orange" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/lower/l_f_s) "vkR" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -73759,9 +73838,27 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"vkV" = ( -/obj/effect/landmark/start/liaison, +"vkW" = ( +/obj/structure/sink{ + pixel_y = 24 + }, /turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) +"vlf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/medical/medical_science) +"vlj" = ( +/obj/structure/janitorialcart, +/obj/item/tool/mop, +/turf/open/floor/almayer{ + icon_state = "plate" + }, /area/almayer/maint/hull/upper/u_m_p) "vlk" = ( /obj/structure/closet/emcloset, @@ -73837,13 +73934,6 @@ icon_state = "plate" }, /area/almayer/living/port_emb) -"vlR" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "vlX" = ( /obj/structure/machinery/cm_vending/sorted/cargo_guns/squad_prep, /turf/open/floor/almayer{ @@ -73866,15 +73956,6 @@ icon_state = "cargo" }, /area/almayer/hallways/hangar) -"vmq" = ( -/turf/open/floor/almayer, -/area/almayer/maint/hull/lower/l_m_s) -"vmu" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "vmE" = ( /turf/open/floor/almayer{ icon_state = "orangecorner" @@ -73913,12 +73994,35 @@ icon_state = "red" }, /area/almayer/shipboard/port_missiles) -"vno" = ( +"vmZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray, +/obj/item/reagent_container/food/drinks/bottle/whiskey, +/obj/item/toy/deck{ + pixel_x = -9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) +"vna" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" + icon_state = "test_floor4" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/squads/req) +"vnj" = ( +/obj/structure/largecrate/random/case/small, +/obj/item/device/taperecorder{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = -9; + pixel_y = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "vnD" = ( /obj/structure/barricade/handrail{ dir = 1; @@ -73928,35 +74032,45 @@ icon_state = "plate" }, /area/almayer/living/gym) -"vnY" = ( -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) -"vnZ" = ( -/obj/structure/machinery/light, -/obj/structure/disposalpipe/segment{ +"vnE" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"vnU" = ( +/obj/structure/closet/emcloset, /turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) -"vop" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + icon_state = "plate" }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silvercorner" +/area/almayer/maint/hull/upper/s_bow) +"voo" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 }, -/area/almayer/hallways/lower/repair_bay) +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "vor" = ( -/obj/effect/decal/cleanable/blood, -/obj/structure/prop/broken_arcade, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) +"voU" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "19;21" + }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/upper/u_m_p) +/area/almayer/squads/req) "vpe" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/machinery/door/airlock/almayer/engineering/reinforced/OT{ @@ -73968,10 +74082,11 @@ }, /area/almayer/engineering/lower/workshop/hangar) "vpf" = ( -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "vpn" = ( /turf/open/floor/almayer{ dir = 9; @@ -73989,22 +74104,15 @@ /obj/item/clothing/mask/cigarette/weed, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/port) -"vpI" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) -"vpT" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/computer/cameras/almayer{ - dir = 1 +"vpK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/shipboard/panic) +/area/almayer/hallways/lower/port_fore_hallway) "vpV" = ( /turf/open/floor/almayer{ dir = 10; @@ -74030,19 +74138,6 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/processing) -"vqz" = ( -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/hallways/lower/port_fore_hallway) "vqC" = ( /obj/structure/pipes/vents/pump{ dir = 4 @@ -74073,6 +74168,17 @@ icon_state = "dark_sterile" }, /area/almayer/engineering/laundry) +"vqT" = ( +/obj/effect/projector{ + name = "Almayer_Down2"; + vector_x = 1; + vector_y = -100 + }, +/turf/open/floor/almayer{ + allow_construction = 0; + icon_state = "plate" + }, +/area/almayer/hallways/upper/aft_hallway) "vqW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -74112,6 +74218,10 @@ "vra" = ( /turf/closed/wall/almayer, /area/almayer/squads/charlie_delta_shared) +"vrb" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "vrx" = ( /obj/structure/machinery/status_display{ pixel_x = -32; @@ -74119,6 +74229,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) +"vrG" = ( +/obj/item/ammo_box/magazine/misc/mre/empty{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/reagent_container/food/drinks/cans/aspen{ + pixel_x = 11; + pixel_y = -3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_stern) "vrI" = ( /obj/structure/machinery/cryopod{ layer = 3.1; @@ -74168,19 +74289,10 @@ icon_state = "bluecorner" }, /area/almayer/living/briefing) -"vrZ" = ( -/obj/structure/largecrate/machine/bodyscanner, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"vsd" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_m_s) +"vsa" = ( +/obj/structure/barricade/handrail, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_stern) "vse" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -74190,32 +74302,10 @@ icon_state = "cargo" }, /area/almayer/living/offices) -"vsf" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/door_control{ - id = "laddernortheast"; - name = "North East Ladders Shutters"; - pixel_y = -25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 - }, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "vsh" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) -"vsi" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/stern) "vsz" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 8; @@ -74223,6 +74313,19 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) +"vsB" = ( +/obj/structure/sign/safety/analysis_lab{ + pixel_y = 26 + }, +/obj/structure/sign/safety/terminal{ + pixel_x = 15; + pixel_y = 26 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) "vsF" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -74233,6 +74336,20 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"vsK" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32; + pixel_y = 6 + }, +/obj/structure/sign/safety/reduction{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) "vsM" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/storage/firstaid/toxin{ @@ -74253,6 +74370,15 @@ icon_state = "silver" }, /area/almayer/command/cichallway) +"vtg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + icon_state = "silvercorner" + }, +/area/almayer/hallways/upper/aft_hallway) "vti" = ( /turf/open/floor/almayer{ icon_state = "mono" @@ -74276,6 +74402,19 @@ icon_state = "rasputin3" }, /area/almayer/powered/agent) +"vts" = ( +/obj/item/reagent_container/glass/bucket{ + pixel_x = 4; + pixel_y = 9 + }, +/obj/item/tool/shovel/spade{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_s) "vtx" = ( /obj/structure/machinery/door/airlock/almayer/generic{ name = "\improper Bathroom" @@ -74301,12 +74440,33 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/perma) -"vtJ" = ( -/obj/structure/closet/emcloset, +"vtH" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) +"vtL" = ( /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/lower/l_f_p) +"vtV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"vtZ" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "vub" = ( /turf/closed/wall/almayer, /area/almayer/shipboard/sea_office) @@ -74315,6 +74475,27 @@ /obj/effect/landmark/late_join/alpha, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/alpha) +"vuw" = ( +/obj/structure/machinery/door/airlock/multi_tile/almayer/almayer/glass{ + access_modified = 1; + dir = 2; + name = "\improper Requisitions Break Room"; + req_one_access_txt = "19;21" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/squads/req) "vuA" = ( /obj/structure/window/framed/almayer, /turf/open/floor/plating, @@ -74328,16 +74509,6 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"vuE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/upper/aft_hallway) "vuF" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ access_modified = 1; @@ -74371,15 +74542,6 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"vuV" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_aft_hallway) "vuZ" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -74389,6 +74551,10 @@ icon_state = "redcorner" }, /area/almayer/shipboard/weapon_room) +"vvj" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "vvp" = ( /obj/structure/pipes/vents/pump, /obj/structure/sign/safety/intercom{ @@ -74435,25 +74601,12 @@ }, /area/almayer/engineering/upper_engineering/starboard) "vvH" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"vvX" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 2; - id = "OuterShutter"; - name = "\improper Saferoom Shutters" - }, +/obj/structure/machinery/light, /turf/open/floor/almayer{ - icon_state = "test_floor4" + dir = 6; + icon_state = "orange" }, -/area/almayer/shipboard/panic) +/area/almayer/hallways/upper/stern_hallway) "vvY" = ( /obj/structure/sink{ dir = 1; @@ -74508,16 +74661,22 @@ /turf/open/floor/plating/plating_catwalk, /area/almayer/living/grunt_rnr) "vwJ" = ( -/obj/structure/largecrate/random/case/double, -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/machinery/shower{ + pixel_y = 16 }, -/area/almayer/maint/hull/upper/u_m_p) +/obj/item/tool/soap, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "vwU" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 8; + req_one_access = list(2,34,30) + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_m_s) "vwV" = ( /obj/structure/machinery/door/poddoor/shutters/almayer/uniform_vendors{ dir = 4 @@ -74580,17 +74739,6 @@ }, /turf/open/floor/almayer, /area/almayer/squads/alpha_bravo_shared) -"vxY" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "vyg" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/secure_data, @@ -74598,14 +74746,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"vyh" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "vyi" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -74627,12 +74767,6 @@ icon_state = "cargo" }, /area/almayer/living/offices) -"vyr" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "vyu" = ( /obj/structure/bed/sofa/south/white/right, /turf/open/floor/almayer{ @@ -74640,9 +74774,6 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"vyB" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) "vyH" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -74652,13 +74783,27 @@ "vyI" = ( /turf/open/floor/almayer, /area/almayer/engineering/upper_engineering/port) -"vzi" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 3 +"vyS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 4; + pixel_y = -3 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) +"vyZ" = ( +/obj/structure/largecrate/guns/merc{ + name = "\improper dodgy crate" + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"vze" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_fore_hallway) "vzj" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 8 @@ -74688,24 +74833,9 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/cells) -"vzB" = ( -/obj/structure/machinery/light/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) "vzK" = ( /turf/open/floor/almayer, /area/almayer/engineering/ce_room) -"vzO" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - req_one_access = null; - req_one_access_txt = "2;30;34" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/upper/u_m_s) "vzP" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/cups, @@ -74725,17 +74855,6 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"vAg" = ( -/obj/structure/largecrate/random/barrel/blue, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = -32 - }, -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "vAq" = ( /obj/structure/bed/chair{ dir = 1 @@ -74745,20 +74864,24 @@ icon_state = "orange" }, /area/almayer/hallways/hangar) -"vAx" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"vAu" = ( +/obj/structure/sign/safety/life_support{ + pixel_x = 8; + pixel_y = 32 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_p) -"vAz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/area/almayer/maint/hull/upper/u_a_s) +"vAw" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/lower/constr) +"vAB" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/lower/s_bow) "vAE" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -74813,6 +74936,12 @@ icon_state = "silver" }, /area/almayer/command/airoom) +"vBa" = ( +/obj/structure/bed/chair/comfy/orange, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "vBm" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/main_office) @@ -74828,10 +74957,6 @@ icon_state = "silver" }, /area/almayer/living/briefing) -"vBC" = ( -/obj/structure/pipes/vents/pump, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) "vBJ" = ( /obj/structure/surface/table/almayer, /obj/item/tool/pen, @@ -74892,14 +75017,53 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) -"vCE" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) +"vCB" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "plating_striped" + }, +/area/almayer/maint/hull/lower/l_a_p) +"vCM" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/airlock{ + pixel_x = 15; + pixel_y = 32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_umbilical) "vCO" = ( /obj/effect/landmark/start/bridge, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/bridgebunks) +"vCW" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) "vDa" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -74908,53 +75072,35 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/hydroponics) -"vDh" = ( -/obj/structure/largecrate/random, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) -"vDo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"vDk" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"vDt" = ( -/obj/item/stool, -/obj/effect/landmark/yautja_teleport, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/upper/u_m_s) -"vDz" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"vDN" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_m_p) -"vDR" = ( +"vDK" = ( /obj/structure/surface/rack, -/obj/item/tool/wet_sign, -/obj/item/tool/wet_sign, +/obj/effect/spawner/random/toolbox, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/hallways/lower/vehiclehangar) +"vDZ" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/lower/l_m_s) "vEf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -74970,6 +75116,10 @@ /obj/effect/landmark/start/synthetic, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/synthcloset) +"vEq" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "vEr" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -74981,15 +75131,20 @@ }, /area/almayer/medical/medical_science) "vEv" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "laddernorthwest"; - name = "\improper North West Ladders Shutters" +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 }, -/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/maint/hull/lower/l_a_p) "vEx" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -75013,10 +75168,28 @@ /obj/structure/machinery/vending/coffee, /turf/open/floor/almayer, /area/almayer/living/briefing) -"vEI" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +"vEQ" = ( +/obj/structure/surface/rack, +/obj/item/tool/shovel/etool{ + pixel_x = 6 + }, +/obj/item/tool/shovel/etool, +/obj/item/tool/wirecutters, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"vES" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = -30 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "vEV" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out"; @@ -75027,6 +75200,18 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"vFa" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_umbilical) "vFn" = ( /obj/structure/machinery/light/small, /turf/open/floor/almayer{ @@ -75034,15 +75219,10 @@ icon_state = "plating" }, /area/almayer/shipboard/stern_point_defense) -"vFp" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SW-out" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" - }, -/area/almayer/hallways/lower/vehiclehangar) +"vFr" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "vFv" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer{ @@ -75058,38 +75238,46 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north1) -"vFy" = ( +"vFB" = ( /obj/effect/decal/warning_stripes{ - icon_state = "NW-out" + icon_state = "S" }, -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/sign/safety/stairs{ - pixel_x = -17 +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/upper/p_bow) "vFH" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/engineering/lower) -"vFI" = ( -/obj/structure/largecrate/random/secure, -/obj/item/weapon/baseballbat/metal{ - pixel_x = -2; - pixel_y = 8 +"vFS" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom/normandy{ + layer = 3.5 }, -/obj/item/clothing/glasses/sunglasses{ - pixel_y = 5 +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/offices/flight) +"vGt" = ( +/turf/open/floor/almayer{ + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) +"vGw" = ( +/obj/structure/largecrate/random/barrel/red, +/obj/structure/machinery/light/small{ + dir = 8 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/upper/u_m_s) "vGA" = ( /obj/structure/bed/sofa/south/grey/right, /turf/open/floor/almayer{ @@ -75097,6 +75285,14 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"vGC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/u_m_s) "vGG" = ( /obj/structure/bed/chair/comfy/bravo, /turf/open/floor/almayer{ @@ -75112,6 +75308,13 @@ icon_state = "dark_sterile" }, /area/almayer/living/numbertwobunks) +"vGV" = ( +/obj/structure/largecrate/supply, +/obj/item/tool/crowbar, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/upper/u_f_p) "vHa" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/computer/ares_console{ @@ -75134,33 +75337,6 @@ /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, /area/almayer/living/port_emb) -"vHn" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_m_s) -"vHp" = ( -/obj/structure/surface/table/almayer, -/obj/item/reagent_container/food/drinks/cans/waterbottle{ - pixel_x = 9; - pixel_y = 3 - }, -/obj/item/prop/helmetgarb/flair_io{ - pixel_x = -10; - pixel_y = 6 - }, -/obj/item/prop/magazine/boots/n160{ - pixel_x = -6; - pixel_y = -5 - }, -/obj/structure/transmitter/rotary{ - name = "Flight Deck Telephone"; - phone_category = "Almayer"; - phone_id = "Flight Deck"; - pixel_y = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/repair_bay) "vHq" = ( /obj/item/device/assembly/mousetrap/armed, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -75235,6 +75411,20 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/starboard) +"vHL" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "vHO" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -75258,6 +75448,15 @@ icon_state = "redfull" }, /area/almayer/command/cic) +"vHZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "vIf" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 1; @@ -75267,26 +75466,28 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/upper_medical) -"vIg" = ( -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_a_s) -"vIr" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/upper/aft_hallway) "vIu" = ( /obj/structure/machinery/light{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/command/cichallway) +"vIE" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"vJd" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) "vJg" = ( /obj/structure/machinery/light/small, /turf/open/floor/almayer{ @@ -75304,10 +75505,41 @@ icon_state = "red" }, /area/almayer/shipboard/navigation) -"vJR" = ( -/obj/structure/barricade/handrail, +"vJq" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) +"vJx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/hallways/lower/port_midship_hallway) +"vJJ" = ( +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_s) +"vJO" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/maint/hull/lower/l_f_s) "vJV" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -75350,6 +75582,16 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"vKo" = ( +/obj/structure/sign/safety/hvac_old{ + pixel_x = 8; + pixel_y = 32 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) "vKB" = ( /obj/structure/closet/secure_closet/guncabinet/red/mp_armory_m4ra_rifle, /obj/structure/machinery/light/small{ @@ -75357,12 +75599,61 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/armory) -"vKI" = ( -/obj/structure/machinery/light{ - dir = 1 +"vKG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/spiderling_remains{ + pixel_x = 18; + pixel_y = -5 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/obj/effect/decal/cleanable/ash{ + pixel_x = 11; + pixel_y = 25 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "sterile_green_corner" + }, +/area/almayer/medical/lower_medical_medbay) +"vKU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) +"vKV" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) +"vLd" = ( +/obj/structure/surface/table/almayer, +/obj/item/organ/lungs/prosthetic, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) +"vLe" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "vLg" = ( /obj/item/trash/uscm_mre, /obj/structure/bed/chair/comfy/charlie, @@ -75385,15 +75676,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/upper_medical) -"vLp" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) "vLA" = ( /obj/effect/decal/warning_stripes{ icon_state = "W"; @@ -75408,13 +75690,23 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/charlie) -"vMb" = ( -/obj/item/stool{ - pixel_x = -15; - pixel_y = 6 +"vLO" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/maint/hull/lower/l_f_s) +"vLX" = ( +/obj/item/robot_parts/arm/l_arm, +/obj/item/robot_parts/leg/l_leg, +/obj/item/robot_parts/arm/r_arm, +/obj/item/robot_parts/leg/r_leg, +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/cobweb{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/synthcloset) "vMo" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_four) @@ -75422,15 +75714,39 @@ /obj/effect/landmark/start/otech, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/offices) -"vMA" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"vMt" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" }, -/obj/structure/machinery/light{ +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) +"vMv" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_a_s) +"vMw" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, /turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/upper/u_f_p) "vME" = ( /turf/open/floor/almayer{ dir = 9; @@ -75470,20 +75786,6 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"vMQ" = ( -/obj/docking_port/stationary/escape_pod/north, -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_p) -"vMU" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "redcorner" - }, -/area/almayer/hallways/lower/port_fore_hallway) "vNp" = ( /obj/structure/sign/safety/three{ pixel_x = -17 @@ -75501,39 +75803,35 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie) +"vNE" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "vNW" = ( /turf/open/floor/almayer/uscm/directional{ dir = 9 }, /area/almayer/command/cic) +"vOb" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) "vOh" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north2) -"vOw" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/toolbox, -/obj/effect/spawner/random/tool, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/lower/l_m_s) "vOy" = ( /turf/closed/wall/almayer/white/reinforced, /area/almayer/medical/medical_science) -"vOG" = ( -/obj/structure/largecrate/supply/ammo/m41a/half, -/obj/structure/largecrate/supply/ammo/pistol/half{ - pixel_y = 12 +"vOK" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/p_bow) -"vOM" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/lower/l_m_p) "vON" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -75552,38 +75850,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/upper_medical) -"vOV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"vOY" = ( -/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "2;7" - }, -/obj/structure/machinery/door/poddoor/almayer/open{ - dir = 4; - id = "CIC Lockdown"; - name = "\improper Combat Information Center Blast Door" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/upper/mess) -"vOZ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_midship_hallway) "vPf" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/locked{ @@ -75657,15 +75923,6 @@ icon_state = "redfull" }, /area/almayer/engineering/lower/workshop/hangar) -"vPW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/vehiclehangar) "vQe" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_Down2"; @@ -75685,6 +75942,15 @@ icon_state = "silvercorner" }, /area/almayer/command/securestorage) +"vQo" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "vQq" = ( /obj/structure/surface/table/almayer, /obj/item/device/camera, @@ -75721,6 +75987,18 @@ dir = 10 }, /area/almayer/command/cic) +"vRp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "laddersouthwest"; + name = "\improper South West Ladders Shutters" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_fore_hallway) "vRu" = ( /obj/structure/surface/rack{ layer = 2.5 @@ -75735,16 +76013,22 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"vRJ" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1; - name = "\improper Emergency Air Storage" +"vRF" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/tray, +/obj/item/tool/kitchen/tray{ + pixel_y = 6 + }, +/obj/item/reagent_container/food/snacks/sliceable/bread{ + pixel_y = 8 + }, +/obj/item/tool/kitchen/knife{ + pixel_x = 6 }, -/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_f_p) "vRR" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -75758,6 +76042,12 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) +"vRW" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_a_p) "vRX" = ( /obj/structure/surface/table/almayer, /obj/item/book/manual/medical_diagnostics_manual, @@ -75771,6 +76061,12 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/upper_medical) +"vSh" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/plating/almayer{ + allow_construction = 0 + }, +/area/almayer/hallways/upper/aft_hallway) "vSl" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -75793,21 +76089,12 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"vSr" = ( -/obj/structure/largecrate/random/case/double, -/obj/item/tool/wet_sign{ - pixel_y = 18 - }, -/obj/item/trash/cigbutt/ucigbutt{ - desc = "A handful of rounds to reload on the go."; - icon = 'icons/obj/items/weapons/guns/handful.dmi'; - icon_state = "bullet_2"; - name = "handful of pistol bullets (9mm)"; - pixel_x = -8; - pixel_y = 10 +"vSu" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/lower/port_umbilical) "vSE" = ( /obj/structure/closet/secure_closet/personal, /turf/open/floor/almayer{ @@ -75873,13 +76160,6 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering) -"vTM" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/toolbox, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/vehiclehangar) "vTS" = ( /obj/structure/machinery/light{ pixel_x = 16 @@ -75910,16 +76190,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"vTX" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_y = -32 - }, -/obj/structure/sign/safety/manualopenclose{ - pixel_x = 15; - pixel_y = -32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) "vUb" = ( /obj/effect/landmark/start/marine/alpha, /obj/effect/landmark/late_join/alpha, @@ -75939,33 +76209,28 @@ /obj/structure/machinery/light, /turf/open/floor/almayer, /area/almayer/command/lifeboat) -"vUJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"vUs" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 }, -/area/almayer/maint/hull/lower/l_a_p) -"vUO" = ( -/obj/structure/machinery/light{ - dir = 8 +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "green" + icon_state = "test_floor4" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/lower/constr) "vUP" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/cic_hallway) +"vUW" = ( +/obj/item/weapon/dart/green, +/obj/structure/dartboard{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "vVb" = ( /obj/structure/machinery/cm_vending/gear/tl{ density = 0; @@ -76001,14 +76266,12 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) -"vVy" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +"vVD" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/maint/hull/lower/l_m_s) "vVI" = ( /obj/structure/sign/safety/nonpress_0g{ pixel_x = 8; @@ -76028,40 +76291,29 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"vVY" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/upper/u_m_s) -"vVZ" = ( -/obj/structure/machinery/door/airlock/almayer/maint, -/obj/structure/disposalpipe/segment{ - dir = 4 +"vWa" = ( +/obj/structure/mirror{ + pixel_x = 28 }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 }, -/area/almayer/hallways/lower/port_umbilical) -"vWc" = ( -/obj/structure/surface/table/almayer, -/obj/item/device/radio/intercom/normandy{ - layer = 3.5 +/obj/effect/decal/warning_stripes{ + icon_state = "S" }, /turf/open/floor/almayer{ - icon_state = "redfull" - }, -/area/almayer/living/offices/flight) -"vWs" = ( -/obj/structure/largecrate/random/barrel/red, -/obj/effect/decal/warning_stripes{ - icon_state = "W" + icon_state = "dark_sterile" }, -/obj/structure/sign/safety/fire_haz{ - pixel_x = 8; - pixel_y = -32 +/area/almayer/maint/hull/upper/u_a_s) +"vWb" = ( +/obj/structure/machinery/cryopod{ + pixel_y = 6 }, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "cargo" }, -/area/almayer/hallways/lower/vehiclehangar) +/area/almayer/maint/hull/upper/u_m_p) "vWt" = ( /obj/structure/surface/table/almayer, /obj/item/reagent_container/glass/beaker/large, @@ -76187,12 +76439,6 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"vXk" = ( -/turf/open/floor/almayer{ - dir = 8; - icon_state = "red" - }, -/area/almayer/hallways/upper/stern_hallway) "vXo" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -76203,33 +76449,25 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower) -"vXv" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/flora/pottedplant{ - icon_state = "pottedplant_10"; - pixel_y = 14 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) -"vXF" = ( +"vXr" = ( /obj/effect/decal/warning_stripes{ - icon_state = "N"; + icon_state = "NW-out"; + layer = 2.5; pixel_y = 1 }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_umbilical) -"vYd" = ( -/obj/structure/machinery/light{ - dir = 8 +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) +"vXV" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/vehiclehangar) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) +"vYk" = ( +/obj/structure/window/framed/almayer/hull, +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_f_p) "vYm" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer, @@ -76315,6 +76553,14 @@ "vZw" = ( /turf/open/floor/almayer/research/containment/floor2, /area/almayer/medical/containment/cell/cl) +"vZF" = ( +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/stern_hallway) "vZU" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/power/apc/almayer{ @@ -76334,15 +76580,40 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"wac" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 80 +"vZX" = ( +/obj/structure/machinery/light, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out" + }, +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage{ + req_one_access = null; + req_one_access_txt = "7;23;27;102" }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 10; + icon_state = "silver" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/hallways/lower/repair_bay) +"waa" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_p) +"wad" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) +"wal" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "wan" = ( /obj/structure/surface/table/almayer, /obj/item/facepaint/brown, @@ -76351,11 +76622,41 @@ icon_state = "green" }, /area/almayer/living/offices) +"wax" = ( +/obj/item/reagent_container/glass/bucket, +/obj/item/tool/mop{ + pixel_x = -6; + pixel_y = 24 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) "waD" = ( /turf/open/floor/almayer{ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_one) +"waG" = ( +/obj/structure/surface/rack, +/obj/item/clothing/glasses/meson, +/turf/open/floor/almayer{ + icon_state = "red" + }, +/area/almayer/maint/hull/upper/u_a_p) +"waH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) "waJ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -76365,17 +76666,28 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"waV" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1; - pixel_y = 1 +"waS" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -16 }, /turf/open/floor/almayer{ - dir = 8; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/maint/hull/lower/l_m_s) +"waY" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"wbm" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "wbu" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/machinery/camera/autoname/almayer{ @@ -76386,18 +76698,6 @@ icon_state = "mono" }, /area/almayer/living/pilotbunks) -"wby" = ( -/obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ - dir = 1; - name = "\improper Starboard Viewing Room" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_f_s) "wbC" = ( /obj/structure/machinery/atm{ pixel_y = 32 @@ -76451,15 +76751,15 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/operating_room_four) -"wbV" = ( -/obj/structure/machinery/disposal, -/obj/structure/disposalpipe/trunk{ +"wbT" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 8 }, +/obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ - icon_state = "red" + icon_state = "plate" }, -/area/almayer/living/cryo_cells) +/area/almayer/maint/hull/upper/u_f_p) "wbX" = ( /obj/structure/closet/secure_closet/cmdcabinet{ pixel_y = 24 @@ -76479,6 +76779,12 @@ icon_state = "redfull" }, /area/almayer/lifeboat_pumps/south2) +"wcs" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) "wct" = ( /obj/structure/closet/radiation, /turf/open/floor/almayer{ @@ -76486,20 +76792,19 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"wcD" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" +"wcx" = ( +/obj/structure/sign/safety/ammunition{ + pixel_x = 15; + pixel_y = 32 }, -/area/almayer/hallways/lower/port_midship_hallway) -"wcJ" = ( -/obj/structure/machinery/light/small{ - dir = 4 +/obj/structure/sign/safety/hazard{ + pixel_y = 32 }, +/obj/structure/closet/secure_closet/guncabinet/red/armory_m39_submachinegun, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "redfull" }, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/shipboard/panic) "wcN" = ( /obj/structure/machinery/status_display{ pixel_y = 30 @@ -76579,19 +76884,21 @@ /obj/effect/landmark/late_join/charlie, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/charlie) +"wdA" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/stairs) "wdF" = ( /turf/open/floor/almayer{ allow_construction = 0 }, /area/almayer/shipboard/brig/processing) "wdG" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/area/almayer/maint/hull/lower/l_f_p) +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "wdI" = ( /turf/open/floor/almayer{ dir = 1; @@ -76606,18 +76913,15 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/starboard) -"wdQ" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 +"wdN" = ( +/obj/structure/machinery/light{ + dir = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_umbilical) -"wdW" = ( -/obj/structure/machinery/light/small, +/obj/structure/machinery/power/reactor, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/engineering/lower/engine_core) "wed" = ( /obj/structure/surface/table/almayer, /obj/item/storage/belt/utility/full, @@ -76644,24 +76948,6 @@ icon_state = "test_floor4" }, /area/almayer/medical/hydroponics) -"wer" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/repair_bay) -"wes" = ( -/obj/structure/machinery/cm_vending/sorted/medical/marinemed, -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "wex" = ( /obj/structure/sign/safety/bathunisex{ pixel_x = 8; @@ -76694,6 +76980,25 @@ icon_state = "cargo" }, /area/almayer/living/offices) +"weW" = ( +/obj/effect/landmark/start/doctor, +/obj/structure/sign/safety/maint{ + pixel_y = 26 + }, +/obj/effect/landmark/late_join/doctor, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"wfd" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" + }, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/p_bow) "wfn" = ( /obj/effect/decal/cleanable/blood/oil, /turf/open/floor/almayer{ @@ -76730,6 +77035,13 @@ "wfE" = ( /turf/closed/wall/almayer, /area/almayer/living/gym) +"wfG" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_a_s) "wfZ" = ( /obj/structure/desertdam/decals/road_edge{ pixel_x = -12 @@ -76777,13 +77089,12 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"wgO" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"wgw" = ( +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/maint/hull/lower/l_m_s) "wgR" = ( /obj/structure/surface/table/almayer, /obj/effect/spawner/random/technology_scanner, @@ -76794,14 +77105,42 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) -"whm" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 +"wgY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light{ + dir = 4 }, +/obj/item/tank/emergency_oxygen/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/lower/starboard_umbilical) +"whg" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/upper/stern_hallway) +"whr" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + access_modified = 1; + dir = 2; + req_one_access = null; + req_one_access_txt = "19;34;30" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_p) +"whv" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_p) "whA" = ( /turf/open/floor/almayer/uscm/directional, /area/almayer/living/briefing) @@ -76820,9 +77159,15 @@ icon_state = "silver" }, /area/almayer/command/cichallway) -"wid" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/p_bow) +"whX" = ( +/obj/structure/sign/safety/intercom{ + pixel_x = 32; + pixel_y = 7 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "wiz" = ( /obj/structure/bed/chair{ dir = 4 @@ -76864,27 +77209,6 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"wiO" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldingtool, -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"wiQ" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "vehicle1door"; - name = "Vehicle Bay One" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/vehiclehangar) "wiW" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -76941,38 +77265,9 @@ icon_state = "test_floor4" }, /area/almayer/hallways/upper/starboard) -"wjL" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/repair_bay) -"wjP" = ( -/obj/structure/sign/safety/storage{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) -"wjQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = -14; - pixel_y = 13 - }, -/obj/structure/prop/invuln/overhead_pipe{ - dir = 4; - pixel_x = 12; - pixel_y = 13 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/mess) +"wjN" = ( +/turf/closed/wall/almayer/reinforced, +/area/almayer/maint/hull/lower/s_bow) "wjY" = ( /obj/structure/closet/secure_closet/warrant_officer, /turf/open/floor/wood/ship, @@ -77000,6 +77295,10 @@ icon_state = "sterile_green" }, /area/almayer/medical/lockerroom) +"wkw" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "wky" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -77029,6 +77328,13 @@ icon_state = "bluefull" }, /area/almayer/command/cichallway) +"wkJ" = ( +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "wkM" = ( /obj/structure/machinery/door/poddoor/shutters/almayer{ id = "ARES StairsLower"; @@ -77053,6 +77359,25 @@ icon_state = "test_floor4" }, /area/almayer/command/airoom) +"wkP" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool{ + pixel_x = 6; + pixel_y = -16 + }, +/obj/item/clothing/head/welding, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"wkR" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "red" + }, +/area/almayer/hallways/lower/port_fore_hallway) "wkX" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -77090,32 +77415,18 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/execution) -"wlh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 6 - }, +"wli" = ( /turf/open/floor/plating/plating_catwalk, -/area/almayer/squads/req) -"wlB" = ( -/obj/structure/largecrate/random/case/small, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) -"wlD" = ( -/obj/structure/machinery/suit_storage_unit/compression_suit/uscm, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/area/almayer/maint/hull/lower/l_m_s) +"wlv" = ( +/obj/structure/pipes/vents/pump{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "orange" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/hallways/lower/starboard_umbilical) "wlE" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -77142,6 +77453,12 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) +"wlQ" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "wmg" = ( /obj/structure/machinery/power/apc/almayer{ dir = 1 @@ -77151,6 +77468,17 @@ icon_state = "red" }, /area/almayer/shipboard/starboard_missiles) +"wmr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) "wmz" = ( /obj/structure/bed/chair/comfy/bravo{ dir = 1 @@ -77159,12 +77487,6 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) -"wmH" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) "wmK" = ( /obj/structure/surface/table/almayer, /obj/item/clipboard, @@ -77198,6 +77520,14 @@ icon_state = "cargo" }, /area/almayer/living/bridgebunks) +"wmY" = ( +/obj/structure/pipes/standard/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/stern_hallway) "wnh" = ( /obj/structure/window/framed/almayer/white/hull, /turf/open/floor/plating, @@ -77211,6 +77541,14 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/perma) +"wnK" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "wnL" = ( /obj/item/stack/tile/carpet{ amount = 12 @@ -77259,9 +77597,30 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) -"woU" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/u_m_p) +"woQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) +"woW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 9; + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "wpg" = ( /obj/structure/machinery/blackbox_recorder, /turf/open/shuttle/dropship{ @@ -77278,20 +77637,6 @@ }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"wpu" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/device/flashlight/lamp{ - pixel_y = 8 - }, -/obj/item/clothing/glasses/science{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/device/flash, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) "wpw" = ( /obj/structure/bed/chair/comfy/ares{ dir = 1 @@ -77331,12 +77676,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower) -"wpT" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) "wqc" = ( /obj/structure/sign/poster{ pixel_y = 32 @@ -77365,15 +77704,33 @@ icon_state = "plate" }, /area/almayer/command/combat_correspondent) -"wqO" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 +"wqs" = ( +/obj/structure/surface/table/almayer, +/obj/item/pipe{ + dir = 9 }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +/obj/item/tool/screwdriver{ + layer = 3.6; + pixel_x = 9; + pixel_y = 8 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_aft_hallway) +/obj/item/tool/crowbar/red{ + pixel_x = 17 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) +"wqQ" = ( +/obj/structure/machinery/conveyor{ + id = "req_belt" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) +"wqU" = ( +/turf/open/floor/plating, +/area/almayer/maint/hull/upper/u_m_p) "wqW" = ( /obj/structure/closet/secure_closet/CMO, /obj/structure/machinery/light{ @@ -77384,55 +77741,27 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/upper_medical) -"wra" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, +"wqX" = ( +/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/maint/hull/lower/l_a_p) -"wrr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out"; - pixel_x = 1 - }, -/obj/structure/machinery/door_control/railings{ - pixel_y = 24 +"wri" = ( +/obj/structure/sign/safety/water{ + pixel_x = 8; + pixel_y = -32 }, /turf/open/floor/almayer{ - dir = 5; - icon_state = "plating" + icon_state = "plate" }, -/area/almayer/hallways/lower/vehiclehangar) -"wru" = ( -/obj/structure/machinery/light, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/maint/hull/lower/stern) "wrC" = ( /obj/structure/sign/safety/distribution_pipes{ pixel_x = -17 }, /turf/open/floor/almayer, /area/almayer/living/gym) -"wrN" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" - }, -/obj/structure/blocker/forcefield/multitile_vehicles, -/obj/structure/sign/safety/stairs{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/port_fore_hallway) "wrQ" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -77490,64 +77819,38 @@ /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) "wsw" = ( -/obj/structure/machinery/light/small{ - dir = 1 +/obj/structure/machinery/vending/cola{ + density = 0; + pixel_y = 18 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/stern) -"wsz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) +/area/almayer/maint/hull/upper/u_a_p) "wsD" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"wsR" = ( +"wsF" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" + }, /obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/squads/bravo) -"wsS" = ( +/area/almayer/hallways/lower/port_umbilical) +"wsR" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wtk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"wtn" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/obj/item/storage/firstaid{ - pixel_x = -13; - pixel_y = 13 - }, -/obj/item/clipboard, -/obj/item/paper, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_s) +/area/almayer/squads/bravo) "wty" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -77557,14 +77860,6 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/delta) -"wtD" = ( -/obj/structure/machinery/door/airlock/almayer/security/glass{ - name = "Brig" - }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/p_bow) "wtM" = ( /obj/structure/machinery/light{ unacidable = 1; @@ -77572,6 +77867,15 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) +"wtW" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 10; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) "wtY" = ( /obj/structure/surface/table/almayer, /obj/item/folder/white{ @@ -77590,14 +77894,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"wub" = ( -/obj/structure/pipes/vents/pump{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) "wuc" = ( /obj/structure/machinery/door/airlock/almayer/medical/glass{ name = "\improper Brig Medbay"; @@ -77623,26 +77919,6 @@ icon_state = "orangefull" }, /area/almayer/engineering/lower/workshop) -"wuh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/autoopenclose{ - pixel_y = 32 - }, -/obj/structure/sign/safety/water{ - pixel_x = 15; - pixel_y = 32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "wup" = ( /obj/structure/supply_drop/echo, /turf/open/floor/almayer, @@ -77665,6 +77941,31 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop) +"wuP" = ( +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -16; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/u_m_s) +"wuR" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "wuT" = ( /obj/structure/machinery/light/small{ dir = 8 @@ -77697,6 +77998,10 @@ /obj/structure/filingcabinet, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) +"wvt" = ( +/obj/structure/pipes/vents/scrubber, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "wvE" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer_network{ @@ -77723,6 +78028,12 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/perma) +"wvN" = ( +/turf/open/floor/almayer{ + dir = 6; + icon_state = "red" + }, +/area/almayer/hallways/upper/aft_hallway) "wvU" = ( /obj/structure/machinery/recharge_station, /obj/structure/machinery/light{ @@ -77741,18 +78052,6 @@ icon_state = "cargo" }, /area/almayer/squads/charlie) -"wwv" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"wwE" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) "wwJ" = ( /obj/structure/surface/table/almayer, /obj/item/paper, @@ -77761,6 +78060,14 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering) +"wwV" = ( +/obj/structure/sign/safety/storage{ + pixel_x = -17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "wwW" = ( /obj/structure/machinery/camera/autoname/almayer/containment/hidden{ dir = 8; @@ -77792,11 +78099,15 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/starboard) -"wxp" = ( -/obj/structure/pipes/standard/simple/hidden/supply, +"wxn" = ( /obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/upper/mess) "wxq" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -77805,20 +78116,6 @@ icon_state = "plate" }, /area/almayer/medical/lower_medical_medbay) -"wxu" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) -"wxy" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/p_stern) -"wxD" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) "wxU" = ( /obj/item/ashtray/bronze{ pixel_x = 7; @@ -77853,32 +78150,6 @@ icon_state = "bluefull" }, /area/almayer/command/cichallway) -"wyz" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"wyE" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, -/area/almayer/hallways/upper/aft_hallway) -"wyG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/lower/l_m_s) "wyQ" = ( /obj/structure/surface/table/reinforced/almayer_B, /obj/structure/machinery/door_control{ @@ -77891,46 +78162,26 @@ icon_state = "plating" }, /area/almayer/command/airoom) -"wzy" = ( -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/port_fore_hallway) -"wzJ" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"wzL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 +"wyV" = ( +/obj/structure/machinery/light{ + dir = 1 }, /turf/open/floor/almayer{ - dir = 8; + dir = 5; icon_state = "green" }, /area/almayer/hallways/upper/aft_hallway) -"wzZ" = ( -/obj/structure/machinery/door/airlock/almayer/medical/glass{ - dir = 1; - id = "medcryobeds"; - id_tag = "medcryobeds"; - name = "Medical Wheelchair Storage"; - req_access = null; - req_one_access = null +"wzC" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"wzJ" = ( /turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/medical/lower_medical_medbay) -"wAK" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" + icon_state = "cargo_arrow" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/hallways/lower/vehiclehangar) "wBd" = ( /obj/structure/machinery/status_display{ pixel_x = 32 @@ -77945,16 +78196,31 @@ icon_state = "red" }, /area/almayer/shipboard/brig/lobby) -"wBw" = ( -/obj/structure/pipes/vents/pump, -/obj/structure/machinery/status_display{ - pixel_y = 30 +"wBg" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + dir = 4; + icon_state = "orange" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/lower/port_aft_hallway) +"wBl" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 8 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/shipboard/panic) +"wBy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "wBI" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/sign/safety/maint{ @@ -77978,12 +78244,21 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"wCF" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "wCI" = ( /turf/open/floor/almayer{ dir = 4; icon_state = "redcorner" }, /area/almayer/living/briefing) +"wCN" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) "wCT" = ( /obj/effect/step_trigger/teleporter_vector{ name = "Almayer_AresDown"; @@ -78010,25 +78285,6 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) -"wDp" = ( -/obj/structure/machinery/photocopier, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "red" - }, -/area/almayer/shipboard/brig/main_office) -"wDq" = ( -/obj/structure/largecrate/random/case/small, -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"wDr" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/lower/stairs) "wDs" = ( /obj/structure/machinery/seed_extractor, /obj/structure/sign/safety/terminal{ @@ -78066,15 +78322,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"wDG" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) "wDH" = ( /obj/structure/morgue, /obj/structure/machinery/light{ @@ -78102,14 +78349,14 @@ "wDM" = ( /turf/closed/wall/almayer/reinforced/temphull, /area/almayer/engineering/upper_engineering) -"wDP" = ( -/obj/structure/sign/safety/storage{ - pixel_x = -17 +"wDW" = ( +/obj/structure/machinery/status_display{ + pixel_y = -30 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/hallways/lower/port_fore_hallway) "wEd" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply, @@ -78134,6 +78381,23 @@ icon_state = "rasputin3" }, /area/almayer/powered/agent) +"wEp" = ( +/obj/structure/bookcase/manuals/medical, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_f_s) +"wEA" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_p) "wEI" = ( /obj/structure/surface/table/reinforced/black, /obj/item/tool/pen, @@ -78147,12 +78411,6 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) -"wEK" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "wEO" = ( /obj/structure/platform_decoration{ dir = 4 @@ -78168,6 +78426,15 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/lower_medical_medbay) +"wFk" = ( +/obj/structure/sign/safety/escapepod{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/port_midship_hallway) "wFn" = ( /obj/structure/surface/rack, /obj/item/clothing/suit/storage/marine/light/vest, @@ -78195,34 +78462,33 @@ }, /turf/open/floor/almayer, /area/almayer/hallways/hangar) -"wFN" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - dir = 4; - id = "OfficeSafeRoom"; - name = "\improper Office Safe Room" - }, +"wFG" = ( +/obj/effect/landmark/yautja_teleport, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/shipboard/panic) +/area/almayer/maint/hull/lower/l_a_p) +"wFL" = ( +/obj/structure/sign/safety/escapepod{ + pixel_y = -32 + }, +/obj/structure/sign/safety/east{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "wFR" = ( /turf/open/floor/almayer, /area/almayer/living/gym) -"wFX" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 +"wGa" = ( +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"wGa" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_s) +/area/almayer/maint/hull/upper/u_m_s) "wGb" = ( /obj/structure/pipes/vents/scrubber{ dir = 1 @@ -78238,12 +78504,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"wGe" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_f_p) "wGE" = ( /obj/structure/disposalpipe/segment, /obj/effect/landmark/start/marine/leader/delta, @@ -78276,13 +78536,6 @@ icon_state = "emerald" }, /area/almayer/living/port_emb) -"wHn" = ( -/obj/structure/sign/safety/autoopenclose{ - pixel_x = 7; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) "wHo" = ( /turf/open/floor/almayer{ icon_state = "emerald" @@ -78306,6 +78559,13 @@ icon_state = "test_floor4" }, /area/almayer/shipboard/brig/chief_mp_office) +"wIg" = ( +/obj/structure/disposalpipe/segment{ + layer = 5.1; + name = "water pipe" + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "wIr" = ( /obj/structure/machinery/cm_vending/clothing/senior_officer{ req_access = list(); @@ -78319,12 +78579,12 @@ icon_state = "cargo" }, /area/almayer/squads/req) -"wIu" = ( -/obj/structure/largecrate/random/case, +"wIz" = ( +/obj/structure/largecrate/random/case/small, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/upper/s_stern) "wIC" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/chief_mp_office) @@ -78349,35 +78609,31 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) -"wIQ" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" +"wIP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" }, -/area/almayer/shipboard/brig/cic_hallway) -"wIX" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; pixel_x = 1 }, -/obj/structure/disposalpipe/up/almayer{ - dir = 8; - id = "almayerlink" +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" + }, +/area/almayer/hallways/lower/vehiclehangar) +"wIQ" = ( /turf/open/floor/almayer{ dir = 4; - icon_state = "green" + icon_state = "silvercorner" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/shipboard/brig/cic_hallway) "wJb" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/lower_medical_medbay) -"wJd" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/hallways/upper/stern_hallway) "wJh" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -78397,16 +78653,18 @@ icon_state = "test_floor4" }, /area/almayer/medical/upper_medical) +"wJA" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "orange" + }, +/area/almayer/hallways/lower/port_aft_hallway) "wJB" = ( /obj/structure/machinery/cryopod/right, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/command/airoom) -"wJC" = ( -/obj/structure/largecrate/random/barrel/yellow, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "wJD" = ( /obj/structure/bed/chair{ dir = 8; @@ -78428,23 +78686,34 @@ "wJH" = ( /turf/closed/wall/almayer/research/containment/wall/east, /area/almayer/medical/containment/cell/cl) -"wKb" = ( -/obj/structure/bed/chair{ - dir = 8 +"wJS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_f_s) -"wKm" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 +/area/almayer/maint/hull/upper/u_a_s) +"wJT" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"wKe" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_aft_hallway) +/area/almayer/maint/hull/upper/u_a_p) +"wKf" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_fore_hallway) "wKF" = ( /obj/structure/machinery/power/apc/almayer{ cell_type = /obj/item/cell/hyper; @@ -78463,15 +78732,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cells) -"wKN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_fore_hallway) "wKP" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -78487,6 +78747,11 @@ }, /turf/open/floor/plating, /area/almayer/medical/containment) +"wLe" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/aft_hallway) "wLi" = ( /obj/structure/machinery/door_control/airlock{ id = "s_engi"; @@ -78502,6 +78767,15 @@ icon_state = "plating_striped" }, /area/almayer/living/cryo_cells) +"wLs" = ( +/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ + pixel_y = 25 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "wLu" = ( /obj/structure/stairs/perspective{ dir = 1; @@ -78564,6 +78838,20 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) +"wLM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/weapons/m39{ + pixel_x = 2 + }, +/obj/structure/largecrate/supply/weapons/m41a{ + layer = 3.1; + pixel_x = 6; + pixel_y = 17 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "wLN" = ( /obj/structure/pipes/standard/manifold/hidden/supply/no_boom{ dir = 8 @@ -78572,24 +78860,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/containment) -"wMl" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/two{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "wMv" = ( /obj/effect/decal/warning_stripes{ icon_state = "W" @@ -78598,21 +78868,6 @@ icon_state = "dark_sterile" }, /area/almayer/living/auxiliary_officer_office) -"wMB" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer{ - icon_state = "test_floor5" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wMF" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_bow) "wMG" = ( /obj/structure/machinery/cryopod/right{ pixel_y = 6 @@ -78621,17 +78876,6 @@ icon_state = "cargo" }, /area/almayer/squads/alpha) -"wMI" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) "wMO" = ( /obj/structure/machinery/door/poddoor/almayer/biohazard/white{ dir = 4 @@ -78671,27 +78915,12 @@ icon_state = "redcorner" }, /area/almayer/shipboard/brig/processing) -"wNz" = ( -/obj/structure/stairs, -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"wNG" = ( -/obj/effect/projector{ - name = "Almayer_Up2"; - vector_x = -1; - vector_y = 100 - }, +"wNN" = ( +/obj/structure/platform, /turf/open/floor/almayer{ - allow_construction = 0 + icon_state = "plate" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/area/almayer/maint/hull/upper/u_a_s) "wNS" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -78704,18 +78933,34 @@ /obj/structure/platform, /turf/open/floor/almayer, /area/almayer/living/briefing) +"wOb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer{ + dir = 5; + icon_state = "green" + }, +/area/almayer/hallways/lower/port_aft_hallway) +"wOm" = ( +/obj/structure/machinery/alarm/almayer{ + dir = 1 + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "wOt" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering/starboard) -"wOv" = ( -/obj/structure/platform, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_s) +"wOC" = ( +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) "wOK" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -78725,18 +78970,6 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"wPa" = ( -/obj/structure/platform{ - dir = 4 - }, -/obj/item/reagent_container/glass/rag, -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "wPf" = ( /obj/structure/sign/safety/reception{ pixel_x = 32; @@ -78746,27 +78979,6 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"wPi" = ( -/obj/structure/machinery/cm_vending/sorted/medical/wall_med{ - pixel_y = 25 - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "cargo_arrow" - }, -/area/almayer/hallways/lower/port_midship_hallway) -"wPm" = ( -/obj/structure/pipes/standard/cap/hidden{ - dir = 4 - }, -/obj/structure/sign/safety/life_support{ - pixel_x = 8; - pixel_y = -25 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/hallways/upper/stern_hallway) "wPz" = ( /turf/open/floor/almayer{ icon_state = "mono" @@ -78794,25 +79006,17 @@ }, /area/almayer/command/cichallway) "wPR" = ( -/obj/structure/closet, -/obj/item/clothing/under/marine, -/obj/item/clothing/suit/storage/marine, -/obj/item/clothing/head/helmet/marine, -/obj/item/clothing/head/beret/cm, -/obj/item/clothing/head/beret/cm, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"wQu" = ( -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "mono" }, +/area/almayer/hallways/upper/stern_hallway) +"wPX" = ( /turf/open/floor/almayer{ - allow_construction = 0; - icon_state = "plate" + dir = 10; + icon_state = "green" }, -/area/almayer/hallways/lower/port_fore_hallway) +/area/almayer/hallways/upper/aft_hallway) "wQA" = ( /obj/structure/pipes/standard/simple/visible{ dir = 5 @@ -78826,19 +79030,43 @@ icon_state = "orange" }, /area/almayer/engineering/lower/engine_core) -"wRf" = ( -/obj/structure/machinery/light/small, -/obj/structure/sign/safety/nonpress_0g{ - pixel_x = 15; - pixel_y = -32 +"wQH" = ( +/obj/effect/projector{ + name = "Almayer_Up3"; + vector_x = -1; + vector_y = 102 }, -/obj/structure/sign/safety/press_area_ag{ - pixel_y = 32 +/turf/open/floor/almayer{ + allow_construction = 0 }, +/area/almayer/hallways/lower/port_fore_hallway) +"wQM" = ( +/obj/structure/largecrate/random/barrel/yellow, /turf/open/floor/almayer{ - icon_state = "test_floor4" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_umbilical) +/area/almayer/maint/hull/upper/u_m_p) +"wQV" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"wQZ" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/hallways/upper/stern_hallway) +"wRn" = ( +/obj/structure/surface/rack, +/obj/item/tool/crowbar, +/obj/item/tool/weldingtool, +/obj/item/tool/wrench, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_p) "wRN" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/item/seeds/goldappleseed, @@ -78878,6 +79106,10 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"wSd" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_umbilical) "wSm" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -78902,15 +79134,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/lobby) -"wSx" = ( -/obj/structure/platform_decoration, -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "wSK" = ( /obj/structure/janitorialcart, /obj/item/tool/mop, @@ -78918,12 +79141,6 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/execution) -"wSQ" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) "wSR" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -78963,6 +79180,10 @@ icon_state = "silver" }, /area/almayer/command/securestorage) +"wTe" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_s) "wTg" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -78980,23 +79201,6 @@ icon_state = "red" }, /area/almayer/living/briefing) -"wTn" = ( -/obj/structure/machinery/light/small{ - dir = 1; - pixel_y = 20 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_s) -"wTu" = ( -/obj/structure/surface/table/almayer, -/obj/item/tool/extinguisher, -/obj/item/tool/extinguisher, -/obj/item/tool/crowbar, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "orange" - }, -/area/almayer/maint/upper/mess) "wTw" = ( /obj/structure/machinery/cm_vending/sorted/attachments/squad{ req_access = null; @@ -79014,28 +79218,12 @@ icon_state = "test_floor4" }, /area/almayer/lifeboat_pumps/south1) -"wTB" = ( -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/lower/engine_core) -"wTJ" = ( -/obj/structure/barricade/handrail, -/obj/structure/barricade/handrail{ +"wTF" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ dir = 4 }, -/obj/structure/largecrate/random, -/turf/open/floor/almayer, -/area/almayer/engineering/upper_engineering/port) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) "wTM" = ( /turf/closed/wall/almayer/research/containment/wall/south, /area/almayer/medical/containment/cell) @@ -79047,6 +79235,10 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) +"wUc" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) "wUd" = ( /obj/structure/surface/table/almayer, /obj/item/storage/box/gloves{ @@ -79056,12 +79248,9 @@ /obj/item/storage/fancy/candle_box, /turf/open/floor/plating/plating_catwalk, /area/almayer/medical/morgue) -"wUJ" = ( -/obj/structure/largecrate/random/barrel/white, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_p) +"wUB" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/hull/upper/p_stern) "wUK" = ( /turf/open/floor/almayer{ dir = 8; @@ -79097,13 +79286,6 @@ icon_state = "plate" }, /area/almayer/living/grunt_rnr) -"wVm" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) "wVt" = ( /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/plating/plating_catwalk, @@ -79131,6 +79313,12 @@ icon_state = "plate" }, /area/almayer/squads/charlie_delta_shared) +"wVz" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/almayer{ + icon_state = "cargo" + }, +/area/almayer/hallways/lower/port_midship_hallway) "wVA" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 5 @@ -79150,14 +79338,13 @@ icon_state = "bluefull" }, /area/almayer/living/bridgebunks) -"wVN" = ( -/obj/item/roller, -/obj/structure/surface/rack, -/obj/item/roller, -/turf/open/floor/almayer{ - icon_state = "plate" +"wVU" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/sign/safety/cryo{ + pixel_x = 36 }, -/area/almayer/shipboard/panic) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/lower/cryo_cells) "wVW" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/command/cic) @@ -79186,14 +79373,6 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) -"wWt" = ( -/obj/effect/projector{ - name = "Almayer_Up1"; - vector_x = -19; - vector_y = 98 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) "wWz" = ( /turf/closed/wall/almayer/research/containment/wall/north, /area/almayer/medical/containment/cell) @@ -79203,6 +79382,10 @@ icon_state = "blue" }, /area/almayer/living/pilotbunks) +"wWD" = ( +/obj/docking_port/stationary/escape_pod/south, +/turf/open/floor/plating, +/area/almayer/maint/upper/u_m_p) "wWP" = ( /obj/structure/prop/cash_register/broken, /obj/structure/machinery/light/small, @@ -79226,6 +79409,29 @@ /obj/effect/landmark/late_join/delta, /turf/open/floor/plating/plating_catwalk, /area/almayer/squads/delta) +"wXb" = ( +/obj/structure/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) +"wXf" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/hallways/upper/aft_hallway) "wXh" = ( /obj/structure/machinery/floodlight/landing{ name = "bolted floodlight" @@ -79234,12 +79440,22 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) -"wXl" = ( -/obj/structure/platform, -/turf/open/floor/almayer{ - icon_state = "plate" +"wXx" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, -/area/almayer/maint/hull/upper/u_a_p) +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/stern_hallway) +"wXD" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_fore_hallway) "wXH" = ( /obj/structure/bed/chair{ dir = 1 @@ -79252,12 +79468,15 @@ icon_state = "greencorner" }, /area/almayer/living/grunt_rnr) -"wXJ" = ( -/obj/structure/largecrate/random/case/small, +"wXS" = ( +/obj/structure/platform_decoration, +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/upper/u_a_p) "wXT" = ( /obj/structure/machinery/door/airlock/almayer/engineering{ name = "\improper Engineering Storage" @@ -79272,35 +79491,38 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/north2) -"wYd" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) -"wYr" = ( -/obj/structure/machinery/gel_refiller, -/turf/open/floor/almayer{ - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lower_medical_medbay) "wYA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/surface/table/almayer, /turf/open/floor/almayer, /area/almayer/lifeboat_pumps/north1) -"wYG" = ( -/obj/structure/largecrate/random/barrel/white, +"wYI" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 10 + }, /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "orangecorner" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/upper/stern_hallway) "wYK" = ( /obj/structure/barricade/handrail/medical, /turf/open/floor/almayer{ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) +"wYQ" = ( +/obj/structure/machinery/camera/autoname/almayer{ + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "wYS" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -79313,6 +79535,16 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"wYU" = ( +/obj/structure/pipes/standard/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/port_aft_hallway) "wYY" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/shutters/almayer/open{ @@ -79324,30 +79556,22 @@ }, /turf/open/floor/plating, /area/almayer/engineering/ce_room) -"wZk" = ( -/obj/structure/stairs{ - dir = 8; - icon_state = "ramptop" +"wZa" = ( +/turf/closed/wall/almayer/outer, +/area/almayer/maint/hull/lower/l_f_s) +"wZt" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 15; + pixel_y = 32 }, -/obj/effect/projector{ - name = "Almayer_Down3"; - vector_x = 1; - vector_y = -102 +/obj/structure/sign/safety/intercom{ + pixel_y = 32 }, -/obj/structure/machinery/light, -/turf/open/floor/plating/almayer{ - allow_construction = 0 +/turf/open/floor/almayer{ + dir = 1; + icon_state = "blue" }, /area/almayer/hallways/upper/aft_hallway) -"wZp" = ( -/obj/structure/pipes/standard/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) "wZv" = ( /obj/structure/prop/invuln{ desc = "An inflated membrane. This one is puncture proof. Wow!"; @@ -79361,6 +79585,15 @@ icon_state = "outerhull_dir" }, /area/almayer/engineering/upper_engineering/port) +"wZD" = ( +/obj/structure/machinery/door/airlock/almayer/maint{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_a_s) "wZE" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/surgery, @@ -79372,6 +79605,13 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_four) +"wZH" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "wZL" = ( /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, @@ -79394,6 +79634,11 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/command/lifeboat) +"xac" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/vehiclehangar) "xad" = ( /obj/item/device/radio/intercom{ freerange = 1; @@ -79405,12 +79650,6 @@ icon_state = "plate" }, /area/almayer/shipboard/port_point_defense) -"xas" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_bow) "xaC" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/tool/kitchen/utensil/pfork{ @@ -79464,6 +79703,14 @@ dir = 5 }, /area/almayer/command/lifeboat) +"xaV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/starboard_aft_hallway) "xba" = ( /turf/closed/wall/almayer/reinforced/temphull, /area/almayer/living/cryo_cells) @@ -79476,24 +79723,35 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"xbg" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) "xbk" = ( /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/living/gym) -"xbI" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 1 +"xbG" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/cobweb{ + dir = 8; + plane = -6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/item/reagent_container/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner" + }, +/obj/item/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/almayer{ - icon_state = "plate" + dir = 4; + icon_state = "sterile_green_corner" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/medical/lower_medical_medbay) "xbN" = ( /obj/structure/surface/rack{ density = 0; @@ -79509,60 +79767,37 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/upper/starboard) -"xcs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "SE-out" - }, -/obj/effect/decal/warning_stripes{ - icon_state = "NE-out"; - pixel_y = 1 - }, -/obj/structure/machinery/door/airlock/almayer/maint, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_a_s) -"xcI" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, +"xcC" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/p_bow) -"xcV" = ( -/obj/structure/window/framed/almayer, -/obj/structure/machinery/door/poddoor/shutters/almayer{ - id = "OfficeSafeRoom"; - name = "\improper Office Safe Room" - }, +/area/almayer/maint/hull/lower/l_m_p) +"xdr" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 5; + icon_state = "red" }, -/area/almayer/shipboard/panic) -"xcY" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" +/area/almayer/hallways/upper/stern_hallway) +"xdt" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 }, /turf/open/floor/almayer{ - dir = 4; + dir = 9; icon_state = "green" }, -/area/almayer/hallways/upper/aft_hallway) -"xdf" = ( -/obj/structure/pipes/standard/manifold/fourway/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, /area/almayer/hallways/lower/port_midship_hallway) -"xdl" = ( +"xdv" = ( +/obj/structure/pipes/vents/pump{ + dir = 1 + }, /turf/open/floor/almayer{ - icon_state = "red" + icon_state = "green" }, -/area/almayer/hallways/upper/aft_hallway) +/area/almayer/hallways/lower/port_midship_hallway) "xdx" = ( /obj/structure/surface/rack, /obj/item/storage/firstaid/regular/empty, @@ -79586,6 +79821,14 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/execution) +"xdN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_midship_hallway) "xdP" = ( /obj/structure/surface/table/almayer, /obj/item/trash/uscm_mre, @@ -79602,80 +79845,60 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) -"xee" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) -"xef" = ( -/obj/structure/surface/table/almayer, -/obj/item/folder/yellow, -/obj/structure/machinery/keycard_auth{ - pixel_x = -8; - pixel_y = 25 - }, -/obj/structure/sign/safety/high_rad{ - pixel_x = 32; - pixel_y = -8 - }, -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/terminal{ - pixel_x = 14; - pixel_y = 26 +"xdT" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/spawner/random/toolbox, +/obj/item/stack/sheet/metal{ + desc = "Semiotic Standard denoting the nearby presence of coffee: the lifeblood of any starship crew."; + icon = 'icons/obj/structures/props/semiotic_standard.dmi'; + icon_state = "coffee"; + name = "coffee semiotic"; + pixel_x = 20; + pixel_y = 12; + singular_name = "coffee semiotic" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/engineering/lower/workshop) -"xeq" = ( -/obj/structure/sign/safety/distribution_pipes{ +/area/almayer/maint/hull/upper/u_a_p) +"xec" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/vehiclehangar) +"xeV" = ( +/obj/structure/sign/safety/hvac_old{ pixel_x = 8; pixel_y = 32 }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orangecorner" - }, -/area/almayer/hallways/upper/stern_hallway) -"xer" = ( -/obj/structure/machinery/power/apc/almayer, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"xew" = ( -/obj/structure/surface/rack, -/obj/item/facepaint/sniper, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/maint/hull/upper/u_m_s) +"xeY" = ( +/obj/structure/sign/safety/autoopenclose{ + pixel_x = 7; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_fore_hallway) "xfm" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/structure/window/framed/almayer, /turf/open/floor/plating, /area/almayer/living/cafeteria_officer) -"xfo" = ( -/turf/open/floor/almayer{ - dir = 10; - icon_state = "blue" +"xft" = ( +/obj/structure/platform_decoration{ + dir = 4 }, -/area/almayer/hallways/upper/aft_hallway) -"xfq" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 +/turf/open/floor/almayer{ + icon_state = "plate" }, -/obj/item/clipboard, -/obj/item/paper, -/obj/item/tool/pen, +/area/almayer/maint/hull/upper/u_a_p) +"xfu" = ( +/obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_a_p) +/area/almayer/maint/upper/u_m_p) "xfK" = ( /obj/structure/machinery/light{ dir = 1 @@ -79719,17 +79942,6 @@ icon_state = "sterile_green_corner" }, /area/almayer/medical/operating_room_one) -"xfW" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/secure_closet/guncabinet, -/obj/item/weapon/gun/rifle/m41a{ - pixel_y = 6 - }, -/obj/item/weapon/gun/rifle/m41a, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_m_s) "xgh" = ( /obj/structure/pipes/vents/scrubber{ dir = 4 @@ -79738,40 +79950,6 @@ icon_state = "sterile_green" }, /area/almayer/medical/lower_medical_lobby) -"xgk" = ( -/obj/structure/pipes/vents/scrubber, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"xgm" = ( -/obj/structure/reagent_dispensers/fueltank/oxygentank, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/engineering/upper_engineering/starboard) -"xgr" = ( -/obj/structure/ladder{ - height = 1; - id = "AftPortMaint" - }, -/obj/structure/sign/safety/ladder{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/plating/almayer, -/area/almayer/maint/hull/lower/l_a_p) -"xgE" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer, -/area/almayer/hallways/upper/aft_hallway) "xgI" = ( /obj/structure/closet/secure_closet/personal/cabinet{ req_access = null @@ -79781,16 +79959,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"xgJ" = ( -/obj/structure/machinery/light{ - dir = 1 - }, -/obj/structure/machinery/cm_vending/sorted/medical/blood/bolted, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "sterile_green_side" - }, -/area/almayer/medical/lockerroom) "xgN" = ( /obj/structure/bed/chair/comfy/bravo{ dir = 1 @@ -79804,44 +79972,19 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"xgP" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 - }, -/turf/open/floor/almayer{ - icon_state = "mono" - }, -/area/almayer/medical/upper_medical) -"xgS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"xhi" = ( -/turf/open/floor/almayer{ - icon_state = "orangecorner" - }, -/area/almayer/hallways/upper/stern_hallway) "xhn" = ( /obj/structure/largecrate/random/case/double, /turf/open/floor/almayer{ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south1) +"xhp" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_s) "xhx" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -79855,24 +79998,12 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/main_office) -"xhO" = ( -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "xhQ" = ( /obj/structure/window/framed/almayer, /turf/open/floor/almayer{ icon_state = "plate" }, /area/almayer/squads/bravo) -"xhW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/manifold/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) "xhZ" = ( /obj/structure/bed/chair/comfy/beige{ dir = 4 @@ -79887,18 +80018,20 @@ /obj/structure/window/reinforced, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"xiH" = ( -/obj/structure/largecrate/random/barrel/blue, +"xiD" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/tool/wrench{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/tool/wrench{ + pixel_x = 2; + pixel_y = 7 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_s) -"xiP" = ( -/obj/structure/closet/secure_closet/engineering_welding{ - req_one_access_txt = "7;23;27" - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/maint/hull/upper/u_a_p) "xiU" = ( /obj/structure/machinery/portable_atmospherics/hydroponics, /obj/item/tool/minihoe{ @@ -79913,9 +80046,13 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"xiV" = ( -/turf/closed/wall/almayer/outer, -/area/almayer/maint/hull/upper/p_bow) +"xiZ" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/almayer{ + dir = 6; + icon_state = "orange" + }, +/area/almayer/maint/hull/lower/l_m_s) "xjb" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/generic{ access_modified = 1; @@ -79926,6 +80063,12 @@ icon_state = "kitchen" }, /area/almayer/living/grunt_rnr) +"xjh" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "xjt" = ( /obj/structure/surface/table/woodentable/fancy, /obj/structure/machinery/computer/card{ @@ -79985,12 +80128,6 @@ icon_state = "red" }, /area/almayer/shipboard/brig/main_office) -"xjI" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/upper/stern_hallway) "xjK" = ( /obj/structure/sign/safety/hazard{ pixel_y = 32 @@ -80003,7 +80140,10 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) -"xjW" = ( +"xjU" = ( +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) +"xjW" = ( /obj/structure/sign/safety/hazard{ desc = "A sign that warns of a hazardous environment nearby"; name = "\improper Warning: Hazardous Environment" @@ -80014,34 +80154,9 @@ /obj/structure/pipes/vents/pump, /turf/open/floor/almayer, /area/almayer/shipboard/starboard_point_defense) -"xkb" = ( -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12 - }, -/obj/structure/prop/invuln/overhead_pipe{ - pixel_x = 12; - pixel_y = 12 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) -"xkc" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "xkd" = ( /turf/closed/wall/almayer/reinforced, /area/almayer/shipboard/brig/cells) -"xky" = ( -/obj/structure/sign/safety/maint{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "xkB" = ( /obj/structure/bed/chair/comfy/charlie{ dir = 1 @@ -80051,20 +80166,34 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"xkN" = ( -/obj/structure/machinery/door_control{ - id = "laddernorthwest"; - name = "North West Ladders Shutters"; - pixel_x = 25; - req_one_access_txt = "2;3;12;19"; - throw_range = 15 +"xkE" = ( +/obj/structure/machinery/door/airlock/almayer/maint/reinforced, +/obj/structure/machinery/door/poddoor/almayer/open{ + dir = 4; + id = "Brig Lockdown Shutters"; + name = "\improper Brig Lockdown Shutter" }, -/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/s_bow) +"xkM" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_aft_hallway) +"xkZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/machinery/door/poddoor/almayer/open{ dir = 4; - icon_state = "greencorner" + id = "Hangar Lockdown"; + name = "\improper Hangar Lockdown Blast Door" }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/lower/constr) "xlk" = ( /obj/structure/surface/table/almayer, /turf/open/floor/almayer, @@ -80101,21 +80230,21 @@ icon_state = "silverfull" }, /area/almayer/shipboard/brig/cic_hallway) -"xmn" = ( -/obj/structure/surface/rack, -/obj/item/tool/weldpack, -/obj/item/storage/toolbox/mechanical{ +"xml" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; pixel_x = 1; - pixel_y = 7 + pixel_y = 1 }, -/obj/item/storage/toolbox/mechanical/green{ - pixel_x = 1; - pixel_y = -1 +/obj/structure/stairs/perspective{ + dir = 1; + icon_state = "p_stair_full" }, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/platform{ + dir = 8 }, -/area/almayer/maint/hull/lower/l_f_p) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "xmJ" = ( /obj/structure/closet, /obj/structure/sign/safety/bathunisex{ @@ -80142,6 +80271,22 @@ icon_state = "dark_sterile" }, /area/almayer/shipboard/brig/surgery) +"xnn" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_m_s) +"xnr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/machinery/door/poddoor/almayer{ + id = "s_umbilical"; + name = "\improper Umbillical Airlock"; + unacidable = 1 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/hallways/lower/port_umbilical) "xns" = ( /obj/structure/machinery/door_control{ id = "ARES JoeCryo"; @@ -80164,6 +80309,13 @@ icon_state = "red" }, /area/almayer/command/lifeboat) +"xnG" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_p) "xnI" = ( /obj/effect/landmark/start/requisition, /turf/open/floor/plating/plating_catwalk, @@ -80195,28 +80347,15 @@ icon_state = "bluecorner" }, /area/almayer/squads/delta) -"xog" = ( -/obj/effect/step_trigger/clone_cleaner, -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - dir = 8; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) "xoj" = ( /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop) -"xos" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"xow" = ( +/obj/structure/sign/safety/nonpress_ag{ + pixel_x = 32 }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_fore_hallway) -"xoB" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/u_f_s) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "xoJ" = ( /obj/structure/machinery/door/airlock/almayer/maint{ dir = 1 @@ -80231,15 +80370,15 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering/port) -"xpc" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 1; - name = "ship-grade camera" +"xoX" = ( +/obj/structure/machinery/light{ + dir = 8 }, /turf/open/floor/almayer{ - icon_state = "green" + dir = 8; + icon_state = "silver" }, -/area/almayer/hallways/lower/starboard_midship_hallway) +/area/almayer/hallways/upper/aft_hallway) "xpi" = ( /obj/structure/sink{ dir = 8; @@ -80257,24 +80396,6 @@ icon_state = "dark_sterile" }, /area/almayer/living/commandbunks) -"xpl" = ( -/obj/structure/machinery/camera/autoname/almayer{ - dir = 8; - name = "ship-grade camera" - }, -/obj/structure/sign/safety/four{ - pixel_x = 31; - pixel_y = -8 - }, -/obj/structure/sign/safety/ammunition{ - pixel_x = 32; - pixel_y = 7 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/hallways/lower/port_midship_hallway) "xpo" = ( /obj/structure/closet/secure_closet/cmdcabinet{ desc = "A bulletproof cabinet containing communications equipment."; @@ -80292,12 +80413,20 @@ icon_state = "red" }, /area/almayer/shipboard/brig/chief_mp_office) -"xpL" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, +"xpq" = ( +/obj/effect/step_trigger/clone_cleaner, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_p) +/area/almayer/hallways/lower/starboard_fore_hallway) +"xpG" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_y = -32 + }, +/obj/structure/sign/safety/manualopenclose{ + pixel_x = 15; + pixel_y = -32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "xpT" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -80318,6 +80447,23 @@ icon_state = "plating" }, /area/almayer/engineering/lower/engine_core) +"xqj" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/door/airlock/almayer/maint/reinforced{ + access_modified = 1; + req_one_access = null; + req_one_access_txt = "7;19" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/vehiclehangar) +"xqm" = ( +/obj/structure/sign/safety/security{ + pixel_x = 32 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/s_bow) "xqp" = ( /obj/structure/machinery/body_scanconsole{ dir = 8; @@ -80377,19 +80523,6 @@ icon_state = "plate" }, /area/almayer/command/corporateliaison) -"xrg" = ( -/obj/structure/sign/safety/hazard{ - pixel_x = 32; - pixel_y = 7 - }, -/obj/structure/sign/safety/airlock{ - pixel_x = 32; - pixel_y = -8 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) "xrq" = ( /obj/structure/closet/firecloset, /obj/item/clothing/mask/gas, @@ -80424,17 +80557,6 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) -"xrC" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/obj/effect/step_trigger/clone_cleaner, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/hallways/lower/starboard_fore_hallway) "xrI" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -80443,20 +80565,26 @@ icon_state = "plate" }, /area/almayer/engineering/lower/workshop) -"xrT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 +"xsc" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/platform{ - dir = 8 +/turf/open/floor/almayer{ + icon_state = "test_floor4" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/repair_bay) +/area/almayer/hallways/lower/port_umbilical) "xsg" = ( /obj/structure/pipes/standard/simple/hidden/supply, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/main_office) +"xsj" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) "xsl" = ( /obj/structure/machinery/alarm/almayer{ dir = 1 @@ -80466,28 +80594,19 @@ icon_state = "orange" }, /area/almayer/engineering/upper_engineering) -"xss" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/lower/cryo_cells) -"xsv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "xsw" = ( /turf/open/floor/almayer{ dir = 6; icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_medbay) +"xsy" = ( +/obj/item/pipe{ + dir = 4; + layer = 3.5 + }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "xsz" = ( /obj/effect/decal/warning_stripes{ icon_state = "SE-out" @@ -80497,27 +80616,49 @@ icon_state = "plating" }, /area/almayer/medical/upper_medical) -"xsQ" = ( -/obj/structure/surface/table/almayer, -/obj/item/stack/sheet/glass{ - amount = 20; - pixel_x = 3; - pixel_y = 3 +"xtg" = ( +/obj/structure/machinery/door_control{ + id = "laddernorthwest"; + name = "North West Ladders Shutters"; + pixel_x = 25; + req_one_access_txt = "2;3;12;19"; + throw_range = 15 }, -/obj/item/weapon/dart, -/obj/item/weapon/dart, -/obj/item/weapon/dart, -/obj/item/weapon/dart/green, -/obj/item/weapon/dart/green, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) -"xsX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/starboard_fore_hallway) +"xtk" = ( +/obj/structure/machinery/light/small{ + dir = 8 }, -/obj/structure/machinery/light, /turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/maint/hull/lower/l_a_p) +"xtr" = ( +/obj/effect/landmark/start/nurse, +/obj/effect/landmark/late_join/nurse, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/living/offices) +"xtI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = 12; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + dir = 4; + pixel_x = -14; + pixel_y = 13 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/upper/mess) "xtM" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -80525,26 +80666,17 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/lower_medical_lobby) -"xtO" = ( -/obj/item/device/radio/intercom{ - freerange = 1; - name = "General Listening Channel"; - pixel_y = 28 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "green" - }, -/area/almayer/hallways/upper/aft_hallway) -"xub" = ( +"xtU" = ( /obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_midship_hallway) +/obj/structure/surface/rack, +/obj/item/frame/table, +/obj/item/frame/table, +/obj/item/frame/table, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) "xuc" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -80552,23 +80684,13 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/cic_hallway) -"xui" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_aft_hallway) -"xuy" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "red" +"xun" = ( +/obj/structure/largecrate/supply/supplies/water, +/obj/item/toy/deck{ + pixel_y = 12 }, -/area/almayer/hallways/lower/port_fore_hallway) +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) "xuE" = ( /obj/structure/machinery/door/airlock/almayer/research/glass/reinforced{ dir = 1; @@ -80615,6 +80737,13 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"xvB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_midship_hallway) "xvE" = ( /obj/structure/machinery/door/firedoor/border_only/almayer, /obj/structure/machinery/door/airlock/multi_tile/almayer/marine/charlie{ @@ -80638,16 +80767,6 @@ icon_state = "silver" }, /area/almayer/command/airoom) -"xvO" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/open/floor/almayer{ - dir = 5; - icon_state = "silver" - }, -/area/almayer/hallways/upper/aft_hallway) "xvQ" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/sentencing{ @@ -80664,15 +80783,6 @@ icon_state = "plate" }, /area/almayer/squads/bravo) -"xwd" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "xwl" = ( /obj/structure/window/reinforced{ dir = 4; @@ -80686,18 +80796,6 @@ icon_state = "cargo_arrow" }, /area/almayer/squads/alpha_bravo_shared) -"xwm" = ( -/obj/structure/sign/safety/security{ - pixel_x = 15; - pixel_y = 32 - }, -/obj/structure/sign/safety/restrictedarea{ - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_fore_hallway) "xwp" = ( /obj/item/storage/box/matches{ pixel_x = -11; @@ -80728,15 +80826,26 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"xwU" = ( -/obj/structure/sign/safety/medical{ - pixel_x = 8; - pixel_y = -32 +"xwT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /turf/open/floor/almayer{ - icon_state = "green" + dir = 8; + icon_state = "blue" }, /area/almayer/hallways/upper/aft_hallway) +"xwU" = ( +/obj/item/roller, +/obj/structure/surface/rack, +/obj/item/roller, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "xwX" = ( /turf/open/floor/almayer{ dir = 9; @@ -80781,6 +80890,12 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/basketball) +"xxj" = ( +/turf/open/floor/almayer{ + dir = 5; + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "xxm" = ( /obj/structure/bed{ can_buckle = 0 @@ -80818,19 +80933,16 @@ }, /turf/open/floor/plating, /area/almayer/living/port_emb) -"xxG" = ( -/obj/structure/prop/holidays/string_lights{ - pixel_y = 27 - }, -/obj/structure/largecrate/random/barrel/red, -/obj/item/reagent_container/food/drinks/cans/cola{ - pixel_x = -2; - pixel_y = 16 +"xxr" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/binoculars, +/obj/item/device/whistle{ + pixel_y = 5 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/maint/hull/upper/u_f_s) "xxI" = ( /obj/structure/cargo_container/wy/mid, /obj/structure/sign/poster{ @@ -80929,12 +81041,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/south2) -"xyQ" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silvercorner" - }, -/area/almayer/hallways/lower/repair_bay) "xyY" = ( /obj/structure/pipes/standard/simple/hidden/supply, /obj/effect/decal/warning_stripes{ @@ -80946,11 +81052,6 @@ icon_state = "green" }, /area/almayer/squads/req) -"xyZ" = ( -/obj/structure/machinery/light/small, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/s_bow) "xzf" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -80961,21 +81062,17 @@ icon_state = "blue" }, /area/almayer/living/basketball) -"xzh" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/upper/u_m_p) -"xzB" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_s) -"xzI" = ( -/obj/structure/machinery/firealarm{ - pixel_y = 28 +"xzx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/open/floor/almayer{ - dir = 1; - icon_state = "green" + icon_state = "plate" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/maint/hull/lower/l_m_p) "xzO" = ( /obj/structure/closet/secure_closet{ name = "\improper Execution Firearms" @@ -81008,13 +81105,12 @@ icon_state = "emeraldfull" }, /area/almayer/living/briefing) -"xAu" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = -32 +"xAv" = ( +/turf/open/floor/almayer{ + dir = 4; + icon_state = "emeraldcorner" }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/s_bow) +/area/almayer/hallways/lower/port_midship_hallway) "xAB" = ( /obj/structure/surface/table/almayer, /obj/item/paper_bin/uscm, @@ -81024,6 +81120,16 @@ icon_state = "green" }, /area/almayer/squads/req) +"xAC" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/aft_hallway) "xAI" = ( /obj/structure/platform{ dir = 1 @@ -81059,12 +81165,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/port) -"xBK" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/maint/hull/upper/u_f_p) "xBQ" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -81072,14 +81172,12 @@ }, /turf/open/floor/almayer, /area/almayer/squads/charlie_delta_shared) -"xBS" = ( -/obj/structure/bed/chair/comfy/beige{ - dir = 4 - }, +"xBT" = ( +/obj/structure/surface/rack, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/u_a_s) +/area/almayer/maint/hull/lower/l_f_p) "xBV" = ( /obj/structure/machinery/light, /turf/open/floor/almayer{ @@ -81109,17 +81207,16 @@ }, /turf/open/floor/carpet, /area/almayer/command/corporateliaison) -"xCy" = ( -/obj/structure/sign/safety/maint{ - pixel_x = -19; - pixel_y = -6 +"xCQ" = ( +/obj/structure/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/sign/safety/bulkhead_door{ - pixel_x = -19; - pixel_y = 6 +/obj/structure/pipes/standard/manifold/hidden/supply, +/turf/open/floor/almayer{ + icon_state = "orange" }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) +/area/almayer/hallways/upper/stern_hallway) "xDe" = ( /obj/effect/projector{ name = "Almayer_Down4"; @@ -81136,6 +81233,10 @@ icon_state = "silver" }, /area/almayer/shipboard/brig/cic_hallway) +"xDy" = ( +/obj/item/ammo_casing/bullet, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_p) "xDC" = ( /obj/structure/pipes/standard/simple/hidden/supply/no_boom, /turf/open/floor/almayer/no_build{ @@ -81149,15 +81250,6 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"xDG" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/maint/hull/upper/u_a_s) "xDV" = ( /obj/effect/step_trigger/clone_cleaner, /obj/effect/decal/warning_stripes{ @@ -81168,14 +81260,20 @@ icon_state = "red" }, /area/almayer/hallways/upper/port) -"xEe" = ( -/obj/structure/prop/invuln/joey, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) +"xEq" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "xEs" = ( -/obj/effect/landmark/yautja_teleport, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "xEz" = ( /obj/structure/surface/table/reinforced/prison, /obj/item/book/manual/surgery, @@ -81187,6 +81285,15 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/operating_room_two) +"xEI" = ( +/obj/structure/stairs/perspective{ + icon_state = "p_stair_full" + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) "xEO" = ( /turf/open/floor/prison{ icon_state = "kitchen" @@ -81198,21 +81305,12 @@ icon_state = "plate" }, /area/almayer/living/offices) -"xFt" = ( -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_f_p) "xFP" = ( /turf/open/floor/almayer{ dir = 5; icon_state = "red" }, /area/almayer/shipboard/starboard_missiles) -"xFW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/almayer{ - icon_state = "silver" - }, -/area/almayer/hallways/upper/aft_hallway) "xFZ" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/manifold/hidden/supply{ @@ -81230,18 +81328,18 @@ icon_state = "green" }, /area/almayer/shipboard/brig/cells) -"xGm" = ( -/obj/structure/platform_decoration{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) "xGo" = ( /obj/structure/machinery/autolathe, /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/squads/req) +"xGv" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "xGE" = ( /obj/structure/disposalpipe/segment, /obj/structure/pipes/standard/simple/hidden/supply{ @@ -81263,15 +81361,6 @@ icon_state = "test_floor4" }, /area/almayer/squads/bravo) -"xGF" = ( -/obj/structure/machinery/vending/snack{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_f_p) "xGJ" = ( /obj/structure/flora/pottedplant{ icon_state = "pottedplant_22"; @@ -81282,78 +81371,38 @@ icon_state = "red" }, /area/almayer/living/briefing) -"xGK" = ( -/obj/structure/surface/table/reinforced/almayer_B, -/obj/item/storage/box/lights/tubes{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/effect/decal/cleanable/ash{ - pixel_y = 19 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) -"xGT" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"xHa" = ( -/obj/structure/surface/rack, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/tool, -/obj/effect/spawner/random/powercell, -/obj/effect/spawner/random/powercell, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_p) -"xHl" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/vehiclehangar) "xHp" = ( /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/squads/alpha_bravo_shared) -"xHD" = ( -/obj/structure/machinery/light, -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/turf/open/floor/almayer{ - dir = 10; - icon_state = "silver" +"xHr" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/lights/tubes{ + pixel_x = -8 }, -/area/almayer/maint/hull/upper/u_m_p) -"xHS" = ( -/obj/structure/reagent_dispensers/fueltank/oxygentank{ - anchored = 1 +/obj/item/storage/box/lights/tubes{ + pixel_x = 5 }, -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +/obj/item/storage/box/lights/tubes{ + pixel_y = 10 }, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"xHx" = ( /turf/open/floor/almayer{ - icon_state = "cargo" + icon_state = "plate" }, -/area/almayer/engineering/lower/workshop/hangar) -"xHX" = ( -/obj/structure/sign/safety/restrictedarea{ - pixel_x = 8; - pixel_y = 32 +/area/almayer/maint/upper/u_m_s) +"xHC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 32 }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/p_bow) +/area/almayer/maint/hull/lower/l_f_p) "xId" = ( /obj/structure/surface/rack, /obj/item/mortar_shell/he, @@ -81370,6 +81419,14 @@ icon_state = "cargo" }, /area/almayer/medical/lower_medical_medbay) +"xIp" = ( +/obj/structure/surface/table/almayer, +/obj/item/card/id/visa, +/obj/item/tool/crew_monitor, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_s) "xIq" = ( /obj/structure/machinery/firealarm{ dir = 4; @@ -81394,15 +81451,24 @@ icon_state = "red" }, /area/almayer/shipboard/brig/processing) +"xIy" = ( +/obj/structure/machinery/door/airlock/almayer/maint, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/lower/cryo_cells) +"xIB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "xIQ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/almayer, /area/almayer/living/offices) -"xIV" = ( -/turf/open/floor/almayer, -/area/almayer/maint/upper/mess) "xIW" = ( /obj/structure/machinery/light{ dir = 4 @@ -81437,17 +81503,39 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"xJp" = ( -/obj/structure/largecrate/random/barrel/yellow, +"xJr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) +"xJv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, /turf/open/floor/almayer{ - icon_state = "plate" + dir = 8; + icon_state = "orange" }, -/area/almayer/maint/hull/lower/l_m_s) +/area/almayer/hallways/upper/stern_hallway) "xJH" = ( /turf/open/floor/almayer{ icon_state = "cargo" }, /area/almayer/squads/charlie_delta_shared) +"xJK" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_p) "xJR" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -81464,18 +81552,41 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"xKG" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 +"xJV" = ( +/turf/open/floor/almayer{ + icon_state = "mono" }, -/obj/structure/machinery/door_control{ - id = "Under Construction Shutters"; - name = "shutter-control"; - pixel_x = -25 +/area/almayer/hallways/upper/stern_hallway) +"xJY" = ( +/obj/structure/machinery/light{ + dir = 1 }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/obj/item/device/radio/intercom{ + freerange = 1; + name = "General Listening Channel"; + pixel_y = 28 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/port_aft_hallway) +"xKo" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/obj/structure/largecrate/random, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/s_bow) +"xKy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/upper/stern_hallway) "xKM" = ( /obj/structure/machinery/status_display{ pixel_x = 16; @@ -81522,28 +81633,15 @@ icon_state = "cargo" }, /area/almayer/shipboard/brig/general_equipment) -"xLn" = ( -/obj/structure/largecrate/random/case/double, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/s_stern) -"xLu" = ( -/obj/structure/largecrate/random/barrel/red, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) -"xLX" = ( -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 9 - }, +"xLp" = ( +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) +"xLC" = ( /turf/open/floor/almayer{ - icon_state = "plate" + dir = 10; + icon_state = "red" }, -/area/almayer/hallways/lower/port_midship_hallway) +/area/almayer/hallways/upper/stern_hallway) "xMf" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 4 @@ -81572,15 +81670,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) -"xMm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/largecrate/random/barrel/green, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_a_p) "xMs" = ( /turf/closed/wall/almayer/white, /area/almayer/medical/operating_room_two) @@ -81609,26 +81698,6 @@ dir = 6 }, /area/almayer/command/cic) -"xMG" = ( -/obj/structure/machinery/door_control{ - id = "OuterShutter"; - name = "Outer Shutter"; - pixel_x = 5; - pixel_y = -2; - req_one_access_txt = "1;3" - }, -/obj/structure/surface/table/reinforced/almayer_B, -/obj/structure/machinery/door_control{ - id = "OfficeSafeRoom"; - name = "Office Safe Room"; - pixel_x = 5; - pixel_y = 5; - req_one_access_txt = "1;3" - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/shipboard/panic) "xML" = ( /obj/structure/machinery/computer/cameras/wooden_tv/prop{ pixel_x = -4; @@ -81696,12 +81765,6 @@ icon_state = "cargo" }, /area/almayer/hallways/hangar) -"xNl" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "xNu" = ( /obj/structure/toilet{ dir = 1 @@ -81735,24 +81798,14 @@ icon_state = "plate" }, /area/almayer/living/auxiliary_officer_office) -"xNM" = ( -/obj/structure/machinery/cm_vending/gear/vehicle_crew, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/lower/vehiclehangar) -"xOs" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/obj/structure/sign/poster/pinup{ - pixel_x = -30 - }, -/turf/open/floor/almayer{ - icon_state = "dark_sterile" - }, -/area/almayer/command/corporateliaison) +"xNY" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/p_bow) +"xOb" = ( +/obj/docking_port/stationary/escape_pod/north, +/turf/open/floor/plating, +/area/almayer/maint/hull/lower/l_m_p) "xOL" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -81782,26 +81835,6 @@ dir = 4 }, /area/almayer/medical/containment/cell) -"xPn" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - pixel_y = 1 - }, -/obj/structure/machinery/light{ - dir = 4 - }, -/obj/structure/stairs/perspective{ - dir = 1; - icon_state = "p_stair_full" - }, -/obj/structure/platform{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "silver" - }, -/area/almayer/hallways/lower/repair_bay) "xPq" = ( /obj/structure/filingcabinet, /obj/item/folder/yellow, @@ -81810,12 +81843,12 @@ icon_state = "orange" }, /area/almayer/engineering/lower/workshop/hangar) -"xPu" = ( +"xPU" = ( /obj/structure/pipes/standard/simple/hidden/supply{ - dir = 10 + dir = 4 }, /turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +/area/almayer/hallways/lower/port_midship_hallway) "xPZ" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 10 @@ -81831,24 +81864,6 @@ }, /turf/open/floor/almayer, /area/almayer/command/cic) -"xQd" = ( -/obj/structure/sign/safety/hvac_old{ - pixel_x = 8; - pixel_y = -32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_p) -"xQe" = ( -/obj/structure/machinery/vending/cigarette{ - density = 0; - pixel_y = 18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/u_a_p) "xQg" = ( /obj/structure/pipes/vents/pump{ dir = 8 @@ -81858,40 +81873,27 @@ icon_state = "bluecorner" }, /area/almayer/living/pilotbunks) -"xQj" = ( -/obj/item/pipe{ - dir = 4; - layer = 3.5 +"xQl" = ( +/turf/open/floor/almayer{ + dir = 9; + icon_state = "blue" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/hallways/upper/aft_hallway) "xQm" = ( /turf/open/floor/almayer/research/containment/floor2{ dir = 1 }, /area/almayer/medical/containment/cell) -"xQz" = ( -/obj/structure/machinery/alarm/almayer{ - dir = 1 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/port_aft_hallway) +"xQq" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/hallways/lower/starboard_umbilical) "xQV" = ( /obj/effect/step_trigger/clone_cleaner, /turf/open/floor/almayer/no_build{ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"xQW" = ( -/obj/structure/sign/safety/bathunisex{ - pixel_x = -18 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) "xRj" = ( /obj/structure/bed/chair{ dir = 8; @@ -81925,17 +81927,17 @@ icon_state = "silver" }, /area/almayer/command/computerlab) -"xRn" = ( -/turf/open/floor/almayer{ - dir = 1; - icon_state = "greencorner" - }, -/area/almayer/hallways/upper/aft_hallway) "xRw" = ( /turf/open/floor/almayer/uscm/directional{ dir = 1 }, /area/almayer/living/briefing) +"xRG" = ( +/obj/effect/step_trigger/clone_cleaner, +/turf/open/floor/almayer{ + icon_state = "green" + }, +/area/almayer/hallways/upper/aft_hallway) "xRH" = ( /obj/structure/sign/safety/fibre_optics{ pixel_y = 32 @@ -81956,16 +81958,14 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) -"xSl" = ( -/obj/structure/machinery/firealarm{ - dir = 4; - pixel_x = 24 +"xRK" = ( +/obj/structure/sign/safety/cryo{ + pixel_y = 26 }, /turf/open/floor/almayer{ - dir = 4; - icon_state = "red" + icon_state = "plate" }, -/area/almayer/hallways/upper/stern_hallway) +/area/almayer/hallways/lower/starboard_aft_hallway) "xSw" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -81976,12 +81976,6 @@ }, /turf/open/floor/plating, /area/almayer/squads/charlie) -"xSx" = ( -/turf/open/floor/almayer{ - dir = 4; - icon_state = "red" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "xSz" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/status_display{ @@ -82009,6 +82003,10 @@ icon_state = "red" }, /area/almayer/squads/alpha) +"xSX" = ( +/obj/structure/pipes/standard/simple/hidden/supply, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "xSY" = ( /obj/structure/machinery/light{ dir = 1 @@ -82028,17 +82026,6 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/engine_core) -"xTx" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/upper/u_f_p) -"xTG" = ( -/obj/structure/closet/emcloset, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/upper/p_stern) "xTH" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/recharger, @@ -82058,6 +82045,20 @@ icon_state = "plate" }, /area/almayer/living/numbertwobunks) +"xTQ" = ( +/obj/structure/surface/rack, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/ob_ammo/ob_fuel, +/obj/structure/sign/safety/fire_haz{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/p_bow) "xTR" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/poddoor/almayer/open{ @@ -82103,13 +82104,18 @@ }, /turf/open/floor/wood/ship, /area/almayer/command/corporateliaison) -"xUy" = ( -/obj/item/reagent_container/food/snacks/wrapped/barcardine, -/obj/structure/surface/rack, +"xUb" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating, +/area/almayer/maint/lower/constr) +"xUt" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/upper/p_stern) +/area/almayer/maint/hull/lower/stern) "xUA" = ( /obj/structure/surface/table/almayer, /obj/item/storage/pouch/tools/tank, @@ -82126,25 +82132,23 @@ icon_state = "silver" }, /area/almayer/command/cic) -"xUV" = ( -/obj/structure/bed/chair{ - dir = 4 +"xUS" = ( +/obj/structure/largecrate/random/secure, +/obj/effect/decal/warning_stripes{ + icon_state = "E" }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/command/combat_correspondent) -"xUY" = ( -/obj/structure/disposalpipe/segment{ +/area/almayer/maint/hull/lower/l_a_p) +"xUV" = ( +/obj/structure/bed/chair{ dir = 4 }, -/obj/structure/machinery/light/small{ - dir = 1 - }, /turf/open/floor/almayer{ icon_state = "plate" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/command/combat_correspondent) "xVc" = ( /obj/effect/step_trigger/clone_cleaner, /obj/structure/machinery/door_control{ @@ -82158,6 +82162,16 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"xVd" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "xVe" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -82170,6 +82184,12 @@ icon_state = "red" }, /area/almayer/hallways/upper/starboard) +"xVi" = ( +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "xVk" = ( /turf/open/space, /area/space/almayer/lifeboat_dock) @@ -82207,28 +82227,31 @@ }, /turf/closed/wall/almayer, /area/almayer/living/tankerbunks) -"xVY" = ( -/obj/structure/machinery/light, -/turf/open/floor/almayer{ - icon_state = "green" - }, -/area/almayer/hallways/lower/port_midship_hallway) "xWd" = ( /obj/structure/disposalpipe/segment, /turf/open/floor/almayer{ icon_state = "orange" }, /area/almayer/squads/alpha_bravo_shared) -"xWo" = ( -/obj/structure/machinery/door/airlock/almayer/maint{ - access_modified = 1; - req_one_access = null; - req_one_access_txt = "19;21" +"xWh" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_a_p) +"xWi" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + dir = 8; + id = "laddersoutheast"; + name = "\improper South East Ladders Shutters" }, /turf/open/floor/almayer{ icon_state = "test_floor4" }, -/area/almayer/squads/req) +/area/almayer/hallways/lower/port_midship_hallway) "xWp" = ( /turf/open/floor/almayer, /area/almayer/living/offices/flight) @@ -82238,6 +82261,17 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cic_hallway) +"xWI" = ( +/obj/structure/machinery/door_control{ + id = "panicroomback"; + name = "\improper Safe Room"; + pixel_x = -25; + req_one_access_txt = "3" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "xWO" = ( /obj/structure/machinery/cm_vending/sorted/medical/wall_med{ pixel_y = -25 @@ -82261,6 +82295,15 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/living/port_emb) +"xWV" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/radio/intercom/alamo{ + layer = 2.9 + }, +/turf/open/floor/almayer{ + icon_state = "redfull" + }, +/area/almayer/living/offices/flight) "xXa" = ( /turf/open/floor/almayer{ dir = 8; @@ -82294,6 +82337,18 @@ }, /turf/open/floor/almayer, /area/almayer/engineering/lower/workshop/hangar) +"xXm" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "blue" + }, +/area/almayer/hallways/upper/aft_hallway) "xXr" = ( /obj/item/reagent_container/glass/beaker/bluespace, /obj/structure/machinery/chem_dispenser/research, @@ -82301,6 +82356,32 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) +"xXu" = ( +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) +"xXC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/port_midship_hallway) +"xXD" = ( +/obj/item/clothing/shoes/red, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_m_p) +"xXG" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/lower/l_f_s) "xXT" = ( /obj/effect/decal/warning_stripes{ icon_state = "N"; @@ -82316,6 +82397,13 @@ icon_state = "plate" }, /area/almayer/living/briefing) +"xXX" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "xYf" = ( /obj/structure/machinery/cm_vending/clothing/sea, /turf/open/floor/almayer{ @@ -82323,12 +82411,30 @@ icon_state = "plating" }, /area/almayer/shipboard/sea_office) -"xYr" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"xYg" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = -17; + pixel_y = 7 }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/p_bow) +/obj/structure/sign/safety/escapepod{ + pixel_x = -17; + pixel_y = -8 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "red" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) +"xYi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/vents/pump{ + dir = 4 + }, +/turf/open/floor/almayer{ + dir = 8; + icon_state = "orange" + }, +/area/almayer/hallways/lower/port_umbilical) "xYB" = ( /obj/structure/sign/safety/storage{ pixel_x = 8; @@ -82336,12 +82442,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/starboard_point_defense) -"xYE" = ( -/obj/structure/machinery/power/apc/almayer{ - dir = 4 - }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) "xYP" = ( /turf/open/floor/plating/plating_catwalk, /area/almayer/living/cryo_cells) @@ -82370,12 +82470,6 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/upper_engineering) -"xZf" = ( -/turf/open/floor/almayer{ - dir = 6; - icon_state = "blue" - }, -/area/almayer/hallways/upper/aft_hallway) "xZk" = ( /obj/item/prop/helmetgarb/gunoil{ layer = 4.2; @@ -82403,10 +82497,15 @@ icon_state = "plate" }, /area/almayer/living/briefing) -"xZz" = ( -/obj/item/paper/almayer_storage, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_a_p) +"xZs" = ( +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) "xZG" = ( /obj/structure/machinery/light{ dir = 4 @@ -82415,28 +82514,6 @@ /obj/structure/bed, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"xZH" = ( -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 5 - }, -/turf/open/floor/almayer, -/area/almayer/maint/hull/upper/u_f_p) -"xZM" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "S" - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_umbilical) -"xZR" = ( -/obj/structure/sign/safety/distribution_pipes{ - pixel_x = 32 - }, -/turf/open/floor/almayer{ - dir = 4; - icon_state = "orange" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) "xZU" = ( /obj/structure/machinery/cryopod{ pixel_y = 6 @@ -82448,6 +82525,12 @@ icon_state = "cargo" }, /area/almayer/squads/charlie) +"yaa" = ( +/obj/structure/surface/rack, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_m_p) "yac" = ( /obj/structure/platform_decoration{ dir = 8 @@ -82457,18 +82540,22 @@ icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"yap" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W" +"yai" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 }, /obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 + icon_state = "N"; + pixel_y = 2 }, -/turf/open/floor/almayer{ - icon_state = "plate" +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/upper/u_f_s) +"yak" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 }, -/area/almayer/hallways/lower/starboard_fore_hallway) +/turf/open/floor/almayer, +/area/almayer/maint/hull/upper/u_f_s) "yaz" = ( /obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor{ name = "\improper Officer's Study" @@ -82503,31 +82590,16 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"yaR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/machinery/door/firedoor/border_only/almayer, -/turf/open/floor/almayer{ - icon_state = "test_floor4" - }, -/area/almayer/hallways/upper/stern_hallway) -"yaX" = ( -/obj/structure/machinery/door/poddoor/railing{ - dir = 2; - id = "vehicle_elevator_railing" - }, -/obj/structure/pipes/standard/simple/hidden/supply{ - dir = 4 - }, -/turf/open/floor/almayer{ - dir = 1; - icon_state = "cargo_arrow" +"yaS" = ( +/turf/closed/wall/almayer, +/area/almayer/hallways/lower/port_umbilical) +"yaW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 3 }, -/area/almayer/hallways/lower/vehiclehangar) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "yaZ" = ( /obj/effect/decal/warning_stripes{ icon_state = "S"; @@ -82537,26 +82609,16 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) -"ybk" = ( -/turf/closed/wall/almayer, -/area/almayer/hallways/upper/stern_hallway) -"ybm" = ( -/obj/structure/surface/table/almayer, -/obj/item/clothing/head/hardhat{ - pixel_x = 10; - pixel_y = 1 - }, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = -8; - pixel_y = 6 +"ybq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 }, -/obj/item/clothing/suit/storage/hazardvest/yellow, -/obj/item/clothing/suit/storage/hazardvest{ - pixel_x = 8; - pixel_y = 7 +/turf/open/floor/almayer{ + dir = 5; + icon_state = "plating" }, -/turf/open/floor/plating, -/area/almayer/maint/lower/constr) +/area/almayer/shipboard/panic) "ybz" = ( /obj/structure/machinery/brig_cell/cell_4{ pixel_x = 32; @@ -82564,14 +82626,6 @@ }, /turf/open/floor/almayer, /area/almayer/shipboard/brig/processing) -"ybP" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "N"; - pixel_y = 1 - }, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_umbilical) "ybU" = ( /obj/structure/machinery/disposal, /obj/structure/disposalpipe/trunk{ @@ -82595,6 +82649,13 @@ icon_state = "redfull" }, /area/almayer/shipboard/port_missiles) +"ycb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/light, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_midship_hallway) "ycd" = ( /obj/structure/bed/chair{ dir = 8; @@ -82610,9 +82671,6 @@ icon_state = "mono" }, /area/almayer/medical/medical_science) -"ycl" = ( -/turf/open/floor/plating, -/area/almayer/maint/hull/lower/l_m_s) "ycm" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -82644,14 +82702,13 @@ icon_state = "green" }, /area/almayer/squads/req) -"ycM" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" +"ycS" = ( +/obj/structure/sign/safety/galley{ + pixel_x = 8; + pixel_y = 32 }, -/area/almayer/maint/hull/upper/u_m_p) +/turf/open/floor/almayer, +/area/almayer/hallways/lower/starboard_aft_hallway) "ycZ" = ( /obj/structure/sign/poster{ pixel_y = 32 @@ -82661,15 +82718,19 @@ icon_state = "blue" }, /area/almayer/squads/delta) -"ydf" = ( -/obj/structure/platform{ +"ydb" = ( +/obj/structure/machinery/light/small{ dir = 1 }, -/obj/structure/largecrate/random/case, -/turf/open/floor/almayer{ - icon_state = "plate" +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12 }, -/area/almayer/maint/hull/upper/u_a_s) +/obj/structure/prop/invuln/overhead_pipe{ + pixel_x = 12; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/stern) "ydh" = ( /obj/structure/pipes/vents/pump{ dir = 1 @@ -82680,6 +82741,17 @@ icon_state = "plate" }, /area/almayer/engineering/upper_engineering/port) +"ydw" = ( +/obj/structure/closet/firecloset, +/obj/structure/machinery/camera/autoname/almayer{ + dir = 8; + name = "ship-grade camera" + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "greencorner" + }, +/area/almayer/hallways/lower/port_fore_hallway) "ydz" = ( /obj/structure/pipes/standard/manifold/hidden/supply{ dir = 1 @@ -82688,19 +82760,6 @@ icon_state = "mono" }, /area/almayer/lifeboat_pumps/north2) -"ydA" = ( -/obj/structure/stairs{ - dir = 4 - }, -/obj/effect/projector{ - name = "Almayer_Up3"; - vector_x = -1; - vector_y = 102 - }, -/turf/open/floor/plating/almayer{ - allow_construction = 0 - }, -/area/almayer/hallways/lower/port_fore_hallway) "ydE" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -82742,6 +82801,12 @@ icon_state = "orangefull" }, /area/almayer/living/briefing) +"ydR" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/s_bow) "ydY" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 9 @@ -82750,6 +82815,35 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) +"yeb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 4 + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/upper/stern_hallway) +"yef" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/p_bow) +"yen" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/maint/hull/upper/u_a_p) +"yep" = ( +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/hallways/lower/starboard_midship_hallway) "yeu" = ( /obj/structure/pipes/standard/simple/hidden/supply{ dir = 6 @@ -82787,6 +82881,16 @@ icon_state = "plate" }, /area/almayer/hallways/hangar) +"yeO" = ( +/obj/structure/window/framed/almayer, +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "OfficeSafeRoom"; + name = "\improper Office Safe Room" + }, +/turf/open/floor/almayer{ + icon_state = "plate" + }, +/area/almayer/shipboard/panic) "yeR" = ( /obj/structure/machinery/cm_vending/clothing/senior_officer{ req_access = null; @@ -82795,12 +82899,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/shipboard/brig/chief_mp_office) -"yfd" = ( -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/hallways/lower/vehiclehangar) "yff" = ( /obj/structure/machinery/cm_vending/clothing/dress{ density = 0; @@ -82813,13 +82911,6 @@ icon_state = "cargo" }, /area/almayer/command/cic) -"yfg" = ( -/obj/structure/pipes/standard/manifold/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/hallways/lower/starboard_midship_hallway) "yfm" = ( /obj/effect/landmark/start/marine/delta, /obj/effect/landmark/late_join/delta, @@ -82827,13 +82918,6 @@ icon_state = "plate" }, /area/almayer/squads/delta) -"yfy" = ( -/obj/structure/barricade/handrail{ - dir = 1; - pixel_y = 2 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/port_fore_hallway) "yfG" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" @@ -82846,19 +82930,6 @@ }, /turf/open/floor/wood/ship, /area/almayer/living/commandbunks) -"yfL" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "W"; - pixel_x = -1 - }, -/obj/structure/bed/sofa/south/white/left{ - pixel_y = 16 - }, -/turf/open/floor/almayer{ - dir = 9; - icon_state = "silver" - }, -/area/almayer/maint/hull/upper/u_m_p) "yfS" = ( /obj/structure/window/framed/almayer, /obj/structure/machinery/door/firedoor/border_only/almayer{ @@ -82866,6 +82937,10 @@ }, /turf/open/floor/plating, /area/almayer/living/grunt_rnr) +"ygb" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_m_p) "yge" = ( /obj/structure/surface/table/almayer, /obj/structure/machinery/computer/cameras/almayer/vehicle{ @@ -82875,44 +82950,12 @@ icon_state = "plate" }, /area/almayer/command/lifeboat) -"ygp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/pipes/standard/simple/hidden/supply, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ygv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/safety/nonpress_ag{ - pixel_x = 15; - pixel_y = -32 - }, -/obj/structure/sign/safety/west{ - pixel_y = -32 +"ygo" = ( +/obj/structure/machinery/power/apc/almayer{ + dir = 1 }, /turf/open/floor/plating/plating_catwalk, /area/almayer/maint/hull/lower/l_f_p) -"ygB" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "E"; - pixel_x = 1 - }, -/turf/open/floor/almayer{ - dir = 6; - icon_state = "green" - }, -/area/almayer/hallways/lower/starboard_midship_hallway) -"ygP" = ( -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/item/fuel_cell, -/obj/structure/surface/table/almayer, -/obj/item/fuel_cell, -/turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/engineering/lower/engine_core) "yhg" = ( /obj/structure/machinery/camera/autoname/almayer{ dir = 4; @@ -82921,42 +82964,29 @@ }, /turf/open/floor/plating/plating_catwalk, /area/almayer/shipboard/brig/cells) -"yht" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"yhx" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/clothing/glasses/welding{ + pixel_x = 8; + pixel_y = 3 + }, +/obj/item/tool/weldingtool{ + pixel_x = -11; + pixel_y = 5 + }, +/obj/structure/machinery/light/small{ + dir = 1 }, /turf/open/floor/almayer{ - icon_state = "red" + icon_state = "plate" }, -/area/almayer/living/cryo_cells) +/area/almayer/maint/hull/upper/u_a_p) "yhI" = ( /turf/open/floor/almayer{ dir = 4; icon_state = "red" }, /area/almayer/lifeboat_pumps/south1) -"yhR" = ( -/obj/structure/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_m_s) -"yhZ" = ( -/turf/closed/wall/almayer/reinforced, -/area/almayer/maint/hull/lower/p_bow) -"yia" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/lower/l_a_s) -"yih" = ( -/obj/structure/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/l_m_s) "yit" = ( /obj/structure/machinery/light{ dir = 4 @@ -82968,6 +82998,18 @@ icon_state = "ai_floors" }, /area/almayer/command/airoom) +"yiJ" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 6 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/lower/repair_bay) +"yiL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "yiW" = ( /obj/structure/machinery/cryopod/right{ layer = 3.1; @@ -82999,6 +83041,18 @@ icon_state = "sterile_green_side" }, /area/almayer/medical/morgue) +"yjf" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + name = "\improper Passenger Cryogenics Bay" + }, +/turf/open/floor/almayer{ + icon_state = "test_floor4" + }, +/area/almayer/maint/hull/upper/u_m_p) +"yjl" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/p_bow) "yjq" = ( /obj/structure/machinery/door/poddoor/almayer/locked{ icon_state = "almayer_pdoor"; @@ -83008,15 +83062,6 @@ icon_state = "test_floor4" }, /area/almayer/engineering/upper_engineering/notunnel) -"yjE" = ( -/obj/structure/sign/safety/water{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer{ - icon_state = "plate" - }, -/area/almayer/maint/hull/lower/stern) "yjG" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -83035,11 +83080,21 @@ icon_state = "blue" }, /area/almayer/living/pilotbunks) +"yjQ" = ( +/obj/structure/sign/safety/distribution_pipes{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/almayer, +/area/almayer/hallways/upper/aft_hallway) "yjU" = ( /turf/open/floor/almayer{ icon_state = "emeraldfull" }, /area/almayer/living/briefing) +"ykg" = ( +/turf/closed/wall/almayer, +/area/almayer/maint/upper/u_m_p) "ykj" = ( /obj/structure/machinery/door/firedoor/border_only/almayer{ dir = 2 @@ -83051,33 +83106,33 @@ icon_state = "test_floor4" }, /area/almayer/living/grunt_rnr) -"yko" = ( -/obj/vehicle/powerloader, -/obj/structure/platform{ - dir = 4 - }, -/obj/structure/platform{ - dir = 8 - }, +"yks" = ( /turf/open/floor/almayer{ - icon_state = "cargo" - }, -/area/almayer/hallways/lower/repair_bay) -"ykv" = ( -/obj/structure/machinery/door/poddoor/shutters/almayer/open{ - id = "InnerShutter"; - name = "\improper Saferoom Shutters" + dir = 5; + icon_state = "blue" }, -/turf/open/floor/almayer{ - icon_state = "test_floor4" +/area/almayer/hallways/upper/aft_hallway) +"ykB" = ( +/obj/structure/bed/chair{ + dir = 8 }, -/area/almayer/shipboard/panic) +/turf/open/floor/plating/plating_catwalk, +/area/almayer/maint/hull/lower/l_f_s) "ykI" = ( /obj/effect/decal/warning_stripes{ icon_state = "S" }, /turf/open/floor/plating/plating_catwalk, /area/almayer/engineering/lower) +"ykL" = ( +/obj/structure/pipes/standard/simple/hidden/supply{ + dir = 9 + }, +/turf/open/floor/almayer{ + dir = 4; + icon_state = "silver" + }, +/area/almayer/hallways/lower/repair_bay) "ykP" = ( /obj/structure/filingcabinet{ density = 0; @@ -83094,61 +83149,6 @@ icon_state = "plate" }, /area/almayer/shipboard/brig/main_office) -"ykY" = ( -/obj/structure/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/crate, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/obj/item/ammo_magazine/rifle/l42a/ap{ - current_rounds = 0 - }, -/turf/open/floor/plating/plating_catwalk, -/area/almayer/maint/hull/upper/u_m_s) "ylc" = ( /obj/effect/decal/warning_stripes{ icon_state = "E"; @@ -83183,23 +83183,13 @@ icon_state = "test_floor5" }, /area/almayer/engineering/lower/engine_core) -"ylN" = ( -/obj/structure/sign/safety/galley{ - pixel_x = 8; - pixel_y = 32 - }, -/turf/open/floor/almayer, -/area/almayer/hallways/lower/starboard_aft_hallway) -"ymg" = ( -/obj/effect/decal/warning_stripes{ - icon_state = "NW-out"; - layer = 2.5; - pixel_y = 1 - }, +"yma" = ( +/obj/effect/step_trigger/clone_cleaner, +/obj/structure/machinery/door/airlock/almayer/maint, /turf/open/floor/almayer{ - icon_state = "plate" + icon_state = "test_floor4" }, -/area/almayer/maint/hull/lower/l_f_p) +/area/almayer/maint/hull/upper/u_m_s) (1,1,1) = {" aaa @@ -90955,8 +90945,8 @@ aaa aaa aaa aad -uDg -uDg +sOq +sOq hPI pQr rib @@ -90974,8 +90964,8 @@ jNT jNT wSK feb -xiV -xiV +lFL +lFL ajZ aaa aaa @@ -91157,9 +91147,9 @@ aaf aaf aaf aaf -uDg -uDg -lHk +sOq +sOq +ryg naB wnw pHp @@ -91177,9 +91167,9 @@ xzO pNk jIH mtl -igS -xiV -xiV +ktH +lFL +lFL aaf aaf aaf @@ -91353,19 +91343,19 @@ aaa aaa aaa aad -uDg -uDg -uDg -uDg -uDg -uDg -uDg -uDg -aPN -lSJ +sOq +sOq +sOq +sOq +sOq +sOq +sOq +sOq +nkE +mjC naB pQr -jeR +jRH wvI vPf fvA @@ -91380,16 +91370,16 @@ mtl mtl mtl mtl -iuf -pnh -xiV -xiV -xiV -xiV -xiV -xiV -xiV -xiV +vFB +gWL +lFL +lFL +lFL +lFL +lFL +lFL +lFL +lFL ajZ aaa aaa @@ -91556,16 +91546,16 @@ aaa aaa aaa aad -uDg -cth -gkr -xkc -oGj -hSj -xkc -mph -nlh -rGr +sOq +hNh +sjC +pjr +fHY +aXV +pjr +unI +mIQ +bKG naB naB naB @@ -91581,18 +91571,18 @@ rdA alF sql alF -rwe -pdp -hZw -xYr -mjs -pdp -ohu -iUh -pdp -pdp -kSn -xiV +kAk +xXu +ogI +uwJ +hIl +xXu +ubB +csT +xXu +xXu +jIU +lFL ajZ bdH bdH @@ -91759,19 +91749,19 @@ bdH aac aaf aag -uDg -gkr -xkc -gkr -vAg -gxI -kqC -bBU -xkc -eeA +sOq +sjC +pjr +sjC +qPC +tla +vcg +xqm +pjr +vnU naB pQr -ggS +dFH wvI piK fvA @@ -91787,15 +91777,15 @@ xkd xkd xkd xkd -lRt -tsE -iVG -hmA -hmZ -oDh -oDh -pdp -xiV +wUc +hfx +kvj +kWA +idf +tyH +tyH +xXu +lFL aag aaf ajY @@ -91961,10 +91951,10 @@ bdH bdH aad aag -uDg -uDg -gkr -xkc +sOq +sOq +sjC +pjr vBm vBm vBm @@ -91996,10 +91986,10 @@ xkd xkd xkd xkd -pdp -oDh -xiV -xiV +xXu +tyH +lFL +lFL aag ajZ bdH @@ -92164,10 +92154,10 @@ bdH bdH aad aag -uDg -pOp -gkr -cth +sOq +pnI +sjC +hNh vBm rBV oPk @@ -92199,10 +92189,10 @@ uns vCy eyV xkd -mkF -oDh -pdp -xiV +nWt +tyH +xXu +lFL aag ajZ bdH @@ -92367,10 +92357,10 @@ bdH bdH aad aag -uDg -lDT -xkc -xyZ +sOq +naN +pjr +lHE vBm ldu wgi @@ -92402,10 +92392,10 @@ xGh jVa wDs xkd -oHf -oDh -pdp -xiV +abN +tyH +xXu +lFL aag ajZ bdH @@ -92570,9 +92560,9 @@ bdH bdH aad aag -uDg -xkc -gkr +sOq +pjr +sjC vBm vBm sFC @@ -92582,10 +92572,10 @@ vBm lOI pJv jLM -btn +sXy cMb rbi -wDp +kwU xys nkX iQB @@ -92606,9 +92596,9 @@ tUx wRN xkd xkd -pdp -oDh -xiV +xXu +tyH +lFL aag ajZ bdH @@ -92676,10 +92666,10 @@ aaa bdH aad aag -nBJ -nBJ -nBJ -nBJ +tNf +tNf +tNf +tNf aag dqw uwv @@ -92701,10 +92691,10 @@ dqw aag aag aag -wid -wid -wid -wid +tQN +tQN +tQN +tQN aag ajZ bdH @@ -92773,9 +92763,9 @@ bdH bdH aad aag -lrE -xkc -gkr +ocS +pjr +sjC vBm ykP xAj @@ -92809,9 +92799,9 @@ tUx xJe qLt xkd -pdp -oDh -cPj +xXu +tyH +pqG aag etE bdH @@ -92879,9 +92869,9 @@ aaa bdH aad aag -nBJ -kJc -jFt +tNf +sOH +dRN bAs bAs bAs @@ -92905,9 +92895,9 @@ bTT bTT bTT bAs -kOR -jYM -wid +oFb +obx +tQN aag ajZ bdH @@ -92976,9 +92966,9 @@ bdH bdH aad aag -lrE -gkr -xkc +ocS +sjC +pjr vBm ykP xjG @@ -93012,9 +93002,9 @@ ycm qCo pWr xkd -aGa -oDh -cPj +xXX +tyH +pqG aag ajZ bdH @@ -93082,9 +93072,9 @@ aaa bdH aad aag -nBJ -rUi -grv +tNf +jln +vXr bBA bAK bCY @@ -93108,9 +93098,9 @@ acr bPG acN bBA -gTK -fWg -wid +nHN +sjZ +tQN aag ajZ bdH @@ -93179,9 +93169,9 @@ bdH bdH aad aag -lrE -vDh -xkc +ocS +lYZ +pjr lrq lrq lrq @@ -93215,9 +93205,9 @@ cyZ jVa fJT xkd -rfB -pdp -cPj +mPQ +xXu +pqG aag eSU bdH @@ -93285,9 +93275,9 @@ aaa bdH aad aag -nBJ -uRR -mFQ +tNf +pDk +wjN bBA hWJ bCY @@ -93311,9 +93301,9 @@ bHP bPG hpk bBA -yhZ -wtD -wid +rAk +szS +tQN aag ajZ bdH @@ -93382,9 +93372,9 @@ bdH bdH aad aag -uDg -cth -qsp +sOq +hNh +vtH lrq kEc chv @@ -93418,9 +93408,9 @@ dfk vzz moB xkd -gNZ -pdp -xiV +pVg +xXu +lFL aag ajZ bdH @@ -93488,9 +93478,9 @@ aaa bdH aad aag -nBJ -ecS -eQR +tNf +qqi +fvs gol akb bCY @@ -93514,9 +93504,9 @@ bPn bPG ald gol -sGK -hLu -wid +kuI +lGZ +tQN aag ajZ bdH @@ -93585,9 +93575,9 @@ bdH bdH aad aag -uDg -cUl -gkr +sOq +tnD +sjC lrq heo nqe @@ -93621,9 +93611,9 @@ eZH tUx cXi xkd -ttB -pdp -xiV +vFr +xXu +lFL aag twB bdH @@ -93691,9 +93681,9 @@ aaa bdH aad aag -nBJ -eQR -xAu +tNf +fvs +neX bBA bAN bCY @@ -93717,9 +93707,9 @@ bPo bPG acs bBA -xHX -sGK -wid +edx +kuI +tQN aag ajZ bdH @@ -93788,9 +93778,9 @@ bdH bdH aad aag -lrE -vOM -gkr +ocS +nMT +sjC lrq kui uqo @@ -93824,9 +93814,9 @@ nYd thL jVa fgR -nEc -oDh -cPj +pwx +tyH +pqG aag ajZ bdH @@ -93894,9 +93884,9 @@ aaa bdH aad aag -nBJ -ldF -eox +tNf +cCG +iWW bBA bAO bCZ @@ -93920,9 +93910,9 @@ bDW bPJ iuz bBA -mVh -uMf -wid +aGh +bjh +tQN aag ajZ bdH @@ -93991,16 +93981,16 @@ bdH bdH aad aag -lrE -etN -xkc +ocS +lFv +pjr lrq sEZ nqe nqe nqe nqe -mza +vcL eRL wfB tpn @@ -94027,9 +94017,9 @@ liZ rUk jVa fgR -azg -gKv -cPj +xGv +tht +pqG aag rEr bdH @@ -94097,9 +94087,9 @@ aaa bdH aad aag -nBJ -ldF -eQR +tNf +cCG +fvs bBA bAP aqu @@ -94123,9 +94113,9 @@ aqu aqu bQz bBA -sGK -vOG -wid +kuI +tDw +tQN aag ajZ bdH @@ -94194,9 +94184,9 @@ bdH bdH aad aag -lrE -gkr -xkc +ocS +sjC +pjr lrq dEX fxJ @@ -94230,9 +94220,9 @@ uaU rUk xaM fgR -hIG -pdp -cPj +tDq +xXu +pqG aag ajZ bdH @@ -94300,9 +94290,9 @@ aaa bdH aad aag -nBJ -vCE -ldF +tNf +uAN +cCG bBA bBu amg @@ -94326,9 +94316,9 @@ amg amg rAD bBA -sGK -mVh -wid +kuI +aGh +tQN aag ajZ bdH @@ -94397,9 +94387,9 @@ bdH bdH aad aag -uDg -xkc -xkc +sOq +pjr +pjr lrq iwV iwV @@ -94433,9 +94423,9 @@ uxa iZU nhG xkd -oDh -uqg -xiV +tyH +qnN +lFL aag uJk bdH @@ -94503,9 +94493,9 @@ aaa bdH aad aag -nBJ -amu -eQR +tNf +pTQ +fvs bBA bBu amg @@ -94529,9 +94519,9 @@ amg amg rAD bBA -ozH -flr -wid +oac +eEq +tQN aag ajZ bdH @@ -94600,9 +94590,9 @@ bdH bdH aad aag -uDg -gkr -old +sOq +sjC +lgM cQv oVf rmx @@ -94636,9 +94626,9 @@ tov thL sUs xkd -gNZ -pdp -xiV +pVg +xXu +lFL aag ajZ bdH @@ -94706,9 +94696,9 @@ aaa bdH aad aag -nBJ -kMW -eQR +tNf +bHC +fvs bBA bBv aqu @@ -94732,9 +94722,9 @@ tkq aqu bQG bBA -uoO -mVh -wid +irA +aGh +tQN aag ajZ bdH @@ -94803,9 +94793,9 @@ bdH bdH aad aag -lrE -gkr -wJC +ocS +sjC +ogi cQv cBw kde @@ -94839,9 +94829,9 @@ tov thL xhx fgR -oDh -pdp -cPj +tyH +xXu +pqG aag scz bdH @@ -94909,9 +94899,9 @@ aaa bdH aad aag -nBJ -iWJ -eQR +tNf +eYN +fvs bBA bBx amg @@ -94935,9 +94925,9 @@ bPq amg rAD bBA -sGK -nhV -wid +kuI +ucU +tQN aag ajZ bdH @@ -95006,9 +94996,9 @@ bdH bdH aad aag -lrE -gkr -wMF +ocS +sjC +eDN cQv eaf bEv @@ -95042,9 +95032,9 @@ iFc thL tUx fgR -pdp -hIG -cPj +xXu +tDq +pqG aag ajZ bdH @@ -95112,9 +95102,9 @@ aaa aac aag aag -nBJ -dKS -ffN +tNf +tzw +pcY bBA bBy amg @@ -95138,9 +95128,9 @@ aoa amg bQE bBA -bME -sGK -wid +dkR +kuI +tQN aag aag ajY @@ -95209,9 +95199,9 @@ bdH bdH aad aag -lrE -xkc -vDh +ocS +pjr +lYZ cQv eaf bEv @@ -95245,9 +95235,9 @@ thL thL tUx fgR -pdp -aCA -cPj +xXu +rlY +pqG aag okD bdH @@ -95314,10 +95304,10 @@ aaa aaa aad aag -nBJ -nBJ -eQR -bTW +tNf +tNf +fvs +phn bBA bBz aqu @@ -95341,10 +95331,10 @@ bEx aqu bQI bBA -gsy -sGK -wid -wid +xTQ +kuI +tQN +tQN aag ajZ aaa @@ -95412,9 +95402,9 @@ bdH bdH aad aag -uDg -xkc -xkc +sOq +pjr +pjr cQv eaf bEv @@ -95448,9 +95438,9 @@ thL thL tUx xkd -pdp -vhA -xiV +xXu +xNY +lFL aag ajZ bdH @@ -95517,10 +95507,10 @@ aaa aaa aad aag -nBJ -ldF -ldF -xiP +tNf +cCG +cCG +oVn bBA lsV amg @@ -95544,10 +95534,10 @@ bPC amg pyL bBA -cDb -sGK -nhV -wid +nrG +kuI +ucU +tQN aag ajZ bdH @@ -95615,9 +95605,9 @@ bdH bdH aad aag -uDg -lDT -xkc +sOq +naN +pjr cQv eaf bEv @@ -95651,9 +95641,9 @@ thL thL tUx xkd -pdp -oDh -xiV +xXu +tyH +lFL aag ajZ bdH @@ -95719,11 +95709,11 @@ aaf aaf aaf aag -nBJ -nBJ -ldF -eQR -uFp +tNf +tNf +cCG +fvs +grf bBA bBA tiR @@ -95740,18 +95730,18 @@ cmJ alU alU alU -pzW -pzW -pzW -pzW -hNB -pzW -pzW -ipB -mVh -sGK -wid -wid +tYu +tYu +tYu +tYu +xqj +tYu +tYu +hNJ +aGh +kuI +tQN +tQN aag aaf aaf @@ -95818,9 +95808,9 @@ bdH bdH aad aag -uDg -gkr -qsp +sOq +sjC +vtH cQv xLl bEv @@ -95854,9 +95844,9 @@ tUx vsz oEE xkd -gNZ -pdp -xiV +pVg +xXu +lFL aag ajZ bdH @@ -95919,18 +95909,18 @@ aaa aaa aad aag -nBJ -nBJ -nBJ -nBJ -ldF -ldF -bos -bos -bos -haR -uHT -jHn +tNf +tNf +tNf +tNf +cCG +cCG +oZF +oZF +oZF +hLW +bOy +cLk kcp bWJ nar @@ -95943,21 +95933,21 @@ aoi grG bXY alU -xNM -ikl -eLp -dFM -lEV -mZP -sDx -sDx -sDx -mVh -sGK -wid -wid -wid -wid +cFN +wzJ +niW +kpr +xac +dKq +iZy +iZy +iZy +aGh +kuI +tQN +tQN +tQN +tQN aag ajZ aaa @@ -96020,10 +96010,10 @@ aaa bdH bdH aad -uDg -uDg -xkc -eeA +sOq +sOq +pjr +vnU cQv dzG kde @@ -96057,10 +96047,10 @@ smZ wIC tMH wIC -pRs -pdp -xiV -xiV +cBQ +xXu +lFL +lFL ajZ bdH bdH @@ -96122,18 +96112,18 @@ aaa aaa aad aag -nBJ -fUz -ldF -eQR -ldF -ikA -bos -gpO -uHT -bKP -uHT -sGQ +tNf +naW +cCG +fvs +cCG +eFI +oZF +luJ +bOy +nrh +bOy +jrN kcp wMv nCR @@ -96146,21 +96136,21 @@ aoi bNk ecZ alU -odt -ikl -qAy -mua -mua -mua -lEV -eQz -sDx -mVh -fJu -mVh -roj -qzA -wid +qyL +wzJ +hnP +jap +jap +jap +xac +iqe +iZy +aGh +ffX +aGh +lHV +ftA +tQN aag ajZ aaa @@ -96223,10 +96213,10 @@ aaa bdH bdH aad -uDg -hzN -gkr -krG +sOq +vvj +sjC +mzk cQv rdM gUg @@ -96260,10 +96250,10 @@ crp dco dqZ wIC -uxb -oDh -pdp -xiV +fGB +tyH +xXu +lFL ajZ bdH bdH @@ -96325,14 +96315,14 @@ aaa aaa aad aag -nBJ -lJM -ldF -eQR -ldF -lyP -bos -gpO +tNf +cvL +cCG +fvs +cCG +sep +oZF +luJ kcp kcp iqp @@ -96349,21 +96339,21 @@ cmJ alU alU alU -wrr -kjw -hBr -tqQ -hgp -hgp -hgp -nef -sDx -mXm -mVh -sGK -sGK -nhV -wid +eyq +wIP +eMp +kbN +oil +oil +oil +hqg +iZy +laB +aGh +kuI +kuI +ucU +tQN aag ajZ aaa @@ -96426,9 +96416,9 @@ aaa bdH bdH aad -uDg -fHb -gkr +sOq +vEq +sjC vxM vxM vxM @@ -96464,9 +96454,9 @@ vAG jIo wIC wIC -oDh -pdp -xiV +tyH +xXu +lFL ajZ bdH bdH @@ -96528,14 +96518,14 @@ aaa aaa aad aag -nBJ -eQR -eQR -ldF -eQR -sxS -bos -gpO +tNf +fvs +fvs +cCG +fvs +hdO +oZF +luJ kcp bBD bTS @@ -96543,30 +96533,30 @@ bTS lxo qcy kcp -sub -sub -tqf -pHF -vYd -ghF -eSp -ghF -aFG -pPQ -juS -mdk -mdk -mdk -mdk -mdk -kCd +pHk +pHk +mLy +jfe +mYp +aTc +kXb +aTc +dSg +hLA +riG +iPp +iPp +iPp +iPp +iPp +oth bSv bSv bSv bSv bSv -sGK -wid +kuI +tQN aag ajZ aaa @@ -96629,9 +96619,9 @@ aaa bdH bdH aad -uDg -xkc -gkr +sOq +pjr +sjC vxM rfY kGu @@ -96667,9 +96657,9 @@ sJm dqZ rDY wIC -pdp -kIf -xiV +xXu +wkw +lFL ajZ bdH bdH @@ -96731,14 +96721,14 @@ aaa aaa aad aag -nBJ -ldF -ldF -wcJ -jCr -nQn -bos -uHT +tNf +cCG +cCG +dzU +vAB +gsA +oZF +bOy kcp bTR iEg @@ -96746,30 +96736,30 @@ oQM aqI aqI kcp -bOw -mYt -jsR -vPW -vyB -vyB -vyB -vyB -aFG -vFp -yaX -sje -sje -sje -sje -sje -jhS +crX +iAf +aiI +kps +xec +xec +xec +xec +dSg +ame +rHm +niN +niN +niN +niN +niN +qRi qih bTH foN cDZ bSv -hLu -wid +lGZ +tQN aag ajZ aaa @@ -96832,9 +96822,9 @@ aaa bdH aac aag -uDg -kac -xkc +sOq +oAr +pjr vxM tQi wee @@ -96870,9 +96860,9 @@ rWF uSB lzY wIC -pdp -ome -xiV +xXu +xjh +lFL aag ajY bdH @@ -96934,14 +96924,14 @@ aaa aaa aad aag -nBJ -ecS -ldF -bos -bos -bos -bos -uHT +tNf +qqi +cCG +oZF +oZF +oZF +oZF +bOy kcp lxW hPh @@ -96949,30 +96939,30 @@ wGX bFr ppe kcp -lEV -ghF -ghF -jak -jdC -jdC -jdC -jdC -wiQ -dEo -fGd -sje -sje -sje -sje -sje -jhS +xac +aTc +aTc +iZN +fob +fob +fob +fob +tNm +pwe +oKA +niN +niN +niN +niN +niN +qRi bSv tjw bTH bTV bSv -sGK -wid +kuI +tQN aag ajZ aaa @@ -97035,9 +97025,9 @@ bdH bdH aad aag -uDg -fco -qsp +sOq +eUe +vtH vxM jvP rDQ @@ -97073,9 +97063,9 @@ wIC wIC wHM wIC -dJy -aCA -xiV +pEp +rlY +lFL aag ajZ bdH @@ -97137,14 +97127,14 @@ aaa aaa aad aag -nBJ -eQR -ldF -bos -vkO -ibf -bos -rIw +tNf +fvs +cCG +oZF +uDl +eZK +oZF +gzE kcp wTN kZN @@ -97152,30 +97142,30 @@ rgK hbu iYe bJl -yfd -yfd -yfd -kgS -lEV -lEV -lEV -lEV -aFG -mua -yaX -sje -sje -oiX -sje -sje -rqQ +rMh +rMh +rMh +cPV +xac +xac +xac +xac +dSg +jap +rHm +niN +niN +ngu +niN +niN +nxL bSv ifb bTH bSv xVT -flr -wid +eEq +tQN aag ajZ aaa @@ -97238,9 +97228,9 @@ bdH bdH aad aag -uDg -lDT -xkc +sOq +naN +pjr vxM sbP sbP @@ -97264,7 +97254,7 @@ xuZ xuZ xuZ rEY -gxU +lfa giR vUP wIC @@ -97276,9 +97266,9 @@ wIC xgI dBQ wIC -oLf -hIG -xiV +gOu +tDq +lFL aag ajZ bdH @@ -97340,14 +97330,14 @@ aaa aaa aad aag -nBJ -ldF -eQR -bos -lBl -nEO -bos -gpO +tNf +cCG +fvs +oZF +ueH +oTn +oZF +luJ kcp oMi bAZ @@ -97355,30 +97345,30 @@ bTS bTS niR kcp -lEV -ghF -ghF -pHF -lEV -ghF -ghF -ghF -aFG -mua -hoc -sje -sje -sje -sje -sje -jhS +xac +aTc +aTc +jfe +xac +aTc +aTc +aTc +dSg +jap +dbH +niN +niN +niN +niN +niN +qRi bSv aIX aIX bSv -xcI -sIu -wid +gib +yjl +tQN aag ajZ aaa @@ -97441,9 +97431,9 @@ bdH bdH aad aag -uDg -xkc -gkr +sOq +pjr +sjC vxM pas ncf @@ -97479,9 +97469,9 @@ wIC qqV nNg wIC -oDh -xas -xiV +tyH +yef +lFL aag ajZ bdH @@ -97543,14 +97533,14 @@ aaa aaa aad aag -nBJ -ldF -eQR -rqv -gpO -gpO -bos -gpO +tNf +cCG +fvs +jtv +luJ +luJ +oZF +luJ kcp kcp kcp @@ -97558,30 +97548,30 @@ sXE kcp kcp kcp -lEV -vyB -vyB -pHF -lEV -ghF -vyB -vyB -aFG -pJq -yaX -sje -sje -sje -sje -sje -jhS +xac +xec +xec +jfe +xac +aTc +xec +xec +dSg +fAo +rHm +niN +niN +niN +niN +niN +qRi bSv cop cop bSv -kxe -sGK -wid +oLa +kuI +tQN aag ajZ aaa @@ -97644,9 +97634,9 @@ bdH bdH aad aag -uDg -xkc -gkr +sOq +pjr +sjC vxM vxM vxM @@ -97682,9 +97672,9 @@ wIC wIC wIC wIC -oDh -nEc -xiV +tyH +pwx +lFL aag ajZ bdH @@ -97746,45 +97736,45 @@ aaa aaa aad aag -nBJ -ldF -eQR -bos -iWH -gpO -bos -gpO -nEZ +tNf +cCG +fvs +oZF +vfn +luJ +oZF +luJ +jSz kcp bTU gZK bTS lyX kcp -rMj -ghF -vyB -pHF -lEV -ghF -vyB -ghF -aFG -pPQ -juS -jjl -jjl -jjl -jjl -jjl -kCd +siB +aTc +xec +jfe +xac +aTc +xec +aTc +dSg +hLA +riG +cez +cez +cez +cez +cez +oth bSv kBY bTn bSv -mVh -mVh -wid +aGh +aGh +tQN aag ajZ aaa @@ -97847,12 +97837,12 @@ aaf aaf aag aag -uDg -cUl -xkc -ode -xkc -gNg +sOq +tnD +pjr +ugt +pjr +ixl vBm tJM viH @@ -97882,12 +97872,12 @@ jhI jfY bra wIC -eQm -rXQ -vky -oDh -pdp -xiV +ssx +sdP +htn +tyH +xXu +lFL aag aag aaf @@ -97945,53 +97935,53 @@ aaa aaa aaa aaa -nBJ -nBJ -nBJ -nBJ -nBJ -eQR -ldF -bos -bos -olW -bos -uHT -gUi +tNf +tNf +tNf +tNf +tNf +fvs +cCG +oZF +oZF +fCG +oZF +bOy +nkR kcp onY wdf bTS kcp kcp -sDx -ghF -vyB -pHF -lEV -ghF -vyB -ghF -sDx -prl -gNy -fbU -vbZ -qEl -qEl -qEl -vWs +iZy +aTc +xec +jfe +xac +aTc +xec +aTc +iZy +jeu +fyi +rxr +oZv +toz +toz +toz +pYh bSv bSv bSv bSv -sGK -mVh -wid -wid -wid -wid -wid +kuI +aGh +tQN +tQN +tQN +tQN +tQN aaa aaa aaa @@ -98051,11 +98041,11 @@ adG adG adG adG -rvI -cYo -ode -gkr -gkr +xKo +pfy +ugt +sjC +sjC vBm vBm vBm @@ -98085,11 +98075,11 @@ jES vBJ qTQ wIC -oDh -pdp -vky -pdp -paJ +tyH +xXu +htn +xXu +xZs tuA tuA tuA @@ -98148,53 +98138,53 @@ aaa aaa aaa aaa -nBJ -ldF -jsE -rdN -eQR -eQR -eQR -ldF -sXq -rdN -rMO -uHT -hfv +tNf +cCG +sic +ydR +fvs +fvs +fvs +cCG +gPs +ydR +qiD +bOy +bxZ kcp xNz utK rKA kcp kcp -sDx -hIF -vyB -pHF -lEV -ghF -vyB -kEW -sDx -xHl -vyB -mQd -akn -vTM -vyB -lEV -meE -gGw -mVh -iBu -sGK -mVh -mVh -mVh -sGK -gDX -sGK -wid +iZy +mBX +xec +jfe +xac +aTc +xec +kki +iZy +fio +xec +hHs +gyc +vDK +xec +xac +lcZ +eIe +aGh +ixc +kuI +aGh +aGh +aGh +kuI +xow +kuI +tQN aaa aaa aaa @@ -98257,8 +98247,8 @@ akC akC akC akC -uvp -gkr +sLs +sjC vBm mvE tak @@ -98288,8 +98278,8 @@ vAG opF pDW wIC -oDh -lhj +tyH +iJb kCi kCi kCi @@ -98351,16 +98341,16 @@ aaa aaa aaa aaa -fwK -cZB -uaG -uaG -uaG -uaG -uaG -uaG -uaG -uaG +hEg +rPc +iGz +iGz +iGz +iGz +iGz +iGz +iGz +iGz bcm bcm kcp @@ -98370,34 +98360,34 @@ kcp kcp kcp kcp -sDx -lQB -qax -jTH -gPU -lQB -qax -lQB -sDx -sDx -sDx -sDx -sDx -sDx -sDx -sDx -sDx -sDx -rgt -rgt -sYr -rgt -rgt -rgt -rgt -rgt -ctw -hAh +iZy +ggC +sPI +bak +vjL +ggC +sPI +ggC +iZy +iZy +iZy +iZy +iZy +iZy +iZy +iZy +iZy +iZy +yaS +yaS +wsF +yaS +yaS +yaS +yaS +yaS +vSu +pPR aaa aaa aaa @@ -98460,8 +98450,8 @@ sFf bbV bzz akC -pzc -gkr +qoj +sjC vBm qkn eRL @@ -98491,8 +98481,8 @@ vzj wIC wIC wIC -oDh -nYi +tyH +mWh kCi sDD kOv @@ -98554,16 +98544,16 @@ aaa aaa aaa aaa -fwK -elY -uaG -vjk -lxd -dPk -nBV -dyq -lxd -uaG +hEg +mnz +iGz +vCM +ecm +nkp +bNK +ivY +ecm +iGz lYN byr aXh @@ -98591,16 +98581,16 @@ aXj qUh xyw ccG -rgt -gMS -vXF -hsc -epk -lwG -uJb -rgt -wRf -hAh +yaS +vFa +dCf +pWR +rrO +tLj +pye +yaS +rKI +pPR aaa aaa aaa @@ -98663,8 +98653,8 @@ nIt adu aHZ akC -lDT -gkr +naN +sjC vBm rJN nJz @@ -98694,8 +98684,8 @@ aTg rFg kkv wIC -pdp -pdp +xXu +xXu kCi uAj qfa @@ -98757,16 +98747,16 @@ aaa aaa aaa aaa -okd -lql -okd -urk -fmZ -ePq -fmZ -cqd -jhc -eml +oFW +lxO +oFW +gic +cZX +wlv +cZX +rQX +jtS +fMB btO aYt bzQ @@ -98794,16 +98784,16 @@ bVM bVM bwn bVM -oTH -kUA -gRJ -mqB -vjG -mqB -oQw -avp -oAa -efk +agh +jvO +gcF +nTB +xYi +nTB +gAY +xnr +jvv +egn aaa aaa aaa @@ -98866,8 +98856,8 @@ nkx bbZ btv akC -lCm -gkr +isz +sjC vBm vBm knO @@ -98897,8 +98887,8 @@ aTg wIC wIC wIC -pdp -iEa +xXu +vcl kCi eqI ssZ @@ -98960,16 +98950,16 @@ aaa aaa aaa aaa -okd -lql -okd -nDb -jhc -ccL -rDf -xZM -mnc -eml +oFW +lxO +oFW +jeW +jtS +hbP +xQq +umf +cOC +fMB btO aYt aYt @@ -98997,16 +98987,16 @@ aYt aYt aYt btO -tpG -wdQ -ybP -dhQ -dcx -mLg -wAK -efk -bTz -efk +gIK +efd +rzG +wSd +uGI +sdz +uBX +egn +hUr +egn aaa aaa aaa @@ -99069,9 +99059,9 @@ pvP adu aHZ akC -jdn -lgk -hMM +myy +dwX +sBD vBm rRr dFU @@ -99099,9 +99089,9 @@ wtY aTg jIT wIC -aCA -pdp -pdp +rlY +xXu +xXu kCi nwW btD @@ -99163,16 +99153,16 @@ aaa aaa aaa aaa -okd -lql -okd -nDb -jhc -jhc -jhc -vOV -eAm -eml +oFW +lxO +oFW +jeW +jtS +jtS +jtS +rQP +rNZ +fMB btO aYu aYu @@ -99200,16 +99190,16 @@ aYu aYu aYu btO -tpG -hbA -uky -mLg -mLg -mLg -wAK -efk -bTz -efk +gIK +nvE +efh +sdz +sdz +sdz +uBX +egn +hUr +egn aaa aaa aaa @@ -99272,9 +99262,9 @@ adu adu aHZ akC -pek -rir -pek +soC +xkE +soC vBm hqU gcT @@ -99302,9 +99292,9 @@ yeR aTg nNg wIC -pjz -uTs -pjz +apx +wfd +apx kCi nRR btD @@ -99366,16 +99356,16 @@ aaa aaa aaa aaa -okd -lql -okd -bRt -oGm -hPD -aIy -ekR -gWm -mpV +oFW +lxO +oFW +snC +lWq +mnD +dKS +rqL +wTF +sXJ bvf bdL bvf @@ -99403,16 +99393,16 @@ bvf bvf bdL bvf -srh -gKo -fsf -fuU -cnI -qfq -vjT -efk -bTz -efk +hak +nWZ +mpt +tCv +ueX +pZa +dRV +egn +hUr +egn aaa aaa aaa @@ -99475,9 +99465,9 @@ nIt adu hxG akC -ibP -loE -cmr +sUI +ihF +xLp vBm vBm vBm @@ -99505,9 +99495,9 @@ wIC wIC wIC wIC -hrI -ioM -xCy +pVK +tqG +mGE kCi nNt vqC @@ -99569,16 +99559,16 @@ aaa aaa aaa aaa -fwK -jru -uaG -vaM -lxd -cif -jaz -dyq -lxd -uaG +hEg +lli +iGz +eQq +ecm +wgY +krq +ivY +ecm +iGz vCg bHB xyw @@ -99606,16 +99596,16 @@ xyw xyw bHB osx -rgt -qTu -wlD -gTk -qSI -lwG -uJb -rgt -oCa -hAh +yaS +umn +qLb +bbF +nHl +tLj +pye +yaS +kaw +pPR aaa aaa aaa @@ -99678,10 +99668,10 @@ wmg adu cqQ afT -txy -rbp -cri -euL +gRB +jfn +oyg +rRg hiM hiM qRj @@ -99707,10 +99697,10 @@ xuZ pcj hXm fZq -iFA -sLx -twQ -twQ +kXV +wbT +xJK +xJK bpd bqT vZv @@ -99772,16 +99762,16 @@ aaa aaa aaa aaa -fwK -cZB -uaG -uaG -uaG -uaG -uaG -uaG -hte -lma +hEg +rPc +iGz +iGz +iGz +iGz +iGz +iGz +coQ +jhN xyw bHB xyw @@ -99810,15 +99800,15 @@ xyw bHB xyw bcm -hOV -hOV -hOV -hOV -hOV -hOV -hOV -vVZ -hAh +vAw +vAw +vAw +vAw +vAw +vAw +vAw +xsc +pPR aaa aaa aaa @@ -99881,10 +99871,10 @@ pvP adu frF akC -oUt -cmr -iPq -aMf +skO +xLp +lAX +tCi vka vka mPj @@ -99906,14 +99896,14 @@ awz vSN mPj rWs -inh +hIh ewr lPC mgy -qoN -tVx -feG -pPy +hCv +asV +cxi +hLD kCi nRR btM @@ -99975,16 +99965,16 @@ aaa aaa aaa aaa -sGw -nmp -eWs -usq -rQw -pOH -sbt -smU -nZR -lpl +wZa +lqd +nqC +wcx +nhU +ybq +mch +fGG +wBl +sbb xyw bHB gjm @@ -100013,15 +100003,15 @@ bcb bHB btO bcm -sCW -nvX -tTC -jdu -tWd -aPe -hOV -ygv -kyP +sBP +eVY +nrD +xUb +spn +sWy +vAw +fgA +sNF aaa aaa aaa @@ -100085,10 +100075,10 @@ tyK iKI akC akC -aMf -hSv -xoB -xoB +tCi +fwT +hAd +hAd kzy wIQ jHh @@ -100112,11 +100102,11 @@ vka jHh lnt ckP -xTx -xTx -cyv -eKZ -xTx +izT +izT +aWY +uFb +izT kCi cfk uws @@ -100178,16 +100168,16 @@ aaa aaa aaa aaa -sGw -klT -eWs -njO -riC -eqd -goY -fqJ -nOX -xcV +wZa +uJT +nqC +kWG +hDA +qvl +bQF +gqy +jWn +yeO xyw bHB wqh @@ -100216,15 +100206,15 @@ bcc bHB aYt bcm -xsQ -tTC -tTC -tTC -tTC -tTC -iho -uKH -kyP +aFx +nrD +nrD +nrD +nrD +nrD +vUs +cUf +sNF aaa aaa aaa @@ -100287,12 +100277,12 @@ akC akC akC akC -ehM -cmr -iPq -oQJ -xoB -xoB +paN +xLp +lAX +qEa +hAd +hAd vSN jHh lnt @@ -100314,12 +100304,12 @@ sTo wIQ jHh jUY -xTx -xTx -hrI -tVx -feG -bxY +izT +izT +pVK +asV +cxi +sCs kCi kCi kCi @@ -100381,16 +100371,16 @@ aaa aaa aaa aaa -sGw -xzB -bfs -bYW -bYW -bYW -bYW -kNf -vpT -xcV +wZa +jca +ezR +veX +veX +veX +veX +duX +dCb +yeO xyw bHB sXB @@ -100419,15 +100409,15 @@ fVz bHB bBN bcm -uPQ -tTC -tTC -tTC -tTC -gzN -hOV -uXm -kyP +vUW +nrD +nrD +nrD +nrD +voo +vAw +qip +sNF aaa aaa aaa @@ -100487,15 +100477,15 @@ adG adG adG adG -ltw -cmr -oRm -cmr -cmr -iPq -oQJ -pcc -xoB +pbd +xLp +bUJ +xLp +xLp +lAX +qEa +rXM +hAd xDn uwN wiN @@ -100517,15 +100507,15 @@ awz oWg uwN jUY -xTx -lym -hrI -lIQ -noy -rcG -lwY -feG -kfB +izT +hTj +pVK +mSG +ois +xnG +vef +cxi +tkX tuA tuA tuA @@ -100584,16 +100574,16 @@ aaa aaa aaa aaa -sGw -xzB -bfs -qfQ -cJm -jwi -bYW -phw -xMG -xcV +wZa +jca +ezR +fKv +mot +ndc +veX +cIl +dej +yeO xyw bHB aZO @@ -100622,15 +100612,15 @@ bGF bHB aYt bcm -vKI -tTC -hhd -ybm -ffq -rsV -hOV -mLN -kyP +oMp +nrD +rRP +tqs +ciO +hAu +vAw +wXb +sNF aaa aaa aaa @@ -100689,16 +100679,16 @@ aag aag aag aag -cZe -cmr -lSX -uaA -snx -snx -fLt -cmr -fYr -xoB +btL +xLp +rTj +uNd +cET +cET +hyj +xLp +oTN +hAd pNa iCu awz @@ -100720,16 +100710,16 @@ awz ceE eMP faX -xTx -tIX -ioM -abn -ioM -lIQ -qOY -xZH -mSr -nLp +izT +reF +tqG +bjH +tqG +mSG +lGW +pep +bBp +teI aag aag aag @@ -100787,16 +100777,16 @@ aaa aaa aaa aaa -sGw -xzB -bfs -wVN -qxI -qmM -bYW -wFN -wFN -tGH +wZa +jca +ezR +xwU +sIw +bVk +veX +djW +djW +lmy hmy bHB aZP @@ -100825,15 +100815,15 @@ bGG bHB btO bcm -kQr -tTC -tTC -tTC -tTC -tTC -hOV -uKH -kyP +odT +nrD +nrD +nrD +nrD +nrD +vAw +cUf +sNF aaa aaa aaa @@ -100892,9 +100882,9 @@ aag aag aag aag -cZe -cCL -vDz +btL +lZD +vIE kcH kcH kcH @@ -100930,9 +100920,9 @@ aES aES aES aES -lIQ -xZH -nLp +mSG +pep +teI aag aag aag @@ -100990,16 +100980,16 @@ aaa aaa aaa aaa -sGw -onv -bfs -pjh -qxI -qxI -iXm -qxI -qxI -vvX +wZa +tXA +ezR +fiz +sIw +sIw +cWt +sIw +sIw +iny xyw bHB aZQ @@ -101028,15 +101018,15 @@ bGH bHB btO bcm -qhG -krJ -jOt -tTC -tTC -tTC -hOV -uKH -kyP +lim +bOb +hvP +nrD +nrD +nrD +vAw +cUf +sNF aaa aaa aaa @@ -101092,12 +101082,12 @@ aaa aad aag aag -cZe -cZe -cZe -cZe -iPq -cmr +btL +btL +btL +btL +lAX +xLp kcH kcH kcH @@ -101133,12 +101123,12 @@ tKr uNg cLN aES -hrI -tVx -nLp -nLp -nLp -nLp +pVK +asV +teI +teI +teI +teI aag aag ajZ @@ -101193,16 +101183,16 @@ aaa aaa aaa aaa -sGw -xzB -bfs -wes -qxI -dKO -ykv -jPu -qKl -pPd +wZa +jca +ezR +kGh +sIw +aDG +lnG +bCI +whX +qHZ xyw bHB aZR @@ -101231,15 +101221,15 @@ bGI bHB xyw bcm -gOk -tTC -tTC -tTC -tTC -bjg -hOV -siT -kyP +vyZ +nrD +nrD +nrD +nrD +cOy +vAw +raT +sNF aaa aaa aaa @@ -101295,12 +101285,12 @@ aaa aad aag aag -cZe -ivu -gSy -ltw -iPq -cmr +btL +fyq +pcR +pbd +lAX +xLp kcH rlf soq @@ -101336,12 +101326,12 @@ iTD vCO vCO jxB -hrI -tVx -hrI -hrI -hrI -nLp +pVK +asV +pVK +pVK +pVK +teI aag aag ajZ @@ -101396,16 +101386,16 @@ aaa aaa aaa aaa -sGw -dvD -bfs -bfs -sir -bfs -bfs -eWs -eWs -eWs +wZa +gtF +ezR +ezR +ngc +ezR +ezR +nqC +nqC +nqC xyw bHB aZO @@ -101433,16 +101423,16 @@ baI bGF bHB eEc -hOV -hOV -tTC -tSm -tcd -tTC -rsV -hOV -siT -kyP +vAw +vAw +nrD +wkP +ade +nrD +hAu +vAw +raT +sNF aaa aaa aaa @@ -101498,12 +101488,12 @@ aaa aad aag aag -cZe -nHu -sit -snx -oVY -cGA +btL +hpa +lyL +cET +yak +eAa kcH rBa nPs @@ -101539,12 +101529,12 @@ vCO vCO vCO jxB -gUu -dWc -lVW -kcs -rDH -nLp +cBz +tgh +kfV +qyw +tcn +teI aag aag ajZ @@ -101599,16 +101589,16 @@ aaa aaa aaa aaa -sGw -fea -eWs -rsS -xzB -mKs -sCT -rXU -rEt -eWs +wZa +rIG +nqC +xWI +jca +kXe +vJO +uKl +jsj +nqC wlb bHB aZP @@ -101636,16 +101626,16 @@ baI bGG bHB bGK -rrh -xKG -gyH -rSx -dCz -tTC -lDA -hOV -siT -kyP +qny +kYb +nGz +cSl +nMN +nrD +sGm +vAw +raT +sNF aaa aaa aaa @@ -101701,18 +101691,18 @@ aaa aad aag aag -cZe -lSX -nRE -cmr -cmr -sWw +btL +rTj +kCo +xLp +xLp +jcs kcH rIW oGx wvU yiX -nrb +vLX hyQ aic aov @@ -101742,12 +101732,12 @@ wmT jhW mWD jxB -xBK -moc -pYQ -tVx -hrI -nLp +rgL +dNy +koa +asV +pVK +teI aag aag ajZ @@ -101802,16 +101792,16 @@ aaa aaa aaa aaa -sGw -dvD -kWI -xzB -dvD -ipk -dvD -xzB -dvD -meT +wZa +gtF +vkQ +jca +gtF +jyU +gtF +jca +gtF +jUK wqh bHB aZQ @@ -101839,16 +101829,16 @@ baI bGH bHB cuy -rrh -iNR -uCR -tTC -tTC -tTC -fca -vjS -xee -kyP +qny +slu +kXq +nrD +nrD +nrD +wIg +tcY +tVl +sNF aaa aaa aaa @@ -101902,12 +101892,12 @@ aaa aaa aaa aad -cZe -cZe -cZe -vfS -cmr -cmr +btL +btL +btL +ouy +xLp +xLp agj agj agj @@ -101947,12 +101937,12 @@ aES aES aES aES -nVn -cZO -hrI -nLp -nLp -nLp +qFr +fqP +pVK +teI +teI +teI ajZ aaa aaa @@ -102005,16 +101995,16 @@ aaa aac aaf aaf -sGw -xzB -eWs -omx -xzB -rAw -qNK -rEt -sCT -eWs +wZa +jca +nqC +oqW +jca +jwa +uIZ +jsj +vJO +nqC pyC bHB aZR @@ -102042,16 +102032,16 @@ baI bGI bHB kwQ -rrh -iNR -uCR -rDR -tTC -wyz -gzN -hOV -uKH -kyP +qny +slu +kXq +dvN +nrD +wJT +voo +vAw +cUf +sNF aaf aaf ajY @@ -102105,11 +102095,11 @@ aaa aaa aaa aad -tvt -fRg -peM -jUV -cmr +huD +gRq +cmb +yai +xLp agj agj jbN @@ -102146,16 +102136,16 @@ aVU aRq bHG ceK -sxD +aWj bhJ bHG aES aES -fMU -hrI -dPd -rLH -rwZ +jLB +pVK +exx +nrg +vYk ajZ aaa aaa @@ -102207,17 +102197,17 @@ aaa aaa aad aag -sGw -sGw -xzB -eWs -eWs -sOr -eWs -eWs -eWs -eWs -eWs +wZa +wZa +jca +nqC +nqC +nvA +nqC +nqC +nqC +nqC +nqC cCE bHB aZO @@ -102245,17 +102235,17 @@ baI bGF bHB iAw -hOV -hOV -tTC -tTC -tTC -jRp -rsV -hOV -kzs -kyP -kyP +vAw +vAw +nrD +nrD +nrD +xun +hAu +vAw +rLi +sNF +sNF aag ajZ aaa @@ -102308,11 +102298,11 @@ aaa aaa aaa aad -tvt -jhR -fix -pfL -cmr +huD +esl +wBy +nRC +xLp agj kyR agc @@ -102354,11 +102344,11 @@ bpe brS rOs aES -dWA -hrI -hrI -dPO -rwZ +cGC +pVK +pVK +bxw +vYk ajZ aaa aaa @@ -102410,17 +102400,17 @@ aaa aaa aad aag -sGw -dvD -xzB -eWs -kRU -dON -oJj -vLp -oYA -gWt -jHt +wZa +gtF +jca +nqC +kbh +uwj +ede +hHz +iGf +wqs +iBk amo bHB aZP @@ -102449,16 +102439,16 @@ bGG bHB btO xjW -uTk -tTC -tTC -tTC -cyR -tTC -hOV -qpV -hSb -kyP +rDC +nrD +nrD +nrD +kCN +nrD +vAw +iDD +rhf +sNF aag ajZ aaa @@ -102511,11 +102501,11 @@ aaa aaa aaa aad -tvt -oyX -vBC -rhm -she +huD +fcl +dXm +thK +bTL agj ogK qgr @@ -102557,11 +102547,11 @@ aES aES aES aES -tPc -jwq -vwU -uew -rwZ +vMw +htB +fII +fpj +vYk ajZ aaa aaa @@ -102613,17 +102603,17 @@ aaa aaa aad aag -sGw -dvD -xzB -eWs -irJ -bKk -kil -vnY -fCG -gYg -jHt +wZa +gtF +jca +nqC +oVc +lad +kTF +hzp +qZj +qWG +iBk gRP bHB aZQ @@ -102652,16 +102642,16 @@ bGH bHB btO bcm -gBU -tTC -tTC -efJ -tTC -sHe -hOV -uKH -vyr -kyP +gnI +nrD +nrD +uqW +nrD +dkv +vAw +cUf +lHU +sNF aag ajZ aaa @@ -102714,11 +102704,11 @@ aaa aaa aaa aad -cZe -kwg -cmr -cmr -jkq +btL +wEp +xLp +xLp +jQa agj nCx tYM @@ -102755,16 +102745,16 @@ ceK lcy iTw ceK -sxD +aWj bhJ bHG nis aES -xGF -tVx -jne -rDH -nLp +cMk +asV +taM +tcn +teI ajZ aaa aaa @@ -102816,22 +102806,22 @@ aaa aaa aad aag -sGw -fzx -dWJ -eWs -yko -qlL -oxz -gnB -vnY -mRH -jHt +wZa +ptr +pvv +nqC +mWl +vdB +xEI +mTK +hzp +nkJ +iBk xjK bHB btO bdU -aog +hPf bdU bfV baM @@ -102855,16 +102845,16 @@ bcb bHB aYt bcm -ohI -tTC -tTC -tTC -tTC -tml -hOV -uKH -hZZ -kyP +uDT +nrD +nrD +nrD +nrD +lRV +vAw +cUf +uTS +sNF aag ajZ aaa @@ -102917,11 +102907,11 @@ bdH aaa aaa aad -tvt -gJf -cmr -hYE -vAz +huD +szs +xLp +riI +nPF agj nXO hvH @@ -102963,11 +102953,11 @@ bpe brS cpj aES -hro -tVx -tNB -ioM -rwZ +jLa +asV +whv +tqG +vYk ajZ aaa aaa @@ -103019,17 +103009,17 @@ aaa aaa aad aag -sGw -dvD -nsd -eWs -kqm -vnY -wjL -oGF -gKK -dBR -jHt +wZa +gtF +lmW +nqC +pgx +hzp +tnT +kov +iBD +dmz +iBk bwl bHB xyw @@ -103058,16 +103048,16 @@ bcc bHB xyw bcm -grT -tTC -tTC -ove -tTC -rsV -hOV -siT -bUQ -kyP +prS +nrD +nrD +jJl +nrD +hAu +vAw +raT +vtL +sNF aag ajZ aaa @@ -103120,11 +103110,11 @@ bdH aaa aaa aad -tvt -hsu -cmr -pFq -iPq +huD +dlW +xLp +xxr +lAX agj dyj fnv @@ -103166,11 +103156,11 @@ aES aES aES aES -uhh -cZO -ppG -ioM -rwZ +uyK +fqP +psl +tqG +vYk ajZ aaa aaa @@ -103222,17 +103212,17 @@ aaa aaa aad aag -sGw -dvD -kFU -eWs -oUz -mqZ -mqZ -lVZ -ctQ -wer -pKW +wZa +gtF +ykB +nqC +ncb +jYu +jYu +tnS +kQP +lcz +itD wqh bHB vpW @@ -103261,16 +103251,16 @@ fVz bHB vpW bcm -cKm -tTC -cOh -tTC -tTC -dPq -hOV -siT -xFt -kyP +gTi +nrD +iLv +nrD +nrD +lju +vAw +raT +oPu +sNF aag ajZ aaa @@ -103323,11 +103313,11 @@ bdH aaa aaa aad -tvt -hJD -cmr -fFQ -pMH +huD +gSq +xLp +nYu +hYw agj mXj mXj @@ -103364,16 +103354,16 @@ ceK wVB psa ceK -sxD +aWj bhJ bHG brS aES -jrI -tVx -raO -ioM -rwZ +cuk +asV +bwM +tqG +vYk ajZ aaa aaa @@ -103425,22 +103415,22 @@ aaa aaa aad aag -sGw -xzB -xer -eWs -uES -xrT -gYj -vnY -ctQ -wer -pKW +wZa +jca +kog +nqC +ciV +jIM +xml +hzp +kQP +lcz +itD wqh bHB xyw aho -vWc +vFS geg aEj aho @@ -103464,16 +103454,16 @@ jSo bHB xyw bcm -qKb -tTC -xQj -tTC -tTC -uTk -hOV -siT -xFt -kyP +xHr +nrD +xsy +nrD +nrD +rDC +vAw +raT +oPu +sNF aag ajZ aaa @@ -103526,11 +103516,11 @@ aaa aaa aaa aad -cZe -bLc -fOK -pWd -iPq +btL +rXs +qKT +bOz +lAX agj mXj pjR @@ -103572,11 +103562,11 @@ tJi ivf bpe aES -pok -tVx -kzc -gen -nLp +gvj +asV +rDp +rkF +teI ajZ aaa aaa @@ -103628,22 +103618,22 @@ aaa aaa aad aag -sGw -nkj -dvD -eWs -rVt -tVZ -bkS -vnY -ctQ -wer -pKW +wZa +tYh +gtF +nqC +lNz +kNr +pzl +hzp +kQP +lcz +itD wqh bHB ezQ eXq -fAa +mdT oYp oZp eXq @@ -103667,16 +103657,16 @@ xyw bHB aYt bcm -jNG -tTC -vMb -xYE -iuI -lDA -hOV -siT -fFU -kyP +iVQ +nrD +oqn +era +uRh +sGm +vAw +raT +tdN +sNF aag ajZ aaa @@ -103729,11 +103719,11 @@ aaa bdH aaa aad -tvt -nCM -cmr -wKb -pri +huD +wcs +xLp +meQ +eAK agj qlI cdB @@ -103775,11 +103765,11 @@ aES aES aES aES -gBd -tVx -fjz -hPu -rwZ +vaH +asV +lUr +vGV +vYk ajZ aaa aaa @@ -103831,21 +103821,21 @@ aac aaf aag aag -sGw -vEI -dvD -eWs -nCe -tVZ -bkS -bfO -tWL -aLx -jHt +wZa +pau +gtF +nqC +heM +kNr +pzl +bEe +dBW +qsJ +iBk mVE rgy baN -anU +iGO gEg imy gEg @@ -103874,12 +103864,12 @@ bcm bcm bcm bcm -hOV -pIC -hOV -qpV -nGk -kyP +vAw +xkZ +vAw +iDD +vrb +sNF aag aag aaf @@ -103932,11 +103922,11 @@ bdH bdH aaa aad -tvt -mPw -cmr -wGa -bAy +huD +nWx +xLp +wvt +rLl agj eBE hvH @@ -103973,16 +103963,16 @@ bFC jUb qjz ceK -sxD +aWj bhJ bHG gCP aES -imt -noE -dcT -hrI -rwZ +kqI +rJf +kkg +pVK +vYk ajZ aaa aaa @@ -104034,22 +104024,22 @@ aad aag aag aag -sGw -oGf -dvD -eWs -jkY -ktI -xPn -xyQ -ixT -hBG -ngK +wZa +ctW +gtF +nqC +dWk +nCA +pJV +cTm +bKi +tST +aWB sqa hBF hCt eXq -qYN +cIq lsD lkf eXq @@ -104077,12 +104067,12 @@ lRX rux sEt bcm -qyG -bUQ -bUQ -siT -bUQ -kyP +uhS +vtL +vtL +raT +vtL +sNF aag aag aag @@ -104135,11 +104125,11 @@ bdH bdH bdH aad -tvt -qwY -cmr -cmr -mVA +huD +ruD +xLp +xLp +wax agj kSH hvH @@ -104181,11 +104171,11 @@ mhm brS bpe aES -ioM -cZO -pfD -pfD -rwZ +tqG +fqP +oHy +oHy +vYk ajZ aaa aaa @@ -104237,22 +104227,22 @@ aad aag aag aag -sGw -fzT -dvD -eWs -qmh -qmh -jHt -wSQ -rOv -wer -pKW +wZa +dDQ +gtF +nqC +nSC +nSC +iBk +qNw +vKV +lcz +itD wqh bHB xyw aho -dkj +xWV siz gYt aho @@ -104280,12 +104270,12 @@ myo dtH eyR bcm -rQs -xFt -bUQ -uKH -gsp -kyP +wEA +oPu +vtL +cUf +mkk +sNF aag aag aag @@ -104338,11 +104328,11 @@ bdH bdH bdH aad -cZe -cZe -cZe -tiX -vcI +btL +btL +btL +guv +dYM agj ikQ hvH @@ -104384,11 +104374,11 @@ aES aES aES aES -ied -cZO -nLp -nLp -nLp +mOw +fqP +teI +teI +teI ajZ aaa aaa @@ -104440,17 +104430,17 @@ aad aag aag aag -sGw -iPf -klT -eWs -vHp -gJp -qmh -wSQ -rOv -wer -pKW +wZa +bqM +uJT +nqC +gAC +pgE +nSC +qNw +vKV +lcz +itD wqh bHB vpW @@ -104483,12 +104473,12 @@ mhd aYt tuN fPn -xFt -xFt -bUQ -uKH -eLC -kyP +oPu +oPu +vtL +cUf +vRF +sNF aag aag aag @@ -104543,9 +104533,9 @@ aaa aad aag aag -cZe -cmr -iNk +btL +xLp +udH agj muV hvH @@ -104582,14 +104572,14 @@ aWq aXb aGr ceK -sxD +aWj bhJ bHG cWy aES -hrI -tVx -nLp +pVK +asV +teI aag aag ajZ @@ -104643,17 +104633,17 @@ aad aag aag aag -sGw -cqp -xzB -smH -vnY -asE -qmh -wSQ -vop -tgy -jHt +wZa +rgC +jca +qlt +hzp +kDZ +nSC +qNw +enz +vZX +iBk vPM bHB xyw @@ -104686,12 +104676,12 @@ omP aYt bOC bcm -bUQ -xFt -bUQ -uKH -rVc -kyP +vtL +oPu +vtL +cUf +mod +sNF aag aag aag @@ -104746,9 +104736,9 @@ aaa aad aag aag -cZe -huD -vAz +btL +qyj +nPF agj mXj fnv @@ -104756,7 +104746,7 @@ hvH hvH iNY hvH -hmV +ofp mXj agj aic @@ -104790,9 +104780,9 @@ eBd brS cpj aES -luE -wgO -nLp +eqh +hwQ +teI aag aag ajZ @@ -104846,22 +104836,22 @@ aad aag aag aag -sGw -jOq -xzB -eWs -nso -jdZ -pqM -bZS -rlD -uUf -jHt +wZa +vLO +jca +nqC +rbd +yiJ +kkV +vCW +ykL +hLF +iBk kCm bHB btO bea -aoN +jzb bea bfZ baS @@ -104889,12 +104879,12 @@ ivg llO kSv bcm -emC -dZZ -xmn -uKH -xFt -kyP +oyJ +ter +tVJ +cUf +oPu +sNF aag aag aag @@ -104949,9 +104939,9 @@ aaa aad aag aag -cZe -pcf -vAz +btL +cZw +nPF agj agj agj @@ -104993,9 +104983,9 @@ aES aES aES aES -hXD -tYV -nLp +fDT +eKi +teI aag aag ajZ @@ -105049,10 +105039,10 @@ aad aag aag aag -sGw -dvD -qig -eWs +wZa +gtF +kil +nqC eXq adR eXq @@ -105093,11 +105083,11 @@ wXT cdA bcm bcm -emC -emC -mTL -xFt -kyP +oyJ +oyJ +kjE +oPu +sNF aag aag aag @@ -105152,9 +105142,9 @@ aaa aad aag aag -cZe -uTE -fZy +btL +egW +kUr gpY uBi wYA @@ -105196,9 +105186,9 @@ baw oaK nUn pgD -tVx -hrI -nLp +asV +pVK +teI aag aag ajZ @@ -105252,10 +105242,10 @@ aad aag aag aag -sGw -dvD -dvD -eWs +wZa +gtF +gtF +nqC abG aeh afy @@ -105297,10 +105287,10 @@ aYt aYt lrX bcm -jGQ -siT -fFU -kyP +oin +raT +tdN +sNF aag aag aag @@ -105355,9 +105345,9 @@ bdH aad aag aag -cZe -cmr -vAz +btL +xLp +nPF gpY uac vFw @@ -105399,9 +105389,9 @@ aZz wUP lrF pgD -cZO -hrI -nLp +fqP +pVK +teI aag aag ajZ @@ -105455,10 +105445,10 @@ aad aag aag aag -sGw -dvD -klT -eWs +wZa +gtF +uJT +nqC abH aer agf @@ -105500,10 +105490,10 @@ btO btO uII fPn -htq -siT -nGk -kyP +uwi +raT +vrb +sNF aag aag aag @@ -105558,9 +105548,9 @@ abs abs abs abs -cZe -aMf -wby +btL +tCi +elF gpY mto acW @@ -105602,9 +105592,9 @@ baw sgU baw pgD -cyv -eKZ -nLp +aWY +uFb +teI tQV tQV tQV @@ -105658,10 +105648,10 @@ aag aag aag aag -sGw -dvD -sZc -dGP +wZa +gtF +fgv +loQ acq aeJ azl @@ -105703,10 +105693,10 @@ aYt puI iWx bcm -ymg -uKH -bUQ -kyP +oYP +cUf +vtL +sNF aag aag aag @@ -105861,10 +105851,10 @@ aag aag aag aag -sGw -dvD -iQJ -eWs +wZa +gtF +pTD +nqC acu aeh afF @@ -105906,10 +105896,10 @@ cdA bcm bcm bcm -emC -wuh -fgU -kyP +oyJ +khh +mPW +sNF aag aag aag @@ -106064,10 +106054,10 @@ aag aag aag aag -sGw -nHX -cEA -eWs +wZa +cpG +mcs +nqC acM aer agf @@ -106107,12 +106097,12 @@ apE icp fER bcm -emC -hVL -bUQ -uKH -hSb -kyP +oyJ +ceI +vtL +cUf +rhf +sNF aag aag aag @@ -106189,9 +106179,9 @@ awY kOB awZ aiX -opN -bDi -vIr +fys +wLe +nWK awF aEM aGV @@ -106267,10 +106257,10 @@ aag aag aag aag -sGw -xzB -hRA -eWs +wZa +jca +kGZ +nqC acZ aeN azl @@ -106310,12 +106300,12 @@ uiT aYt jyR bcm -fUZ -xFt -bUQ -uKH -eyM -kyP +aPd +oPu +vtL +cUf +iBs +sNF aag aag aag @@ -106392,9 +106382,9 @@ pXx jrm evg aiX -dCb -dDc -rdo +eSt +jPD +jee awF aFg aGY @@ -106470,10 +106460,10 @@ aag aag aag aag -sGw -xzB -ghA -eWs +wZa +jca +fCZ +nqC vhw khD azw @@ -106513,12 +106503,12 @@ apL aYt iKb bcm -umk -xFt -bUQ -siT -qBl -kyP +dUA +oPu +vtL +raT +gKl +sNF aag aag aag @@ -106595,9 +106585,9 @@ wWC auZ aiX aiX -mJp -bNT -cbK +kuj +tje +pQh awF hRk aGY @@ -106673,10 +106663,10 @@ aag aag aag aag -sGw -nkj -rjF -eWs +wZa +tYh +bQd +nqC eXq eXq eXq @@ -106716,12 +106706,12 @@ uiT aYt xNj bcm -hSb -xFt -bUQ -uKH -pTX -kyP +rhf +oPu +vtL +cUf +eAP +sNF aag aag aag @@ -106798,9 +106788,9 @@ pQV apq ana aiX -glc -bNT -rmB +oFZ +tje +vGt awF xTL lmA @@ -106876,10 +106866,10 @@ aag aag aag aag -sGw -xzB -oes -eWs +wZa +jca +gzx +nqC aRu aRu aRu @@ -106919,12 +106909,12 @@ fpW llO vml bcm -emC -rVc -rVc -uKH -nBF -kyP +oyJ +mod +mod +cUf +rwh +sNF aag aag aag @@ -107001,9 +106991,9 @@ xQg wWC szO aiX -nLM -bNT -iPU +gyR +tje +ilW awF awF aEW @@ -107079,10 +107069,10 @@ aag aag aag aag -sGw -dvD -oes -eWs +wZa +gtF +gzx +nqC aRu aRu aRu @@ -107118,16 +107108,16 @@ bGO bHB uAb bcm -emC -hvx -emC -emC -emC -emC -emC -qpV -bUQ -kyP +oyJ +riv +oyJ +oyJ +oyJ +oyJ +oyJ +iDD +vtL +sNF aag aag aag @@ -107204,10 +107194,10 @@ yjM qbO aqw hnI -kGS -bNT -gFN -bMi +eBy +tje +oQL +jGY awF nvG vGI @@ -107282,10 +107272,10 @@ aag aag aag aag -sGw -dvD -iQJ -eWs +wZa +gtF +pTD +nqC aRu aRu aRu @@ -107321,16 +107311,16 @@ bcp bHB xAY aYz -emC -bUQ -wDP -mHF -hhg -emC -qBl -uKH -bUQ -kyP +oyJ +vtL +wwV +epq +xBT +oyJ +gKl +cUf +vtL +sNF aag aag aag @@ -107407,10 +107397,10 @@ aqy nBE pOD bZa -nIF -duR -gFN -mqd +pIX +wnK +oQL +euB awF aHn szU @@ -107485,10 +107475,10 @@ aag aag aag aag -sGw -xzB -oes -eWs +wZa +jca +gzx +nqC aRu aRu aRu @@ -107524,16 +107514,16 @@ bcc bHB xAY aYz -emC -vFI -xFt -xFt -bUQ -wdG -xFt -siT -nGk -kyP +oyJ +dSC +oPu +oPu +vtL +ltw +oPu +raT +vrb +sNF aag aag aag @@ -107610,15 +107600,15 @@ aiX aiX aiX aiX -eFI -bNT -sQu -tsr -tsr -tsr -tsr -tsr -tsr +mKO +tje +geR +nPh +nPh +nPh +nPh +nPh +nPh aRE qVC qVC @@ -107688,10 +107678,10 @@ aag aag aag aag -sGw -fzx -cEA -eWs +wZa +ptr +mcs +nqC aRu aRu aRu @@ -107727,16 +107717,16 @@ fVz bHB uII ruz -emC -jev -aML -xFt -oFn -emC -jaI -siT -xFt -kyP +oyJ +vnj +xDy +oPu +epp +oyJ +oUM +raT +oPu +sNF aag aag aag @@ -107813,15 +107803,15 @@ aiX aKG amb aiX -eWN -bNT -rmB -tsr -sOL -jIC -lFr -wTu -tsr +dyG +tje +vGt +nPh +ipF +aJB +osQ +eVP +nPh aSq aTE aTE @@ -107891,10 +107881,10 @@ aag aag aag aag -sGw -xzB -rsP -eWs +wZa +jca +jLY +nqC aRu aRu aRu @@ -107930,16 +107920,16 @@ xyw bHB uII wrT -emC -fqb -ury -dFW -mvi -emC -daF -siT -fFU -kyP +oyJ +krm +hiU +bkB +kel +oyJ +ygo +raT +tdN +sNF aag aag aag @@ -108016,15 +108006,15 @@ aqz aKH and aiX -umD -bNT -kGS -fyT -xIV -xIV -edV -reM -tsr +aDf +tje +eBy +jSF +uZb +uZb +uwk +nnT +nPh aSt aTE aTE @@ -108088,16 +108078,16 @@ aaa bdH aaY aad -sGw -sGw -sGw -sGw -sGw -sGw -sGw -dvD -iOX -eWs +wZa +wZa +wZa +wZa +wZa +wZa +wZa +gtF +oiR +nqC aRu aRu aRu @@ -108139,16 +108129,16 @@ lFp lFp lFp lFp -ljm -siT -xFt -kyP -kyP -kyP -kyP -kyP -kyP -kyP +pFx +raT +oPu +sNF +sNF +sNF +sNF +sNF +sNF +sNF ajZ aaY bdH @@ -108219,15 +108209,15 @@ aiX aiX aiX aiX -cwi -bNT -fBA -tsr -iPN -dbX -rGL -cyL -tsr +jtX +tje +hIm +nPh +tHA +mkb +iKB +fdD +nPh aSx aTE aTG @@ -108291,16 +108281,16 @@ aaa bdH aaY aad -sGw -lrH -dvD -xzB -xzB -xzB -dvD -dvD -wsz -eWs +wZa +iJA +gtF +jca +jca +jca +gtF +gtF +qXg +nqC aRu aRu aRu @@ -108342,16 +108332,16 @@ kjD gHl qoL lFp -hSb -siT -xFt -bUQ -bUQ -gQQ -bUQ -cOt -uSU -kyP +rhf +raT +oPu +vtL +vtL +rYK +vtL +gew +mPB +sNF ajZ aaY bdH @@ -108422,22 +108412,22 @@ aqz mBe atT aiX -fXf -bNT -hCF -tsr -tsr -vOY -tsr -tsr -tsr -lIj -mVF -lIj -lIj -lIj -lIj -lIj +ghn +tje +dFr +nPh +nPh +jpX +nPh +nPh +nPh +mSu +tms +mSu +mSu +mSu +mSu +mSu pgD nUv aJU @@ -108494,16 +108484,16 @@ aaa bdH aaY aad -sGw -xzB -xzB -dvD -dvD -sZc -abj -mUE -coo -eWs +wZa +jca +jca +gtF +gtF +fgv +ful +eSZ +gHx +nqC aRu aRu aRu @@ -108545,16 +108535,16 @@ aId aId poA lFp -hSb -uGU -kGi -kGi -khI -kGi -kGi -kow -qBl -kyP +rhf +lJb +oPx +oPx +xHC +oPx +oPx +pSK +gKl +sNF ajZ aaY bdH @@ -108625,22 +108615,22 @@ aiX asf atT aiX -cKW -mqR -xZf -lIj -tBY -gkE -cTM -rqD -pcY -srO -srO -lWO -wjQ -uag -uag -jnh +yks +gmL +miG +mSu +hIT +upv +wxn +xtI +cJz +vOb +vOb +tEo +ikL +alY +alY +eFg pgD lza gZw @@ -108697,15 +108687,15 @@ aaa bdH aaa aad -sGw -dvD -dvD -eWs -jri -iOX -kIl -jmz -hsK +wZa +gtF +gtF +nqC +oFv +oiR +gEk +nVC +rye wfE wfE wfE @@ -108714,9 +108704,9 @@ wfE wfE wfE wfE -yap -bqg -eIO +iwp +uvh +pJY bkA eFG bej @@ -108732,15 +108722,15 @@ qjN qjN oWf gfW -xgJ +tKu fdZ bnS fdZ -tzx +tbd gfW -rZt -qyP -tuC +jaT +gKs +nQq lFp lGg aId @@ -108755,9 +108745,9 @@ nmY nmY nmY nmY -siT -bUQ -kyP +raT +vtL +sNF ajZ aaa bdH @@ -108828,22 +108818,22 @@ aiX aiX aiX aiX -dRo -fsu -enz -lIj -lIj -dvZ -lIj -lIj -lIj -lIj -lIj -lIj -lIj -lIj -lIj -tWF +oYG +nNz +fnV +mSu +mSu +aux +mSu +mSu +mSu +mSu +mSu +mSu +mSu +mSu +mSu +gRz pgD nUv aJU @@ -108900,9 +108890,9 @@ aaa bdH aaa aad -sGw -dvD -dvD +wZa +gtF +gtF wfE wfE rXv @@ -108917,9 +108907,9 @@ bqm bsD btr wfE -kLE -lIu -kLE +viV +dRy +viV bkA bcC bej @@ -108935,15 +108925,15 @@ ham qjN oDY omo -fvJ +epW fdZ ixj fdZ -bET +kmZ gfW -kSA -tpB -kSA +ctV +fSN +ctV lFp xDF eRS @@ -108954,13 +108944,13 @@ nmY ouw jDP aId -xHS +ctX tEd vjW nmY -siT -bUQ -kyP +raT +vtL +sNF ajZ aaa bdH @@ -109006,12 +108996,12 @@ adq aei aka aWn -njn -njn -njn -njn -njn -njn +uIw +uIw +uIw +uIw +uIw +uIw oGC awW acW @@ -109020,31 +109010,31 @@ awW awW fSm hiy -ddp -fCP -fCP -stk -fCP -kGS -kGS -sVA -fCP -vUO -fCP -fCP -wzL -fCP -fCP -vUO -pwd -sVA -fCP -fCP -fCP -fCP -stk -fCP -uVg +mxa +eyZ +eyZ +tgP +eyZ +eBy +eBy +neu +eyZ +ipT +eyZ +eyZ +kdx +eyZ +eyZ +ipT +kMk +neu +eyZ +eyZ +eyZ +eyZ +tgP +eyZ +pIM pEY jsP baw @@ -109053,12 +109043,12 @@ baw sgU baw baw -nIN -nIN -nIN -nIN -nIN -nIN +ykg +ykg +ykg +ykg +ykg +ykg hXV yhI rRz @@ -109103,9 +109093,9 @@ aaa bdH aaa aad -sGw -dvD -dvD +wZa +gtF +gtF wfE mcL jOo @@ -109120,9 +109110,9 @@ wFR wFR xbk aWw -cJK -oGL -hOu +kmA +oiZ +gdO bkA eUn bcD @@ -109140,13 +109130,13 @@ qyD omo blZ bqN -nTo +gtA bqN bwR gfW -oJL -jMa -cVt +iAA +hbH +vpK sHm ddM hZe @@ -109161,9 +109151,9 @@ dKK dKK xry nmY -siT -bUQ -kyP +raT +vtL +sNF ajZ aaa bdH @@ -109209,12 +109199,12 @@ adq apr apr aoV -njn -rWz -rWz -rWz -tWM -njn +uIw +qZx +qZx +qZx +omL +uIw aea oGC xjD @@ -109223,31 +109213,31 @@ ajf ajf oAO pIZ -qwf -jRm -gDQ -gDQ -gDQ -rUN -gDQ -gDQ -dFd -rDm -rDm -gDQ -saT -gDQ -rUN -rUN -bxt -tPz -tPz -tiZ -tPz -tPz -tPz -jRm -rHn +rHg +vor +hJt +hJt +hJt +pcp +hJt +hJt +efN +onq +onq +hJt +mjw +hJt +pcp +pcp +aSg +gma +gma +xSX +gma +gma +gma +vor +wZH tFW dGC aZz @@ -109256,12 +109246,12 @@ aZz nsc baw cxk -nIN -rgL -rgL -rgL -nTc -nIN +ykg +iSe +iSe +iSe +wWD +ykg wTy wTy wTy @@ -109306,9 +109296,9 @@ aaa bdH aaa aad -sGw -xiH -xzB +wZa +pxO +jca wfE dgl jOo @@ -109323,9 +109313,9 @@ esM uUi xbk aWw -gtD -uRD -wru +gLm +rTX +jul bkA nvM bgG @@ -109347,10 +109337,10 @@ gfW uFo omo gfW -eWx -lLO -juo -otq +mpV +vpf +hmD +sDv gJO pwG aId @@ -109364,9 +109354,9 @@ vXf qGw uZV nmY -uKH -bUQ -kyP +cUf +vtL +sNF ajZ aaa bdH @@ -109412,12 +109402,12 @@ adq aub akc euO -njn -rWz -rWz -rWz -rWz -njn +uIw +qZx +qZx +qZx +qZx +uIw oGC sHp oGC @@ -109426,31 +109416,31 @@ awW awW aSJ isI -dgP -jao -uIa -qxK -rYG -qxK -qxK -iRi -qxK -qxK -qxK -qxK -xcY -qxK -iRi -qxK -qxK -qxK -qxK -qxK -rYG -qxK -bTD -jao -uQi +gNl +pEH +cQO +dsq +eoU +dsq +dsq +sgI +dsq +dsq +dsq +dsq +qkb +dsq +sgI +dsq +dsq +dsq +dsq +dsq +eoU +dsq +lwv +pEH +qyd dCD aXe baw @@ -109459,12 +109449,12 @@ baw mnA baw baw -nIN -rgL -rgL -rgL -rgL -nIN +ykg +iSe +iSe +iSe +iSe +ykg crh csI nqG @@ -109509,9 +109499,9 @@ aaa bdH aaa aad -sGw -jOq -xzB +wZa +vLO +jca wfE krp jOo @@ -109526,9 +109516,9 @@ wFR soA xbk wfE -xos -uRD -qPk +mwO +rTX +fVq bCd iey baf @@ -109550,10 +109540,10 @@ bPk bsj byb bCd -knm -lLO -knm -yfy +mjE +vpf +mjE +lxq ruL qUZ aId @@ -109567,9 +109557,9 @@ kyh dKK xry nmY -qpV -hNh -kyP +iDD +sZQ +sNF ajZ aaa bdH @@ -109616,22 +109606,22 @@ avd akt awW qHq -rWz -rWz -rWz -rWz -njn -vzO -njn -njn -njn -njn -njn -njn -njn -dgP -jao -uQi +qZx +qZx +qZx +qZx +uIw +ukk +uIw +uIw +uIw +uIw +uIw +uIw +uIw +gNl +pEH +qyd aoe aoe aoe @@ -109651,22 +109641,22 @@ aoe aoe aoe aoe -maF -jao -mOw -nIN -nIN -nIN -nIN -nIN -nIN -rBD -nIN -nIN -rgL -rgL -rgL -rgL +wLs +pEH +fas +ykg +ykg +ykg +ykg +ykg +ykg +iUS +ykg +ykg +iSe +iSe +iSe +iSe eOM baw sMM @@ -109712,9 +109702,9 @@ aaa bdH aaa aad -sGw -eoE -xzB +wZa +pkx +jca wfE eiP qOp @@ -109729,9 +109719,9 @@ qtv xFZ btx naV -pij -kJh -qPk +oKz +nfQ +fVq bCd tmg qjN @@ -109753,10 +109743,10 @@ qjN tzP wYK bCd -knm -lLO -knm -yfy +mjE +vpf +mjE +lxq ruL gsd aId @@ -109770,9 +109760,9 @@ hgD pSQ dOe nmY -rEK -bba -kyP +bFf +hlm +sNF ajZ aaa bdH @@ -109818,23 +109808,23 @@ adq aGP aka aWu -njn -rWz -rWz -rWz -rWz -njn -gur -osn -vDt -puJ -deA -olC -ujf -njn -xky -jao -uQi +uIw +qZx +qZx +qZx +qZx +uIw +oOh +juV +veN +ljl +iSr +vGw +fKL +uIw +kOF +pEH +qyd aoe aoh jHQ @@ -109854,23 +109844,23 @@ cnV isN cnZ aoe -dgP -jao -uQi -nIN -cHn -cHn -gNo -aZv -gNo -xzh -dcZ -nIN -rgL -rgL -rgL -rgL -nIN +gNl +pEH +qyd +ykg +qcM +qcM +gxS +dvx +gxS +iov +nGH +ykg +iSe +iSe +iSe +iSe +ykg hWB yhI qSX @@ -109915,9 +109905,9 @@ aaa bdH aaa aad -sGw -jIJ -xzB +wZa +fSj +jca wfE fHz opD @@ -109932,9 +109922,9 @@ esM jpt xbk aWw -qPk -hKe -uJM +fVq +mjz +cXX baZ bep qjN @@ -109956,10 +109946,10 @@ qjN qjN imo baZ -sbE -lLO -knm -yfy +iaf +vpf +mjE +lxq ruL xPq aId @@ -109973,9 +109963,9 @@ smW prP xXl nmY -idL -gnM -kyP +idV +aca +sNF ajZ aaa bdH @@ -110021,23 +110011,23 @@ adq aGQ akc apg -njn -rWz -rWz -rWz -rWz -njn -jsA -cGR -tey -urL -tey -cGR -jsA -tQA -kGS -lOn -uQi +uIw +qZx +qZx +qZx +qZx +uIw +xHx +nel +tqt +wuP +tqt +nel +xHx +sWb +eBy +oXo +qyd aoe vbS arb @@ -110057,23 +110047,23 @@ cnW aEi coa aoe -tWf -lOn -kGS -aZv -gNo -xzh -xzh -nIN -gJY -gNo -gNo -nIN -rgL -rgL -rgL -rgL -nIN +iyL +oXo +eBy +dvx +gxS +iov +iov +ykg +tEk +gxS +gxS +ykg +iSe +iSe +iSe +iSe +ykg wvj csI iPH @@ -110118,9 +110108,9 @@ aaa bdH aaa aad -sGw -xzB -dvD +wZa +jca +gtF wfE iYx opD @@ -110135,9 +110125,9 @@ nEF tXi pcE aWw -qPk -hKe -qPk +fVq +mjz +fVq hqW qjN qjN @@ -110159,10 +110149,10 @@ hDX qjN qjN jpp -knm -lLO -knm -hnP +mjE +vpf +mjE +cHp lFp xlO aId @@ -110176,9 +110166,9 @@ oqt oEy qmY tUN -siT -lZb -kyP +raT +urD +sNF ajZ aaa bdH @@ -110224,23 +110214,23 @@ aee avd akt qWI -njn -njn -njn -njn -njn -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -tWf -lOn -uQi +uIw +uIw +uIw +uIw +uIw +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +iyL +oXo +qyd aoe qQc fXg @@ -110260,23 +110250,23 @@ jBy aEi fFh aoe -dgP -lOn -uQi -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -nIN -nIN -nIN -nIN -nIN +gNl +oXo +qyd +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +ykg +ykg +ykg +ykg +ykg ehj irS ilJ @@ -110321,9 +110311,9 @@ aaa bdH aaa aad -sGw -xzB -dvD +wZa +jca +gtF wfE gww opD @@ -110338,9 +110328,9 @@ ljf maL uKe aWw -qPk -ckh -gyn +fVq +nsO +oPb vcq qPS qPS @@ -110362,10 +110352,10 @@ iaF bqL bqL ocf -wwE -sAD -cIO -tAb +goS +etU +qaT +pfu vpe dxT olN @@ -110379,9 +110369,9 @@ uxX oZy orN nmY -lQf -tHk -kyP +aNz +eDF +sNF ajZ aaa bdH @@ -110427,23 +110417,23 @@ adq aWm aka kyY -njn -mfR -sqP -tVs -tVs -gxm -tPB -tPB -tPB +uIw +dDR +kEJ +qBE +qBE +uWv +uoM +uoM +uoM dkO aps aps aps -gxm -xtO -jao -uQi +uWv +flD +pEH +qyd aoe vbS koB @@ -110463,23 +110453,23 @@ aoe hFF aoe aoe -dgP -jao -uQi -gxm +gNl +pEH +qyd +uWv aiJ aiJ aiJ qYr -cJV -cJV -cJV -gxm -ear -aGm -xzh -ear -nIN +pEf +pEf +pEf +uWv +cNJ +xfu +iov +cNJ +ykg rQW yhI tmI @@ -110524,26 +110514,26 @@ aaa bdH aaa aad -sGw -nkj -dvD +wZa +tYh +gtF wfE rYi opD wFR wFR -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -qPk -hKe -uJM +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +fVq +mjz +cXX baZ eyQ qjN @@ -110565,26 +110555,26 @@ qjN qjN xtM baZ -sbE -jZe -cbL -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr +iaf +pZk +hoT +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA iZE oqt oZy qhD nmY -siT -xFt -kyP +raT +oPu +sNF ajZ aaa bdH @@ -110630,23 +110620,23 @@ adq apr apr apr -njn -hzl -vdT -jsA -jsA -gxm -tPB -tPB -tPB +uIw +ory +vGC +xHx +xHx +uWv +uoM +uoM +uoM vQe aps aps aps -gxm -hGo -lOn -uQi +uWv +oAw +oXo +qyd aoe aop koB @@ -110666,23 +110656,23 @@ uRt aQz aRJ ajl -dgP -lOn -uQi -gxm +gNl +oXo +qyd +uWv aiJ aiJ aiJ str -cJV -cJV -cJV -gxm -aGm -xzh -xzh -moq -nIN +pEf +pEf +pEf +uWv +xfu +iov +iov +rxm +ykg wTy wTy wTy @@ -110727,26 +110717,26 @@ aaa bdH aaa aad -sGw -xzB -dvD +wZa +jca +gtF wfE cVK opD oRO ren -wDr +wdA aeL aeL aeL -oLj -wNG -wNG -wNG -wDr -qZT -pSF -eZC +jFl +bDz +bDz +bDz +wdA +uNO +dAn +sDE bCd mlH bqR @@ -110756,7 +110746,7 @@ tlA nyj vVW vhX -unU +lia rlZ twq vhX @@ -110768,26 +110758,26 @@ cle bCe sdO bCd -hBW -dxJ -rdT -wDr -mQx -mQx -mQx -jsa +uBI +tsc +obX +wdA +wQH +wQH +wQH +mYT azy azy azy -wDr +wdA kJH oqt qlm kRD nmY -uKH -xFt -kyP +cUf +oPu +sNF ajZ aaa bdH @@ -110833,23 +110823,23 @@ aet afB akW apu -njn -njn -lBB -cGR -mOR -gxm -gHX -gHX -gHX +uIw +uIw +lGH +nel +evF +uWv +vqT +vqT +vqT vQe aps aps aps -gxm -dgP -hBy -dlT +uWv +gNl +dhB +bxO hSI pMp gzK @@ -110869,23 +110859,23 @@ akw aQz aRK ajl -kUs -lOn -uQi -gxm +gqD +oXo +qyd +uWv aiJ aiJ aiJ str -oAY -oAY -oAY -gxm -rTe -xzh -gNo -nIN -nIN +ceS +ceS +ceS +uWv +maU +iov +gxS +ykg +ykg crh csI qhb @@ -110930,26 +110920,26 @@ aaa bdH aaa aad -sGw -xzB -esm +wZa +jca +kmL wfE wfE viJ wfE wfE -wDr +wdA aeL aeL aeL -uZm -wNG -wNG -wNG -wDr -qPk -hKe -qPk +emZ +bDz +bDz +bDz +wdA +fVq +mjz +fVq bCd bmn knH @@ -110960,7 +110950,7 @@ rHo kan kan kan -jXf +phx kan kan kan @@ -110971,26 +110961,26 @@ kan iXW iLs bCd -knm -jZe -knm -wDr -mQx -mQx -mQx -guK +mjE +pZk +mjE +wdA +wQH +wQH +wQH +sEs azy azy azy -wDr +wdA euW rOI aId hQP nmY -qpV -bUQ -kyP +iDD +vtL +sNF ajZ aaa bdH @@ -111037,22 +111027,22 @@ boL akY boL aiH -hbl -cGR -fwP -mOR -gxm -tpj -tpj -tpj -gxm +ixB +nel +gWj +evF +uWv +huW +huW +huW +uWv asm asm asm -gxm -dgP -mxg -mnV +uWv +gNl +xJr +cEL aoe pjF wUd @@ -111072,22 +111062,22 @@ akw fOL aRS ajl -hGo -jao -uQi -gxm +oAw +pEH +qyd +uWv alW alW alW -gxm -nVA -nVA -nVA -gxm -aGm -ear -gNo -aZv +uWv +ugq +ugq +ugq +uWv +xfu +cNJ +gxS +dvx aJU baw sMM @@ -111134,25 +111124,25 @@ aKR aKR aKR aKR -dvD -xzB -pIo -xzB -xzB -fQy -nAm -wDr +gtF +jca +hkN +jca +jca +fMZ +kkm +wdA aeL aeL aeL -uZm -kaq -kaq -kaq -wDr -qPk -hKe -qqf +emZ +gCj +gCj +gCj +wdA +fVq +mjz +hqM kan kan kan @@ -111174,25 +111164,25 @@ kan kan kan kan -tzw -sPY -knm -wDr -wQu -wQu -wQu -guK +oRh +nMa +mjE +wdA +iwC +iwC +iwC +sEs azy azy azy -wDr +wdA sJI aId aId hQP nmY -uKH -bUQ +cUf +vtL bVU bVU bVU @@ -111239,23 +111229,23 @@ aez boL akY wrQ -njn -njn -njn -njn -njn -gxm -tpj -tpj -tpj -gxm +uIw +uIw +uIw +uIw +uIw +uWv +huW +huW +huW +uWv asm asm asm -gxm -dgP -lOn -tQO +uWv +gNl +oXo +oOb sqf sqf sqf @@ -111275,23 +111265,23 @@ upM akw alD vEx -kGS -lOn -uQi -gxm +eBy +oXo +qyd +uWv alW alW alW -gxm -nVA -nVA -nVA -gxm -nIN -nIN -nIN -nIN -nIN +uWv +ugq +ugq +ugq +uWv +ykg +ykg +ykg +ykg +ykg nTH sMM baw @@ -111337,30 +111327,30 @@ aKS aKU aKS aLL -vtJ -stP -eWs -hKO -eoE -lrH -kdo -wDr +cXy +xXG +nqC +fKj +pkx +iJA +gUo +wdA aiR aiR aiR -wDr -hwH -hwH -hwH -wDr -qPk -hKe -qPk +wdA +pWp +pWp +pWp +wdA +fVq +mjz +fVq kan -qWS -oDJ -vaQ -iIH +rmB +vKG +qFm +iYR rlZ buu rlZ @@ -111377,25 +111367,25 @@ kan psO gjK kan -knm -sPY -knm -wDr -ydA -ydA -ydA -wDr +mjE +nMa +mjE +wdA +pKs +pKs +pKs +wdA azD azD azD -wDr +wdA ePN aId aId hQP nmY -xUY -wGe +jVM +imt bSf bWe bWn @@ -111442,23 +111432,23 @@ aet agS aiP aYq -njn -rWz -rWz -rWz -tWM -gxm -tpj -tpj -tpj -gxm +uIw +qZx +qZx +qZx +omL +uWv +huW +huW +huW +uWv asm asm asm -gxm -dgP -lOn -uQi +uWv +gNl +oXo +qyd sqf anp wjz @@ -111466,8 +111456,8 @@ fnA jZY jZY sqf -wpu -cGp +jTb +iDe ajl ajl ajl @@ -111478,23 +111468,23 @@ ajl onQ alD ajl -bNI -lOn -uQi -gxm +flS +oXo +qyd +uWv alW alW alW -gxm -nVA -nVA -nVA -gxm -rgL -rgL -rgL -nTc -nIN +uWv +ugq +ugq +ugq +uWv +iSe +iSe +iSe +wWD +ykg gnv yhI tTu @@ -111547,23 +111537,23 @@ aLL aLL aLL aLL -wDr +wdA aiR aiR aiR -wDr -hwH -hwH -hwH -wDr -qPk -hKe -qPk +wdA +pWp +pWp +pWp +wdA +fVq +mjz +fVq kan -kAp -dYU +cpU +xbG kan -cWm +jJu soK gDW rlZ @@ -111576,22 +111566,22 @@ rlZ gYl frl wFb -wzZ +hEQ tdI vbV kan -knm -jZe -knm -wDr -ydA -ydA -ydA -wDr +mjE +pZk +mjE +wdA +pKs +pKs +pKs +wdA azD azD azD -wDr +wdA bSf bSf auW @@ -111645,23 +111635,23 @@ aet agB akW aYs -njn -rWz -rWz -rWz -rWz -gxm -lbc -tpj -tpj -gxm +uIw +qZx +qZx +qZx +qZx +uWv +lyc +huW +huW +uWv asm asm asm -gxm -dgP -jao -uQi +uWv +gNl +pEH +qyd sqf sOZ oNJ @@ -111669,8 +111659,8 @@ eDo eDo eDo sqf -vXv -wub +dfE +mHv gXl ajl wqW @@ -111681,23 +111671,23 @@ ajl aCp alD ajl -kiq -jao -uQi -gxm +oPr +pEH +qyd +uWv alW alW alW -gxm -nVA -nVA -wZk -gxm -rgL -rgL -rgL -rgL -nIN +uWv +ugq +ugq +uQg +uWv +iSe +iSe +iSe +iSe +ykg vpn csI goL @@ -111750,18 +111740,18 @@ coT fgh rZP gmj -wDr +wdA aiR aiR aiR -wDr -hwH -hwH -hwH -wDr -iGi -pSF -eZC +wdA +pWp +pWp +pWp +wdA +nOH +dAn +sDE bst bst bst @@ -111783,18 +111773,18 @@ biA biA biA biA -hBW -ltv -uYM -wDr -ydA -ydA -ydA -wDr +uBI +naO +wDW +wdA +pKs +pKs +pKs +wdA azD azD azD -wDr +wdA wcN nGi bVd @@ -111849,22 +111839,22 @@ boL akY boL avJ -rWz -rWz -rWz -rWz -gxm -tpj -tpj -tpj -gxm +qZx +qZx +qZx +qZx +uWv +huW +huW +huW +uWv asm asm asm -gxm -dgP -mxg -mOw +uWv +gNl +xJr +fas sqf anq awn @@ -111872,8 +111862,8 @@ xsz jTj jTj sqf -lmi -xgP +fYV +uJP dwA wJo cyU @@ -111884,22 +111874,22 @@ fQu akx alD gWG -dgP -jao -uQi -gxm +gNl +pEH +qyd +uWv alW alW alW -gxm -nVA -nVA -nVA -gxm -rgL -rgL -rgL -rgL +uWv +ugq +ugq +ugq +uWv +iSe +iSe +iSe +iSe qxz baw sMM @@ -111953,18 +111943,18 @@ uUt aLW aLW guS -wDr +wdA aiR aiR aiR -wDr -hwH -hwH -srR -wDr -cvg -hKe -qPk +wdA +pWp +pWp +nLf +wdA +tNE +mjz +fVq bst bui bvz @@ -111975,7 +111965,7 @@ bJw rlZ hBc hzs -bHg +kDj hzs aZK rlZ @@ -111986,18 +111976,18 @@ bsQ bmj caS biA -knm -sPY -jxu -wDr -oVk -ydA -ydA -wDr +mjE +nMa +dcS +wdA +kAW +pKs +pKs +wdA azD azD azD -wDr +wdA wgR bTO bTO @@ -112051,23 +112041,23 @@ aez boL akY aqk -njn -rWz -rWz -rWz -rWz -gxm -tpj -tpj -tpj -gxm +uIw +qZx +qZx +qZx +qZx +uWv +huW +huW +huW +uWv asm asm asm -gxm -dgP -jao -uQi +uWv +gNl +pEH +qyd sqf anr awn @@ -112087,23 +112077,23 @@ fQu akx alD gWG -dgP -jao -uQi -gxm +gNl +pEH +qyd +uWv alW alW alW -gxm -nVA -nVA -nVA -gxm -rgL -rgL -rgL -rgL -nIN +uWv +ugq +ugq +ugq +uWv +iSe +iSe +iSe +iSe +ykg xuY sMM baw @@ -112156,18 +112146,18 @@ bbS xka uLn uoA -wDr +wdA aiR aiR aiR -wDr -hwH -hwH -hwH -wDr -qPk -hKe -qPk +wdA +pWp +pWp +pWp +wdA +fVq +mjz +fVq bst bcR bev @@ -112189,18 +112179,18 @@ bCl bsz caT biA -knm -sPY -knm -wDr -ydA -ydA -ydA -wDr +mjE +nMa +mjE +wdA +pKs +pKs +pKs +wdA azD azD azD -wDr +wdA hkB bTO qSm @@ -112254,23 +112244,23 @@ aet agS aiP aYq -njn -rWz -rWz -rWz -rWz -gxm -tpj -tpj -tpj -gxm +uIw +qZx +qZx +qZx +qZx +uWv +huW +huW +huW +uWv asm asm asm -gxm -maF -jao -uQi +uWv +wLs +pEH +qyd sqf sqf awp @@ -112290,23 +112280,23 @@ ajl hVz alD ajl -tWf -jao -uQi -gxm +iyL +pEH +qyd +uWv alW alW alW -gxm -nVA -nVA -nVA -gxm -rgL -rgL -rgL -rgL -nIN +uWv +ugq +ugq +ugq +uWv +iSe +iSe +iSe +iSe +ykg gnv yhI tTu @@ -112359,18 +112349,18 @@ rlh aLW aLW gxh -wDr +wdA aiR aiR aiR -wDr -hwH -hwH -hwH -wDr -qPk -hKe -tON +wdA +pWp +pWp +pWp +wdA +fVq +mjz +mcz bst bcS bag @@ -112392,18 +112382,18 @@ bCm bsP hgZ biA -knm -sPY -knm -wDr -ydA -ydA -ydA -wDr +mjE +nMa +mjE +wdA +pKs +pKs +pKs +wdA azD azD azD -wDr +wdA wjC bTO xMf @@ -112457,23 +112447,23 @@ aet afB akW biT -njn -njn -njn -njn -njn -gxm -hWV -hWV -hWV -gxm -gxm -gxm -gxm -gxm -mYd -lOn -xwU +uIw +uIw +uIw +uIw +uIw +uWv +vSh +vSh +vSh +uWv +uWv +uWv +uWv +uWv +aaZ +oXo +lEI ajl qhx akw @@ -112493,23 +112483,23 @@ ajl nMV vIf ajl -maF -lOn -nwu -gxm -gxm -gxm -gxm -gxm -hWV -hWV -hWV -gxm -nIN -nIN -nIN -nIN -nIN +wLs +oXo +wFL +uWv +uWv +uWv +uWv +uWv +vSh +vSh +vSh +uWv +ykg +ykg +ykg +ykg +ykg crh csI qhb @@ -112562,18 +112552,18 @@ djQ nFs aLW gFa -wDr +wdA aiR aiR aiR -wDr -hwH -hwH -hwH -wDr -qPk -hKe -qPk +wdA +pWp +pWp +pWp +wdA +fVq +mjz +fVq bst buj bev @@ -112595,18 +112585,18 @@ bCn bsz hMN biA -knm -sPY -knm -wDr -ydA -ydA -ydA -wDr +mjE +nMa +mjE +wdA +pKs +pKs +pKs +wdA azD azD azD -wDr +wdA xad roG mZr @@ -112665,18 +112655,18 @@ cWv cWv cWv cWv -omp -kmx -xog -xog -vFy -ltt -fCP -vUO -fCP -xRn -lOn -kGS +dnh +rOa +fIh +fIh +rKX +sdF +eyZ +ipT +eyZ +obA +oXo +eBy bVE aos akw @@ -112696,23 +112686,23 @@ ans aos alE bVE -kGS -lOn -mnC -vUO -qRx -fCP -ltt -cuI -ocX -ocX -sYj -fvj -fCP -fCP -kGS -fCP -oiB +eBy +oXo +lOj +ipT +gry +eyZ +sdF +rCX +pDl +pDl +fVL +lgo +eyZ +eyZ +eBy +eyZ +wPX baw baw qYC @@ -112765,18 +112755,18 @@ aLL aLL aLL hrF -wDr -wDr -wDr -wDr -wDr -jXR -enK -enK -wDr -kgt -hKe -qPk +wdA +wdA +wdA +wdA +wdA +tdU +cie +cie +wdA +gst +mjz +fVq bst aYQ bbd @@ -112798,18 +112788,18 @@ bnT btX byc biA -knm -sPY -qPU -wDr -sai -sai -wrN -wDr -wDr -wDr -wDr -wDr +mjE +nMa +uPB +wdA +hKL +hKL +mwY +wdA +wdA +wdA +wdA +wdA bSf bSf auX @@ -112868,18 +112858,18 @@ boL boL boL boL -fGD -bfb -qEc -qEc -qEc -ltt -gfv -gfv -gfv -gfv -aPC -tzF +dNw +iQP +eQV +eQV +eQV +sdF +uaR +uaR +uaR +uaR +fDZ +eQJ aEe akA akA @@ -112899,23 +112889,23 @@ akA oap aSb aEe -tzF -lzF -gfv -gfv -gfv -gfv -ltt -qEc -qEc -qEc -rWP -fGD -acQ -acQ -acQ -acQ -uQi +eQJ +adS +uaR +uaR +uaR +uaR +sdF +eQV +eQV +eQV +xRG +dNw +oao +oao +oao +oao +qyd baw vbB ley @@ -112961,25 +112951,25 @@ aKS aKV aKS aLL -qVE -iGc -bwG -hCk -nRN -mzI -olQ -oCK -eob -gMk -qRb -axY -xrC -oWF -xrC -toQ -exl -qyX -qPk +jBI +sro +pAH +nqL +ecf +eNq +mLr +gnh +pWg +cOu +vNE +hXq +wmr +aeD +wmr +fqp +jUc +wdG +fVq bst bst bst @@ -112989,7 +112979,7 @@ bst cjW rlZ rlZ -hrJ +tZO kan biy boX @@ -113001,25 +112991,25 @@ biA biA biA biA -wHn -rDO -cIO -rEd -fml -fqU -bIO -rSA -cIm -emw -bvD -gZW -lUA -bwv -hDU -iNH -cDx -ndl -iDk +xeY +dIs +qaT +vRp +gct +oyd +gKN +icS +kkd +kgg +cAY +wkR +nsx +hhG +sre +qhR +vOK +hVl +fkF bSf bWe bWp @@ -113071,18 +113061,18 @@ dux iYr dux ado -ltt -uVZ -qxK -qxK -rYG -ltt -qxK -qxK -qxK -bTD -mxg -uQi +sdF +xxj +dsq +dsq +eoU +sdF +dsq +dsq +dsq +lwv +xJr +qyd vOy vOy vOy @@ -113102,23 +113092,23 @@ vOy wMO wky sqf -bNI -mxg -uIa -qxK -qxK -qxK -ltt -rYG -qxK -qxK -fdf -ltt -qxK -kGS -ftZ -qxK -fdf +flS +xJr +cQO +dsq +dsq +dsq +sdF +eoU +dsq +dsq +qcr +sdF +dsq +eBy +lcj +dsq +qcr baw dBp gVA @@ -113164,25 +113154,25 @@ aKR aKR aKR aKR -deq -lfx -jgK -lfx -lfx -yih -kgD -deq -bwG -vVy -gtD -vEv -cvI -cvI -cvI -aza -qPk -wKN -qPk +xnn +wli +mfc +wli +wli +ijw +kYj +xnn +pAH +hxU +gLm +kni +xpq +xpq +xpq +mCj +fVq +jYZ +fVq kan ihw beW @@ -113192,7 +113182,7 @@ vhX akQ rlZ rlZ -pnC +jAl dBH bky ryt @@ -113204,25 +113194,25 @@ tAU xmT tAU kan -knm -sPY -knm -qEM -wzy -wzy -wzy -qEM -juo -seL -siC -jNw -xuy -juo -vqz -vMU -mJO -vDN -xbg +mjE +nMa +mjE +kTB +uVi +uVi +uVi +kTB +hmD +myN +lAR +exY +huZ +hmD +hqX +oSf +rng +hIq +cER bVU bVU bVU @@ -113283,9 +113273,9 @@ abE abE abE abE -bff -rnd -fdf +wyV +bMh +qcr vOy nos fcy @@ -113305,27 +113295,27 @@ ayX kXw pxo sqf -uVZ -rnd -fdf -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -oiq -mRU -mRU -mRU -mRU -mRU -mRU -woU +xxj +bMh +qcr +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +vhb +lYm +lYm +lYm +lYm +lYm +lYm +ckw aaa aaa aaa @@ -113366,26 +113356,26 @@ aaa aaa bdH aad -kyw -deq -lfx -bwG +nnw +xnn +wli +pAH aQF aQF aQF aQF szE aQF -ihW -qOS -vEv -xkN -dwj -xkN -aza -qPk -hKe -qPk +mCg +sSu +kni +xtg +wKf +xtg +mCj +fVq +mjz +fVq kan iMI rlZ @@ -113407,26 +113397,26 @@ wJb wJb bPu kan -knm -sPY -knm -qEM -hEg -ewc -lLl -qEM -jvD -cBV -mJO -mJO -mJO +mjE +nMa +mjE +kTB +fjv +wXD +pEh +kTB +cwC +ydw +rng +rng +rng bTq -mJO -mJO -mJO -mgb -xbg -lyW +rng +rng +rng +jbS +cER +qbs ajZ bdH aaa @@ -113486,9 +113476,9 @@ gwo aed aeG abE -umI -fsu -umI +tCM +nNz +tCM vOy oNp aSn @@ -113508,27 +113498,27 @@ niL kXw pxo sqf -umI -uch -umI -mRU -qSw -qSw -qSw -qSw -fHM +tCM +kGa +tCM +lYm +wqU +wqU +wqU +wqU +sLJ pBG rLp ttX -mRU -vpf -mRU -vor -qnA -vkI -gNN -lyz -woU +lYm +dhe +lYm +kDP +eYw +lEz +jsn +kyQ +ckw aaa aaa aaa @@ -113569,10 +113559,10 @@ aaa aaa bdH aad -kyw -xwd -lfx -bwG +nnw +sMe +wli +pAH weR aPE weR @@ -113586,9 +113576,9 @@ aQF aQF aQF aQF -mNG -pSF -eZC +rnu +dAn +sDE kan avW bZn @@ -113598,7 +113588,7 @@ vhX gDW rlZ rlZ -wYr +jmm dBH bky ryt @@ -113610,9 +113600,9 @@ xIk cLA xIk kan -hBW -ltv -qEz +uBI +naO +uJr bJt bJt bJt @@ -113620,16 +113610,16 @@ bJt bJt bJt bJt -mJO -plv -plv -plv -plv -mvg -mJO -mgb -mgb -lyW +rng +kks +kks +kks +kks +owS +rng +jbS +jbS +qbs ajZ bdH aaa @@ -113689,9 +113679,9 @@ adF aef dWw agA -okx -hgA -xfo +xQl +xwT +vaA vOy anz vgx @@ -113711,27 +113701,27 @@ aCC kXw pxo asn -okx -cFH -xfo -mRU -qSw -qSw -qSw -qSw -qSw +xQl +sNu +vaA +lYm +wqU +wqU +wqU +wqU +wqU pBG jZU jAe -mRU -jtU -mRU -tNw -ebI -ukC -jtU -fCi -woU +lYm +iTV +lYm +oDh +xXD +vbJ +iTV +vLd +ckw aaa aaa aaa @@ -113772,14 +113762,14 @@ aaa aaa bdH aad -kyw -deq -cGY -bwG -rUq -rUq -sab -sab +nnw +xnn +eSH +pAH +xtr +xtr +jXC +jXC izk aWD cWr @@ -113789,9 +113779,9 @@ eKT wan cTC aQF -syj -wKN -qqf +aof +jYZ +hqM xMs xMs xMs @@ -113801,7 +113791,7 @@ xMs cjW rlZ rlZ -jbO +bvm kan quv rZB @@ -113813,9 +113803,9 @@ vMo vMo vMo vMo -tzw -sPY -hkC +oRh +nMa +mHt bJt xOL gGI @@ -113823,16 +113813,16 @@ eeu gfq eFP gAz -mJO -plv -plv -plv -plv -plv -mJO -xbg -pgJ -lyW +rng +kks +kks +kks +kks +kks +rng +cER +rzK +qbs ajZ bdH aaa @@ -113892,9 +113882,9 @@ adF aef aef uZZ -kGS -bNT -rmB +eBy +tje +vGt vOy awQ oLU @@ -113914,27 +113904,27 @@ edv kXw pxo asn -eWN -lOn -rmB -mRU -qSw -qSw -qSw -qSw -qSw +dyG +oXo +vGt +lYm +wqU +wqU +wqU +wqU +wqU pBG cVq nOb -mRU -vpI -mRU -mRU -mRU -gBs -mRU -mRU -woU +lYm +uCU +lYm +lYm +lYm +hdf +lYm +lYm +ckw aaa aaa aaa @@ -113975,12 +113965,12 @@ aaa aaa bdH aad -kyw -deq -veq -bwG -pKh -sab +nnw +xnn +dle +pAH +hys +jXC rDv bmW jWu @@ -113992,9 +113982,9 @@ aRy aRy nIj aQF -rWv -hKe -qPk +iSC +mjz +fVq xMs aSO feY @@ -114016,9 +114006,9 @@ wZE iGn byd vMo -knm -sPY -knm +mjE +nMa +mjE lhB pOY bDs @@ -114026,16 +114016,16 @@ jge bDs bDs hLC -mJO -plv -plv -plv -plv -plv -mJO -xbg -mgb -lyW +rng +kks +kks +kks +kks +kks +rng +cER +jbS +qbs ajZ bdH aaa @@ -114095,9 +114085,9 @@ adF bls aeH agq -nIF -ijn -rmB +pIX +nSE +vGt vOy hng dnC @@ -114117,27 +114107,27 @@ aCt kXw pxo asn -eWN -jao -hCF -mRU -qSw -qSw -qSw -qSw -qSw +dyG +pEH +dFr +lYm +wqU +wqU +wqU +wqU +wqU pBG dzp ngV -mRU -jtU -jtU -uBx -fLi -vpf -prf -vpf -woU +lYm +iTV +iTV +qHK +uPD +dhe +rkS +dhe +ckw aaa aac aaf @@ -114178,10 +114168,10 @@ aaa aaa bdH aad -kyw -deq -deF -bwG +nnw +xnn +wbm +pAH mTi lJK kYV @@ -114195,9 +114185,9 @@ bQU bQU bjD dqE -htl -vaq -vTX +bRl +eMK +eNL xMs lOH dUS @@ -114219,9 +114209,9 @@ bof vit dxu vMo -knm -sPY -knm +mjE +nMa +mjE lhB xCb bDs @@ -114229,16 +114219,16 @@ bIJ bDs bDs qJS -mJO -plv -plv -plv -plv -plv -mJO -xbg -xbg -lyW +rng +kks +kks +kks +kks +kks +rng +cER +cER +qbs ajZ aaa avo @@ -114298,9 +114288,9 @@ adF aef kqN agA -eWN -mxg -hCF +dyG +xJr +dFr vOy xyt wiW @@ -114320,10 +114310,10 @@ vOy mFq vqW sqf -jMP -jao -rmB -mRU +wal +pEH +vGt +lYm pBG pBG pBG @@ -114332,15 +114322,15 @@ pBG pBG saL pBG -mRU -mRU -mRU -mRU -mRU -mRU -jtU -vpf -woU +lYm +lYm +lYm +lYm +lYm +lYm +iTV +dhe +ckw aaa aad aag @@ -114381,15 +114371,15 @@ aaa aaa bdH aad -kyw -deq -oWq -bwG +nnw +xnn +dpD +pAH aQF aQF aPH xIQ -tmX +mrm aWD rrK aRy @@ -114398,9 +114388,9 @@ brb cpp buv aWF -qPk -hKe -qPk +fVq +mjz +fVq xMs akE qGF @@ -114422,9 +114412,9 @@ ggz dka bye vMo -knm -sPY -knm +mjE +nMa +mjE lhB aQW bDs @@ -114439,9 +114429,9 @@ bJt bJt bJt bJt -xbg -otW -lyW +cER +keN +qbs ajZ avo avo @@ -114501,9 +114491,9 @@ aef aef tRD abE -ciI -mxg -rmB +jtr +xJr +vGt vOy iYf bIM @@ -114523,12 +114513,12 @@ hPe sdu btC vLj -nIF -ijn -rmB -dyJ +pIX +nSE +vGt +jHw pBG -gqQ +hqJ cHG nQA wph @@ -114540,10 +114530,10 @@ gel gel gel fkX -mRU -jtU -tMU -woU +lYm +iTV +enA +ckw aaf aag aag @@ -114584,10 +114574,10 @@ bdH bdH bdH aad -kyw -xwd -lfx -bwG +nnw +sMe +wli +pAH weR aPE izk @@ -114601,9 +114591,9 @@ aTY iCF gJP aQF -uNf -hKe -qPk +fwm +mjz +fVq xMs aYR dUS @@ -114625,9 +114615,9 @@ jZd vit bzo vMo -knm -sPY -knm +mjE +nMa +mjE lhB pxD bDs @@ -114642,9 +114632,9 @@ iIl bDs ujV bJt -xbg -xbg -lyW +cER +cER +qbs ajZ avo avs @@ -114704,9 +114694,9 @@ adF aef afs agA -eWN -lOn -rmB +dyG +oXo +vGt vOy mTp wiW @@ -114726,10 +114716,10 @@ lON dVu oDR vOP -kGS -fAW -vlR -qPv +eBy +gkl +aHV +eqV qvL wmP wmP @@ -114743,10 +114733,10 @@ cXF rLU dKp cHu -mRU -jtU -vpf -woU +lYm +iTV +dhe +ckw aag aag aag @@ -114787,12 +114777,12 @@ bdH bdH bdH aad -kyw -deq -sJa -bwG -pGG -sab +nnw +xnn +cnP +pAH +weW +jXC izk hds aQF @@ -114804,9 +114794,9 @@ qZH bsN buB aWD -qPk -hKe -qPk +fVq +mjz +fVq xMs bXw eiw @@ -114828,9 +114818,9 @@ boh qDP wbP vMo -knm -sPY -cbL +mjE +nMa +hoT bJt qom bDs @@ -114845,8 +114835,8 @@ idx hAz gHj bJt -oqI -xbg +ygb +cER avo avo avo @@ -114907,9 +114897,9 @@ adD sOw afs agA -eWN -lOn -rmB +dyG +oXo +vGt vOy axn dRh @@ -114929,10 +114919,10 @@ vOy aRd aIo vOy -gyb -lOn -rmB -aRl +vdI +oXo +vGt +bUH pBG lvb eAN @@ -114946,10 +114936,10 @@ bHk vZw bHk cHu -mRU -vpf -mRU -woU +lYm +dhe +lYm +ckw aag aag aag @@ -114990,10 +114980,10 @@ bdH bdH bdH aad -kyw -lfx -deq -jgK +nnw +wli +xnn +mfc aNs aNs hyw @@ -115007,9 +114997,9 @@ fHF bml buB aWD -eZC -pSF -eZC +sDE +dAn +sDE xMs xMs xMs @@ -115031,9 +115021,9 @@ vMo vMo vMo vMo -hBW -ltv -kGw +uBI +naO +fRF bJt bJt nFI @@ -115048,8 +115038,8 @@ gSk bDs bpI bJt -jLH -xbg +rrp +cER lpy avC avC @@ -115110,9 +115100,9 @@ adF aef afs agA -eWN -lOn -rmB +dyG +oXo +vGt vOy aAr pGK @@ -115132,9 +115122,9 @@ aCD hFC qmy vOy -eWN -lOn -rmB +dyG +oXo +vGt pBG pBG hEl @@ -115149,10 +115139,10 @@ vzp vZw erd cHu -mRU -vzB -mRU -woU +lYm +eLq +lYm +ckw aag aag aag @@ -115193,10 +115183,10 @@ bdH bdH bdH aad -kyw -txp -iGc -bwG +nnw +dDd +sro +pAH vMr vMr izk @@ -115210,9 +115200,9 @@ htL aUL buB aWD -qPk -hKe -qPk +fVq +mjz +fVq nyw iXU hDw @@ -115234,9 +115224,9 @@ vEH uFH tQd nyw -knm -sPY -knm +mjE +nMa +mjE yfS sEi dck @@ -115251,8 +115241,8 @@ gSk reL wiI bJt -tqV -dSm +kbz +meM avo avo avo @@ -115313,9 +115303,9 @@ aef aef pHG abE -ciI -jao -rmB +jtr +pEH +vGt vOy aID gLc @@ -115335,9 +115325,9 @@ aoM aoM vgB kgs -eWN -jao -rmB +dyG +pEH +vGt bvX ojQ eAN @@ -115352,10 +115342,10 @@ bHk vZw bHk cHu -mRU -vpf -mRU -woU +lYm +dhe +lYm +ckw aah aag aag @@ -115396,10 +115386,10 @@ bdH bdH bdH aad -kyw -cme -whm -bwG +nnw +kQZ +ohw +pAH mTi lJK izk @@ -115413,9 +115403,9 @@ aTZ aUM gJP aQF -rmz -wKN -qPk +bHU +jYZ +fVq nyw beH dcd @@ -115437,9 +115427,9 @@ beH beH beH nyw -knm -sPY -knm +mjE +nMa +mjE yfS hgL swt @@ -115454,9 +115444,9 @@ gSk bDs vwI bJt -lAa -mgb -lyW +qxb +jbS +qbs ajZ avo avs @@ -115516,9 +115506,9 @@ adF aef aGS agA -eWN -jao -rmB +dyG +pEH +vGt vOy aMd pGK @@ -115538,9 +115528,9 @@ prx fpT eVT kgs -eWN -jao -rmB +dyG +pEH +vGt bvX kVV vQR @@ -115555,10 +115545,10 @@ pRy wwW mRW cHu -mRU -jtU -vpf -woU +lYm +iTV +dhe +ckw aaa aad aag @@ -115599,15 +115589,15 @@ bdH bdH bdH aad -kyw -cGY -ipn -bwG +nnw +eSH +hWV +pAH aQF aQF sPc xIQ -sab +jXC aWD olM aRy @@ -115616,9 +115606,9 @@ eXr iFH buv aWE -qPk -ckh -htl +fVq +nsO +bRl aum emr emr @@ -115640,9 +115630,9 @@ rCO rCO rCO eVv -wwE -mDZ -knm +goS +dHS +mjE ykj rlQ ven @@ -115657,9 +115647,9 @@ gSk bDs fUB bJt -mgb -nhw -lyW +jbS +fLl +qbs ajZ avo avo @@ -115719,9 +115709,9 @@ adF aef nIS uZZ -kGS -jao -rmB +eBy +pEH +vGt vOy aMg aSo @@ -115741,16 +115731,16 @@ ger aoM aFf mmN -eWN -jao -rmB +dyG +pEH +vGt bvX maO lPm iZV fdx cuq -eQJ +edn fVF pBG qWR @@ -115758,10 +115748,10 @@ wJH wJH wJH sNR -mRU -jtU -vpf -woU +lYm +iTV +dhe +ckw aaa aae aah @@ -115802,10 +115792,10 @@ bdH bdH bdH aad -kyw -oif -deq -bwG +nnw +jtG +xnn +pAH weR aPE izk @@ -115819,9 +115809,9 @@ pOi pOi nVF aWF -qPk -wKN -qPk +fVq +jYZ +fVq nyw eGZ ieX @@ -115843,9 +115833,9 @@ bhq dcd eTd nyw -knm -rDO -hqp +mjE +dIs +rDM kKk rDt gpI @@ -115860,9 +115850,9 @@ gSk bDs nqO bJt -nQo -pgJ -lyW +lBj +rzK +qbs ajZ aaa avo @@ -115922,9 +115912,9 @@ adF aef nIS eWF -kGS -jao -rmB +eBy +pEH +vGt vOy aQZ bkT @@ -115942,11 +115932,11 @@ ggl jjS qMP kBP -aSl +qIB vOy -ciI -jao -hCF +jtr +pEH +dFr pBG pBG pBG @@ -115957,14 +115947,14 @@ pBG pBG pBG pBG -mRU -mRU -mRU -mRU -mRU -jtU -tMU -woU +lYm +lYm +lYm +lYm +lYm +iTV +enA +ckw bdH bdH bdH @@ -116005,12 +115995,12 @@ bdH bdH bdH aad -kyw -byt -lfx -bwG -iWQ -iWQ +nnw +pDZ +wli +pAH +esV +esV uFd mUq qwt @@ -116022,9 +116012,9 @@ tou tou jhy aQF -eZC -hMk -mkw +sDE +dPO +ojn bdd bdd bdd @@ -116046,9 +116036,9 @@ bdd bdd bdd bdd -xwm -ltv -hBW +uHi +naO +uBI yfS ape ven @@ -116063,9 +116053,9 @@ cnu bDs knK bJt -xbg -oUZ -lyW +cER +wRn +qbs ajZ bdH bdH @@ -116125,9 +116115,9 @@ adF aef kqN agA -eWN -lOn -rmB +dyG +oXo +vGt vOy dVd lea @@ -116147,27 +116137,27 @@ vti vti aEZ vOy -eWN -lOn -rmB +dyG +oXo +vGt fKh gQk trU oNY fdx pBG -pVF +eNw ppF fiE pBG -jtU -jtU -uBx -ycM -vpf -jtU -vpf -woU +iTV +iTV +qHK +qsr +dhe +iTV +dhe +ckw bdH bdH bdH @@ -116208,13 +116198,13 @@ bdH bdH bdH aad -kyw -jNo -lfx -bwG -iWQ -iWQ -sab +nnw +vEQ +wli +pAH +esV +esV +jXC aNr pQY aWD @@ -116225,9 +116215,9 @@ dVO bsR aQr aQF -qPk -wKN -qPk +fVq +jYZ +fVq tda ngI dkq @@ -116249,9 +116239,9 @@ qby btY bAJ huU -knm -sPY -knm +mjE +nMa +mjE yfS ape ven @@ -116266,9 +116256,9 @@ gSk ljG tSp bJt -xbg -ssk -lyW +cER +meC +qbs ajZ bdH bdH @@ -116328,9 +116318,9 @@ fcE aef uNN abE -iGZ -lOn -rmB +wOm +oXo +vGt vOy vOy vOy @@ -116350,9 +116340,9 @@ nPE oqZ uaI vOy -eFI -lOn -rmB +mKO +oXo +vGt fKh iuG sOv @@ -116363,14 +116353,14 @@ dzp rMT dzp pBG -jtU -mRU -mRU -mRU -mRU -vpf -mRU -woU +iTV +lYm +lYm +lYm +lYm +dhe +lYm +ckw bdH bdH bdH @@ -116411,10 +116401,10 @@ bdH bdH bdH aad -kyw -deq -lfx -bwG +nnw +xnn +wli +pAH mTi lJK mTi @@ -116428,9 +116418,9 @@ aQF aQF aQF aQF -ldb -rYI -fzc +dvK +rAc +kQm bdg vyg bni @@ -116452,9 +116442,9 @@ snb xbd bAU bdg -jlD -pYN -raE +vze +lyP +sZW bJt wbC lHu @@ -116469,9 +116459,9 @@ gSk oDE bJt bJt -xbg -mgb -lyW +cER +jbS +qbs ajZ bdH bdH @@ -116531,11 +116521,11 @@ aeI eva xzf abE -ciI -jao -uZI -cSM -xfo +jtr +pEH +puV +rvt +vaA vOy vOy vOy @@ -116553,9 +116543,9 @@ vOy vOy vOy vOy -czJ -jao -rmB +wZt +pEH +vGt fKh ubI nQA @@ -116566,14 +116556,14 @@ nTR gDp rwq pBG -jtU -mRU -oyO -nve -mRU -vzB -mRU -woU +iTV +lYm +fhb +vlj +lYm +eLq +lYm +ckw bdH bdH bdH @@ -116614,10 +116604,10 @@ bdH bdH bdH aad -kyw -xbI -lfx -bwG +nnw +dwU +wli +pAH aQF aQF aQF @@ -116627,13 +116617,13 @@ aQF aQF aQF aQF -wYG -yhR -gHi -bwG -pzj -uhq -pzj +beA +hmM +gFc +pAH +dJs +rTr +dJs bdg apz dyd @@ -116655,9 +116645,9 @@ vPw bvr bBQ bdg -sgL -aRL -sgL +nre +hyu +nre rde vjC iMm @@ -116671,10 +116661,10 @@ bDs gSk luS bJt -uCw -xbg -mgb -lyW +ebL +cER +jbS +qbs ajZ bdH bdH @@ -116716,11 +116706,11 @@ aaa aaa aaa aaa -vHn -cGd -moK -cGd -cGd +qdy +rOR +jZD +rOR +rOR aNi aNi bWr @@ -116734,11 +116724,11 @@ aNi aNi aNi aNi -eFI -jao -gfv -gfv -rmB +mKO +pEH +uaR +uaR +vGt vOy elR xXh @@ -116756,9 +116746,9 @@ dMK vOy vOy vOy -eWN -jao -rmB +dyG +pEH +vGt pBG mGT nQA @@ -116769,14 +116759,14 @@ pBG pBG pBG pBG -jtU -rXF -jtU -vzB -mRU -kuK -mRU -woU +iTV +pmS +iTV +eLq +lYm +jDh +lYm +ckw aaa aaa aaa @@ -116817,26 +116807,26 @@ bdH aaa bdH aad -kyw -deq -deq -bwG -tEu -mUY -vOw -ouU -dro -bwG -gSH -xJp -qxJ -hCk -deq -nRN -bwG -wsS -vxY -wsS +nnw +xnn +xnn +pAH +uBS +vDZ +inq +sVv +jVi +pAH +cTc +cVZ +qvG +nqL +xnn +ecf +pAH +yep +dgL +yep bdg auj bbf @@ -116858,9 +116848,9 @@ bpv tMW bBY bCh -mPM -esd -mPM +oUo +xXC +oUo ejw xML iMm @@ -116874,10 +116864,10 @@ bDs gSk vSp lHG -kOJ -mgb -mgb -lyW +rHA +jbS +jbS +qbs ajZ bdH bdH @@ -116919,11 +116909,11 @@ aaf aaf aaf aaf -vHn -ejV -hoT -hoT -vyh +qdy +qTv +oKB +oKB +nSm aNi cYT aNm @@ -116937,11 +116927,11 @@ bhx vif aOR bsw -eWN -uSZ -rDm -ldq -rmB +dyG +rYs +onq +xAC +vGt vOy wWz vHO @@ -116957,29 +116947,29 @@ ruc xOY wTM vOy -qqb -cSM -fvE -jao -hCF +tKv +rvt +iif +pEH +dFr pBG -tGT +bfO nQA nQA jDO pBG aYH cHG -cOY +cgd pBG -mSM -mRU -gRc -oOp -mRU -jtU -vpf -woU +gck +lYm +cep +caL +lYm +iTV +dhe +ckw aaf aaf aaf @@ -117013,33 +117003,33 @@ bdH bdH bdH aac -kyw -kyw -kyw -kyw -kyw -kyw -kyw -kyw -deq -caq -bwG -igb -cpz -ooA -kpj -sBY -wyG -qjL -kpj -rAo -lka -kpj -kpj -mQY -ygp -tdi -fZE +nnw +nnw +nnw +nnw +nnw +nnw +nnw +nnw +xnn +jkb +pAH +xhp +vVD +ftr +kmu +vdc +oTR +waY +kmu +byD +oBQ +kmu +kmu +dZT +fUz +oFs +owO tda mng wTm @@ -117061,9 +117051,9 @@ mng wTm wCI tda -oSM -ter -oSM +npi +vJx +npi bJt swE wpI @@ -117077,17 +117067,17 @@ qxE rui vSp bJt -uXU -xbg -nhw -lyW -lyW -lyW -lyW -lyW -lyW -lyW -lyW +ogj +cER +fLl +qbs +qbs +qbs +qbs +qbs +qbs +qbs +qbs ajY aaa aaa @@ -117122,11 +117112,11 @@ aag aag aag aag -vHn -dGg -tob -hoT -tob +qdy +bEj +nxJ +oKB +nxJ aNi aZe aNm @@ -117140,11 +117130,11 @@ aco aco dYu bsw -cKW -xNl -dpS -jao -hCF +yks +fqX +nTU +pEH +dFr vOy wWz anw @@ -117160,11 +117150,11 @@ wLy eiE wTM vOy -eWN -gFL -gDQ -xgE -rmB +dyG +sfv +hJt +xVd +vGt fKh eYn nQA @@ -117175,14 +117165,14 @@ eAN eAN eAN pBG -vpf -mRU -mRU -mRU -mRU -vpI -vpf -woU +dhe +lYm +lYm +lYm +lYm +uCU +dhe +ckw aag aag aag @@ -117215,22 +117205,22 @@ bdH bdH bdH bdH -kyw -kyw -hCk -maK -lfx -lfx -lfx -deq -deq -deq -lfx -eYp -lfx -vmq -cqH -tjO +nnw +nnw +nqL +mQQ +wli +wli +wli +xnn +xnn +xnn +wli +ddN +wli +oPY +oPs +sbA bdd bdd bdd @@ -117240,9 +117230,9 @@ bdd bdd bdd bdd -nhE -naa -nVQ +cnx +kCH +czH bdd vuA vuA @@ -117264,9 +117254,9 @@ vuA vuA vuA bdd -fvV -ter -gvK +kko +vJx +raq bdd bdd bdd @@ -117281,17 +117271,17 @@ cDC vuF bJt bJt -xbg -mgb -mgb -mgb -gLm -ttD -mgb -mgb -mgb -lyW -lyW +cER +jbS +jbS +jbS +aTu +iPm +jbS +jbS +jbS +qbs +qbs aaa aaa aaa @@ -117325,11 +117315,11 @@ aag aag aag aag -vHn -oSG -tob -tob -tob +qdy +xIp +nxJ +nxJ +nxJ aNi aZr aNm @@ -117345,9 +117335,9 @@ cCa aNi aNi aNi -jMP -mxg -rmB +wal +xJr +vGt vOy wWz ovG @@ -117363,11 +117353,11 @@ gxP aOe wTM vOy -nLM -lOn -acQ -acQ -rmB +gyR +oXo +oao +oao +vGt fKh wvo nQA @@ -117378,14 +117368,14 @@ skR oxc nBi pBG -vzB -mRU -pGh -xEs -mRU -jtU -tMU -woU +eLq +lYm +mre +flK +lYm +iTV +enA +ckw aag aag aag @@ -117418,22 +117408,22 @@ bdH bdH bdH bdH -kyw -xJp -lfx -deq -yih -deq -deq -lfx -lfx -lfx -rHq -bwG -nPO -cGB -ugj -fbC +nnw +cVZ +wli +xnn +ijw +xnn +xnn +wli +wli +wli +qkc +pAH +jEj +bTr +gVP +xiZ bdd uvU xZk @@ -117443,9 +117433,9 @@ eYj aSp mho bdg -fZE -iLm -fZE +owO +daA +owO bdg bqZ bqZ @@ -117467,9 +117457,9 @@ bqZ bqZ bqZ bdg -oSM -xub -oSM +npi +cbo +npi bdg lCE oZD @@ -117484,17 +117474,17 @@ feq loY aDU bJt -vAx -mgb -xbg -mgb -xpL -mgb -mgb -xbg -xbg -mgb -lyW +mHj +jbS +cER +jbS +kus +jbS +jbS +cER +cER +jbS +qbs aaa aaa aaa @@ -117528,11 +117518,11 @@ aag aag aag aag -vHn -oeH -tob -hoT -tob +qdy +pPq +nxJ +oKB +nxJ aNi aZs aNm @@ -117548,9 +117538,9 @@ qiy ahR ahR egt -tzF -gIN -rmB +eQJ +nmj +vGt vOy woh vgO @@ -117566,13 +117556,13 @@ qxm vgO xAe vOy -oxg -jao -iUV -xNl -xZf +wYQ +pEH +bfG +fqX +miG fKh -lDa +sSP eAN eAN vEG @@ -117581,14 +117571,14 @@ pBG pBG pBG pBG -vpf -tra -vpf -vzB -mRU -iJT -vpf -woU +dhe +whr +dhe +eLq +lYm +iQR +dhe +ckw aag aag aag @@ -117621,9 +117611,9 @@ bdH bdH bdH bdH -kyw -deq -lfx +nnw +xnn +wli nsY nsY pRT @@ -117633,10 +117623,10 @@ nsY nsY nsY nsY -bwG -bwG -msC -bwG +pAH +pAH +vwU +pAH bdd xwE dAQ @@ -117646,9 +117636,9 @@ tGG bpA mho bdg -fZE -naa -fZE +owO +kCH +owO bdg bqZ beH @@ -117670,9 +117660,9 @@ beH beH bqZ bdg -oSM -ter -oSM +npi +vJx +npi bdg lCE uek @@ -117695,9 +117685,9 @@ nsY nsY nsY nsY -kqb -mgb -lyW +ogM +jbS +qbs aaa aaa aaa @@ -117731,11 +117721,11 @@ aag aag aag aag -vHn -mId -hoT -hoT -hoT +qdy +brD +oKB +oKB +oKB aNi jWr aNm @@ -117751,9 +117741,9 @@ hpY aOR aOR bgK -kGS -mxg -rmB +eBy +xJr +vGt vOy vOy vOy @@ -117769,29 +117759,29 @@ aoK vOy vOy vOy -glc -jao -rmB -mRU -mRU +oFZ +pEH +vGt +lYm +lYm pBG aGs eAN eAN vEG vrJ -xOs +tQM kOH hIs pBG -mSM -mRU -tCd -vpf -tra -vpf -mRU -woU +gck +lYm +kqu +dhe +whr +dhe +lYm +ckw aag aag aag @@ -117824,9 +117814,9 @@ aaa aaa aaa aaa -kyw -lfx -deq +nnw +wli +xnn nsY xWT kxd @@ -117836,10 +117826,10 @@ rSG rur oqS nsY -hsh -cPP -deq -eLH +hnK +niy +xnn +fLI bdd eUZ lCr @@ -117849,9 +117839,9 @@ tGG lJD mho bdg -fZE -naa -fZE +owO +kCH +owO bdg bqZ beH @@ -117873,9 +117863,9 @@ gBo beH bqZ bdg -oSM -ter -oSM +npi +vJx +npi bdg lCE fMe @@ -117898,9 +117888,9 @@ rSG qkP oqS nsY -mgb -mgb -lyW +jbS +jbS +qbs aaa aaa aaa @@ -117934,11 +117924,11 @@ aag aag aag aag -vHn -eDq -jFI -cGd -moK +qdy +rMG +fra +rOR +jZD aNi aNi aNi @@ -117954,9 +117944,9 @@ aOR aOR agr aNi -eWN -bNT -rmB +dyG +tje +vGt vOy vOy vOy @@ -117972,11 +117962,11 @@ vOy vOy vOy vOy -kbT -bNT -rmB -mRU -vpf +mba +tje +vGt +lYm +dhe pBG xiU xUa @@ -117987,14 +117977,14 @@ pZH nnL lgt pBG -vpI -mRU -bhV -jtU -mRU -vzB -mRU -woU +uCU +lYm +aHx +iTV +lYm +eLq +lYm +ckw aag aag aag @@ -118027,9 +118017,9 @@ aaa aaa aaa aaa -kyw -lfx -deq +nnw +wli +xnn nsY xWT kxd @@ -118039,10 +118029,10 @@ iIP kxd dDt nsY -exb -deq -deq -qLY +krA +xnn +xnn +uoF bdd ljW bDP @@ -118052,9 +118042,9 @@ lCr mpn pZR bdd -atH -iEM -atH +mqu +tvc +mqu bCx bqZ beH @@ -118076,9 +118066,9 @@ bgO beH bqZ bCx -oSM -ter -oSM +npi +vJx +npi bdd tSF lsn @@ -118101,9 +118091,9 @@ dmR kxd dDt nsY -mgb -xbg -lyW +jbS +cER +qbs aaa aaa aaa @@ -118137,15 +118127,15 @@ aag aag aag aag -vHn -cGd -cGd -cGd -iTQ -lWt -eDq -eDq -eDq +qdy +rOR +rOR +rOR +rLQ +rJF +rMG +rMG +rMG aNi aNi aNi @@ -118157,9 +118147,9 @@ aNi aNi aNi aNi -glc -bNT -rmB +oFZ +tje +vGt bPF aqG ata @@ -118172,14 +118162,14 @@ vYz awR uoi vOy -jyJ -niF +pOR +vlf bPF -ciI -lOn -rmB -mRU -vpf +jtr +oXo +vGt +lYm +dhe pBG pBG pBG @@ -118190,14 +118180,14 @@ pBG pBG pBG pBG -jtU -mRU -mRU -mRU -mRU -vpf -mRU -woU +iTV +lYm +lYm +lYm +lYm +dhe +lYm +ckw aag aag aag @@ -118230,9 +118220,9 @@ aaa aaa aaa aaa -kyw -lfx -deq +nnw +wli +xnn nsY gsg vHq @@ -118242,10 +118232,10 @@ rNb bxC jiU nsY -jvt -hiu -deq -vSr +dXU +tIN +xnn +vgY bdd asr asr @@ -118255,9 +118245,9 @@ nYp fZG phd pmv -mzv -yfg -fZE +kcR +vXV +owO nyw bqZ beH @@ -118279,9 +118269,9 @@ tmB eBg vKe eVv -cVZ -xdf -cVZ +rqn +onn +rqn hLS vKe vKe @@ -118304,9 +118294,9 @@ iSm bxC jiU nsY -mgb -xbg -lyW +jbS +cER +qbs aaa aaa aaa @@ -118330,39 +118320,39 @@ aaa aaa aaa aaa -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -hoT -tob -tob -hoT -tob -tob -hqm -hoT -tob -tob -tob -tob -hoT -vyh -hoT -tob -tob -fkK -kGS -bNT -kGS +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +oKB +nxJ +nxJ +oKB +nxJ +nxJ +mvu +oKB +nxJ +nxJ +nxJ +nxJ +oKB +nSm +oKB +nxJ +nxJ +cLx +eBy +tje +eBy cbg aqG atb @@ -118375,42 +118365,42 @@ paa sXd gVq vOy -sLk -niF +dan +vlf cbg -kGS -lOn -kGS -rXF -jtU -jtU -vpf -ycM -tne -jtU -jtU -vpf -ycM -vpf -jtU -jtU -jtU -uBx -fLi -jtU -vpf -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm +eBy +oXo +eBy +pmS +iTV +iTV +dhe +qsr +leZ +iTV +iTV +dhe +qsr +dhe +iTV +iTV +iTV +qHK +uPD +iTV +dhe +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv aaa aaa aaa @@ -118433,9 +118423,9 @@ aaa aac aaf aaf -kyw -lfx -deq +nnw +wli +xnn nsY nsY qxC @@ -118445,10 +118435,10 @@ nsY ntx nsY nsY -qWL -kIk -eXD -kMr +biv +oSy +waS +pJE bdd bdd bdd @@ -118458,9 +118448,9 @@ bdd bdd bdd bdd -fZE -iLm -fZE +owO +daA +owO bdg bqZ beH @@ -118482,9 +118472,9 @@ bgO beH bqZ bdg -oSM -xub -oSM +npi +cbo +npi bdd bdd bdd @@ -118507,9 +118497,9 @@ nsY gLZ nsY nsY -mgb -nhw -lyW +jbS +fLl +qbs aaf aaf ajY @@ -118533,7 +118523,7 @@ aaa aaa aaa aaa -gxm +uWv dxF dxF aaH @@ -118544,28 +118534,28 @@ aam aam aam aam -gxm -hgk -tob -cGd -cGd -cGd -cGd -cGd -cGd -cGd -cGd -cGd -cGd -cGd -cGd +uWv +dRE +nxJ +rOR +rOR +rOR +rOR +rOR +rOR +rOR +rOR +rOR +rOR +rOR +rOR aej aej aej aej -jZW -bNT -rZC +lLl +tje +toe vOy vOy vOy @@ -118581,28 +118571,28 @@ vOy vOy vOy vOy -bxV -lOn -uAi -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -mRU -jtU -vpf -gxm +iIJ +oXo +kKf +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +lYm +iTV +dhe +uWv aeT aeT aeT @@ -118613,7 +118603,7 @@ aeT nnD aZF aZF -gxm +uWv aaa aaa aaa @@ -118634,11 +118624,11 @@ aaa aaa aaa aad -kyw -kyw -kyw -deq -caq +nnw +nnw +nnw +xnn +jkb nsY tUS bNh @@ -118648,10 +118638,10 @@ fPp lqN vlO nsY -xxG -smA -ktR -lfx +kkj +mIX +lls +wli bdd dJI jaf @@ -118661,9 +118651,9 @@ mPR osU vKe dYX -mzv -xhW -fZE +kcR +hFU +owO bdg bqZ beH @@ -118685,9 +118675,9 @@ bgO beH bqZ bdg -oSM -iOo -cVZ +npi +mEr +rqn iUk cIx fUC @@ -118710,11 +118700,11 @@ iQt uZo xmJ nsY -xbg -mgb -lyW -lyW -lyW +cER +jbS +qbs +qbs +qbs ajZ aaa aaa @@ -118736,7 +118726,7 @@ aaa aaa aaa aaa -gxm +uWv dxF dxF aaH @@ -118747,28 +118737,28 @@ aam aam aam aam -gxm -bLf -tob -cGd -vVY -vVY -vVY -vVY -kLB -vVY -vVY -vVY -vVY -kLB +uWv +tvm +nxJ +rOR +ivy +ivy +ivy +ivy +lYS +ivy +ivy +ivy +ivy +lYS aej aeO afG ags aej -eWN -bNT -rmB +dyG +tje +vGt vOy elR xXh @@ -118784,28 +118774,28 @@ xXh xXh dMK vOy -eWN -lOn -rmB -mRU -bnF -lBw -bnF -mRU -qSw -qSw -qSw -qSw -urg -qSw -qSw -qSw -qSw -urg -mRU -jtU -nVE -gxm +dyG +oXo +vGt +lYm +vWb +fDC +vWb +lYm +wqU +wqU +wqU +wqU +tJa +wqU +wqU +wqU +wqU +tJa +lYm +iTV +kFL +uWv aeT aeT aeT @@ -118816,7 +118806,7 @@ aeT nnD aZF aZF -gxm +uWv aaa aaa aaa @@ -118836,12 +118826,12 @@ aaa aaa aaa aaa -kyw -kyw -veq -deq -deq -lfx +nnw +nnw +dle +xnn +xnn +wli nsY kio sJY @@ -118851,10 +118841,10 @@ xTW oGP cnM nsY -kqB -txH -txH -deq +foa +chi +chi +xnn bdd fva lkL @@ -118864,9 +118854,9 @@ cHB hDV vmP bdd -fZE -iLm -fZE +owO +daA +owO bdg bqZ bqZ @@ -118888,9 +118878,9 @@ bgO bqZ bqZ bdg -oSM -xub -oSM +npi +cbo +npi bdd oNP tge @@ -118913,12 +118903,12 @@ pyc uMn ivz nsY -xbg -mgb -xbg -xbg -lyW -lyW +cER +jbS +cER +cER +qbs +qbs aaa aaa aaa @@ -118939,7 +118929,7 @@ aaa aaa aaa aaa -gxm +uWv dxF dxF aaH @@ -118950,28 +118940,28 @@ aam aam aam aam -gxm -rGz -tob -cGd -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY +uWv +qXe +nxJ +rOR +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy aej aeP agI aia yaz -kGS -mxg -rmB +eBy +xJr +vGt vOy wWz vHO @@ -118987,28 +118977,28 @@ uXj rdt wTM vOy -eWN -jao -rmB -eyI -jtU -jaW -vkV -mRU -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -mRU -jtU -bWg -gxm +dyG +pEH +vGt +uai +iTV +tzZ +lOt +lYm +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +lYm +iTV +wlQ +uWv aeT aeT aeT @@ -119019,7 +119009,7 @@ aeT nnD aZF aZF -gxm +uWv aaa aaa aaa @@ -119039,12 +119029,12 @@ aaa aaa aaa aaa -kyw -lHB -lfx -lfx -lfx -lfx +nnw +cXh +wli +wli +wli +wli heK kam axc @@ -119054,10 +119044,10 @@ vHh pvh sZs nsY -bwG -erL -scX -caq +pAH +mtR +vmZ +jkb bdd cDH cHB @@ -119067,9 +119057,9 @@ wmz rhy rec bdg -fZE -naa -onn +owO +kCH +sVp bdd bdd bDQ @@ -119091,9 +119081,9 @@ bgO cab bdd bdd -tmE -ter -oSM +alu +vJx +npi bdg jLS xdP @@ -119116,12 +119106,12 @@ xuQ uPW kYv oDx -sAS -sAS -sAS -rCh -xbg -lyW +lTL +lTL +lTL +tzC +cER +qbs aaa aaa aaa @@ -119142,39 +119132,39 @@ aaa aaa aaa aaa -gxm +uWv adj apk apk -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -hqb -vsd -cGd -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +euu +yma +rOR +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy aej aeQ agK agu eup -kGS -mxg -rmB +eBy +xJr +vGt vOy wWz uwZ @@ -119190,39 +119180,39 @@ coZ sNz wTM vOy -eWN -jao -rmB -eyI -yfL -sjw -xHD -mRU -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -mRU -jZo -hQK -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm +dyG +pEH +vGt +uai +sbU +fWj +kdX +lYm +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +lYm +dDo +lqL +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv asM asM mwR -gxm +uWv aaa aaa aaa @@ -119242,12 +119232,12 @@ aaa aaa aaa aaa -kyw -eqm -lfx -vvH -bwG -bwG +nnw +hpO +wli +pzi +pAH +pAH nsY wpz oEX @@ -119257,10 +119247,10 @@ xxm qSK ieu nsY -mZc -lfx -neH -deq +aSV +wli +eKE +xnn bdd xXW gVu @@ -119270,10 +119260,10 @@ wmz vbI rec bdg -atH -iEM -atH -ppV +mqu +tvc +mqu +nxg bdd bqZ bgO @@ -119293,10 +119283,10 @@ gAj bgO bqZ bdd -eoy -brq -jnc -brq +eXc +iIQ +uYP +iIQ bdg jLS frb @@ -119319,12 +119309,12 @@ mzV pML ivz nsY -iZd -mgb -xbg -jPx -xQd -lyW +gcu +jbS +cER +fKC +dvD +qbs aaa aaa aaa @@ -119345,7 +119335,7 @@ aaa aaa aaa aaa -gxm +uWv ojH ojH taV @@ -119359,25 +119349,25 @@ ouf aLc wBI hGG -cGd -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY -vVY +rOR +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy +ivy aej aeR agK agu aej -ftb -mqR -djd +upz +gmL +aVw vOy wWz pEJ @@ -119393,25 +119383,25 @@ xQm tfH wTM vOy -ddx -pFf -xZf -eyI -byH -jtU -nvd -mRU -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -qSw -mRU +sTX +xXm +miG +uai +jEm +iTV +ety +lYm +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +wqU +lYm vmJ elv vRR @@ -119425,7 +119415,7 @@ qXS hXX xDe xDe -gxm +uWv aaa aaa aaa @@ -119445,12 +119435,12 @@ aaa aaa aaa aaa -kyw -htg -deq -deq -qCH -cXm +nnw +slx +xnn +xnn +mSc +wgw nsY hUz dbn @@ -119460,10 +119450,10 @@ uRM ipe ehR nsY -xEe -lfx -tdH -igw +sEE +wli +tLD +rMk bdd sgm kEg @@ -119473,10 +119463,10 @@ xgN vgn xgN bdg -fZE -naa -fZE -fZE +owO +kCH +owO +owO bdg bqZ qMR @@ -119496,10 +119486,10 @@ tXb fOk bqZ bdg -oSM -oSM -ter -oSM +npi +npi +vJx +npi bdg vLg loy @@ -119522,12 +119512,12 @@ sZH rjV ivz nsY -qZy -jfS -bUH -ciB -soT -lyW +eCZ +rEF +vDk +woQ +kHx +qbs aaa aaa aaa @@ -119548,7 +119538,7 @@ aaa aaa aaa aaa -gxm +uWv ojH ojH taV @@ -119562,25 +119552,25 @@ ouf sdf cRL hGG -cGd -cGd -cGd +rOR +rOR +rOR ahi -cGd -cGd -cGd -cGd +rOR +rOR +rOR +rOR uux -cGd -cGd +rOR +rOR aej aej agO aid aej -umI -fsu -umI +tCM +nNz +tCM vOy wWz uwZ @@ -119596,25 +119586,25 @@ vfP sNz wTM vOy -umI -fsu -umI -mRU -mRU -veW -mRU -mRU -mRU -mRU +tCM +nNz +tCM +lYm +lYm +yjf +lYm +lYm +lYm +lYm nNX -mRU -mRU -mRU -mRU +lYm +lYm +lYm +lYm ayo -mRU -mRU -mRU +lYm +lYm +lYm cna nzD xDV @@ -119628,7 +119618,7 @@ qXS hXX xDe xDe -gxm +uWv aaa aaa aaa @@ -119648,12 +119638,12 @@ aaa aaa aaa aaa -kyw -lfx -lfx -yih -qCH -spT +nnw +wli +wli +ijw +mSc +hYE nsY nsY nsY @@ -119663,10 +119653,10 @@ nsY nsY nsY nsY -bwG -bwG -bwG -bwG +pAH +pAH +pAH +pAH bdd bdd bdd @@ -119676,10 +119666,10 @@ bdd bdd bdd bdd -tvl -naa -meQ -fZE +cwe +kCH +laC +owO bdg bqZ beH @@ -119699,10 +119689,10 @@ gAj beH bqZ bdg -oSM -awE -ter -gvK +npi +jEv +vJx +raq bdd bdd bdd @@ -119725,12 +119715,12 @@ nsY nsY nsY nsY -ecj -bZf -lZI -faR -wxu -lyW +fXy +leL +kIr +nZp +ffL +qbs aaa aaa aaa @@ -119751,7 +119741,7 @@ aaa aaa aaa aaa -gxm +uWv ojH ojH taV @@ -119776,14 +119766,14 @@ cuN cQW lQa wjE -vuE -bkb -kGS -kGS -pvi -bgh -spW -pjQ +cgj +mcY +eBy +eBy +wvN +hAb +waH +bVW vOy wWz qxP @@ -119799,14 +119789,14 @@ gxP nMe wTM vOy -bgh -spW -pjQ -eJg -bkb -kGS -rRf -pOC +hAb +waH +bVW +bnO +mcY +eBy +jHs +mse qtj fpA qUx @@ -119831,7 +119821,7 @@ qXS hXX xDe xDe -gxm +uWv aaa aaa aaa @@ -119851,38 +119841,38 @@ aaa aaa aaa aaa -kyw -lfx -deq -bwG -bwG -bwG -bwG -bwG -bwG -kUI -bFB -iPt -atH -sCg -hgs -sCg -osX -uCt -sCg -atH -eUf -pwx -eUf -eUf -rIP -eUf -atH -fZE -fZE -naa -meQ -fZE +nnw +wli +xnn +pAH +pAH +pAH +pAH +pAH +pAH +woW +gwW +fCd +mqu +xVi +cqX +xVi +qAc +xYg +xVi +mqu +aCy +oZC +aCy +aCy +rJE +aCy +mqu +owO +owO +kCH +laC +owO bdg bqZ beH @@ -119902,38 +119892,38 @@ beH beH bqZ bdg -oSM -awE -ter -oSM -oSM -brq -mdC -qWK -lyq -lyq -lyq -lyq -brq -eMI -eMI -gjg -bom -kiy -eMI -brq -cSP -cSH -svt -mJO -mJO -mJO -mJO -mJO -mJO -jPx -mgb -lyW +npi +jEv +vJx +npi +npi +iIQ +pWT +lnE +nlt +nlt +nlt +nlt +iIQ +jzu +jzu +gnV +gtT +eUj +jzu +iIQ +xdt +ckO +mZg +rng +rng +rng +rng +rng +rng +fKC +jbS +qbs aaa aaa aaa @@ -119954,17 +119944,17 @@ aaa aaa aaa aaa -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv dho wVt wVt @@ -119979,14 +119969,14 @@ jlc kbv dTn ngE -acQ -acQ -acQ -acQ -xdl -klr -bNT -dOW +oao +oao +oao +oao +nJJ +deW +tje +fqN vOy woh vgO @@ -120002,14 +119992,14 @@ vgO vgO xAe vOy -gTV -mGk -xFW -lrd -kkI -kkI -kkI -kkI +jkp +hlP +eYx +rzC +oSP +oSP +oSP +oSP usL gsC cMz @@ -120024,17 +120014,17 @@ qLg iup ryY cnn -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm -gxm +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv +uWv aaa aaa aaa @@ -120054,38 +120044,38 @@ aaa aaa aaa aaa -kyw -lfx -deq -bwG -ycl -ycl -ycl -jCg -bwG -eNL -pVr -oHs -osQ -tpR -tpR -tpR -tpR -tpR -tpR -osQ -tpR -tpR -tpR -tpR -tpR -tpR -osQ -wxp -tpR -baW -meQ -fZE +nnw +wli +xnn +pAH +pCe +pCe +pCe +vbk +pAH +gSG +kHb +usF +eYd +gKn +gKn +gKn +gKn +gKn +gKn +eYd +gKn +gKn +gKn +gKn +gKn +gKn +eYd +ndb +gKn +iTf +laC +owO bdg bqZ beH @@ -120105,38 +120095,38 @@ beH beH bqZ bdg -oSM -awE -jas -jhA -cVZ -qWx -jhA -jhA -jhA -jhA -jhA -jhA -qWx -jhA -jhA -jhA -jhA -jhA -jhA -qWx -ldW -mkx -eWv -mJO -plv -plv -plv -mbR -mJO -eBG -nhw -lyW +npi +jEv +hWi +grT +rqn +kAC +grT +grT +grT +grT +grT +grT +kAC +grT +grT +grT +grT +grT +grT +kAC +hPF +fed +mNB +rng +kks +kks +kks +xOb +rng +vKU +fLl +qbs aaa aaa aaa @@ -120164,10 +120154,10 @@ aag aag aag aag -vHn -fbe -hoT -rpG +qdy +xEq +oKB +oFg bGa dVn vwC @@ -120182,14 +120172,14 @@ sdv xMO wDg vHA -waV -iGE -kGS -kGS -pjY -gqv -hKJ -nww +myx +mMC +eBy +eBy +wtW +stm +wXf +cBq vOy vOy vOy @@ -120205,14 +120195,14 @@ vOy vOy vOy vOy -xvO -peu -nww -vcO -ssF -kGS -bij -hux +kYs +lZt +cBq +jeN +vsK +eBy +vJd +vMt kfo rCl ePM @@ -120227,10 +120217,10 @@ dbc cNM ofU njk -rXF -jtU -vzB -woU +pmS +iTV +eLq +ckw aag aag aag @@ -120257,38 +120247,38 @@ aaa aaa aaa aaa -kyw -lfx -deq -bwG -ycl -ycl -ycl -ycl -bwG -xgk -oUi -tLZ -atH -xSx -xSx -fBi -tXo -mBa -pYh -atH -wMl -aAU -dkP -dsY -rwj -xZR -atH -fZE -meQ -iEM -meQ -onn +nnw +wli +xnn +pAH +pCe +pCe +pCe +pCe +pAH +iaZ +uIX +xEs +mqu +nyF +nyF +uFK +oXn +cGi +twL +mqu +lPo +cek +bEV +pzR +dvH +oTv +mqu +owO +laC +tvc +laC +sVp bdd bDQ mng @@ -120308,38 +120298,38 @@ vUe kuw cab bdd -tmE -awE -jnc -awE -oSM -brq -gOS -gOS -sLX -bIj -jtZ -eLu -brq -xpl -exc -jCx -mqt -vno -vno -brq -wDG -ihI -fnc -mJO -plv -plv -plv -plv -mJO -jPx -enQ -lyW +alu +jEv +uYP +jEv +npi +iIQ +oFL +oFL +xAv +dKO +lEX +knN +iIQ +jHy +dpP +ihK +gqh +diG +diG +iIQ +vQo +eeH +tJn +rng +kks +kks +kks +kks +rng +fKC +rOD +qbs aaa aaa aaa @@ -120367,73 +120357,73 @@ aag aag aag aag -vHn -ggD -tob -cGd -cGd -cGd -cGd -cGd -cGd -cGd +qdy +gLo +nxJ +rOR +rOR +rOR +rOR +rOR +rOR +rOR hZE sVV oON -cGd -cGd -cva -cGd -cGd +rOR +rOR +leQ +rOR +rOR ael ael agQ aih ael -htF -bNT -jvz -ltt -pPU -pPU -ecz -pPU -pPU -pPU -pPU -pPU -pPU -pPU -ecz -pPU -pPU -ltt -riK -bNT -hmB -mRU -mRU -gBs -mRU -mRU -mRU -gBs -mRU -mRU -mRU +hlW +tje +kTp +sdF +jed +jed +xoX +jed +jed +jed +jed +jed +jed +jed +xoX +jed +jed +sdF +bxQ +tje +kru +lYm +lYm +hdf +lYm +lYm +lYm +hdf +lYm +lYm +lYm mKi sfT hGV -mRU -mRU -mRU -mRU -mRU -mRU -mRU -vpf -tMU -woU +lYm +lYm +lYm +lYm +lYm +lYm +lYm +dhe +enA +ckw aag aag aag @@ -120460,18 +120450,18 @@ aaa aaa aaa aaa -kyw -lfx -deq -bwG -ycl -ycl -ycl -ycl +nnw +wli +xnn +pAH +pCe +pCe +pCe +pCe jUx -fZE -bBR -tup +owO +eWf +vES jeb jeb jeb @@ -120487,11 +120477,11 @@ mWy jeb jeb jeb -fZE -meQ -iEM -meQ -fZE +owO +laC +tvc +laC +owO bdg bqZ udi @@ -120511,11 +120501,11 @@ veu mDW bqZ bdg -oSM -awE -jnc -awE -oSM +npi +jEv +uYP +jEv +npi vra vra vra @@ -120531,18 +120521,18 @@ rJx vra vra vra -uGf -mkx -oSM +ndl +fed +npi vfo -plv -plv -plv -plv -mJO -nEl -bhy -lyW +kks +kks +kks +kks +rng +xIB +xcC +qbs aaa aaa aaa @@ -120570,73 +120560,73 @@ aag aag aag aag -vHn -hgk -hoT -hoT -cGd -vVY -vVY -vVY -tvS -cGd +qdy +dRE +oKB +oKB +rOR +ivy +ivy +ivy +pJa +rOR xVe sVV mbx -cGd -orq -rRb -qjT -kRk +rOR +bJK +tsI +hkF +mEL ael afE agT agT ael -oPT -lOn -acQ -ltt -acQ -gfv -gfv -gfv -acQ -gfv -gfv -gfv -acQ -gfv -gfv -gfv -jRg -ltt -acQ -bNT -oNa -mRU -tih -vpf -tih -mRU -jwM -jtU -jtU -jHX -mRU +nyR +oXo +oao +sdF +oao +uaR +uaR +uaR +oao +uaR +uaR +uaR +oao +uaR +uaR +uaR +eDW +sdF +oao +tje +qXW +lYm +eSp +dhe +eSp +lYm +jnl +iTV +iTV +gOf +lYm aDS sfT hGV -mRU -qSw -qSw -qSw -vMQ -mRU -upS -jtU -jtU -woU +lYm +wqU +wqU +wqU +axT +lYm +pzA +iTV +iTV +ckw aag aag aag @@ -120663,18 +120653,18 @@ aac aaf aaf aaf -kyw -deq -lfx -bwG -ycl -ycl -ycl -ycl -bwG -hiP -meQ -czN +nnw +xnn +wli +pAH +pCe +pCe +pCe +pCe +pAH +hKX +laC +vfc jeb vlX aNx @@ -120690,11 +120680,11 @@ xHp hmF vlX jeb -bMf -meQ -iEM -meQ -fZE +jJF +laC +tvc +laC +owO bdg bqZ udi @@ -120714,11 +120704,11 @@ fIZ mDW bqZ bdg -oSM -awE -jnc -awE -eOx +npi +jEv +uYP +jEv +fcv vra asX chf @@ -120734,18 +120724,18 @@ lpt mgF asX vra -pHh -mkx -hNv -mJO -plv -plv -plv -plv -mJO -nEl -rxe -lyW +vHL +fed +wFk +rng +kks +kks +kks +kks +rng +xIB +nuH +qbs aaf aaf aaf @@ -120773,73 +120763,73 @@ aag aag aag aag -vHn -vHn -tob -tob -cGd -vVY -vVY -vVY -vVY -cGd +qdy +qdy +nxJ +nxJ +rOR +ivy +ivy +ivy +ivy +rOR hHe gxn ioH -cGd -mNS -tob -hvq -pCQ +rOR +wLM +nxJ +vhM +qFp ael afH agV ain ael -bMV -jao -tbF -ltt -dZP -tbF -dZP -eQh -mTo -tCD -tCD -tCD -mTo -wyE -dZP -dKD -dZP -ltt -dKD -bNT -enF -mRU -mRU -jtU -wlB -mRU -bBc -vpf -jtU -bBc -mRU +fxX +pEH +nNN +sdF +tpB +nNN +tpB +vtg +ulD +iAM +iAM +iAM +ulD +iBT +tpB +oYD +tpB +sdF +oYD +tje +yiL +lYm +lYm +iTV +ajq +lYm +yaa +dhe +iTV +yaa +lYm uRY pMA waJ -mRU -qSw -qSw -qSw -qSw -mRU -oNM -vpf -woU -woU +lYm +wqU +wqU +wqU +wqU +lYm +lcL +dhe +ckw +ckw aag aag aag @@ -120866,18 +120856,18 @@ aad aag aag aag -kyw -xkb -dAA -bwG -ycl -ycl -ycl -ycl -bwG -cVf -meQ -jTt +nnw +pDq +uxx +pAH +pCe +pCe +pCe +pCe +pAH +pMh +laC +ePV jeb obE tdE @@ -120893,11 +120883,11 @@ xHp xwl rHf jeb -rrU -meQ -iEM -meQ -fZE +rUq +laC +tvc +laC +owO bdg bqZ ngI @@ -120917,11 +120907,11 @@ xAt nNH bqZ bdg -oSM -awE -jnc -awE -uNp +npi +jEv +uYP +jEv +sGJ vra bMq qUq @@ -120937,18 +120927,18 @@ lpt qYQ ptj vra -opV -mkx -xVY -mJO -plv -plv -plv -plv -mJO -jPx -mgb -lyW +fgO +fed +spN +rng +kks +kks +kks +kks +rng +fKC +jbS +qbs aag aag aag @@ -120977,31 +120967,31 @@ aag aag aag aag -vHn -hoT -hoT -cGd -vVY -vVY -vVY -vVY +qdy +oKB +oKB +rOR +ivy +ivy +ivy +ivy aba aGA kbv fZo -cGd -nnH -hoT -hoT -eJj +rOR +oJX +oKB +oKB +oxo ael afI agY oxi xfm -jux -gIN -jvz +eRX +nmj +kTp mOi mOi mOi @@ -121017,31 +121007,31 @@ aHq aHq aHq aHq -klr -mxg -qGZ -bMi -mRU -jtU -vpf -rXF -jtU -jtU -jtU -vpf -mRU +deW +xJr +dER +jGY +lYm +iTV +dhe +pmS +iTV +iTV +iTV +dhe +lYm mzs aPT xyB ceD -qSw -qSw -qSw -qSw -mRU -isq -vpf -woU +wqU +wqU +wqU +wqU +lYm +qUT +dhe +ckw aag aag aag @@ -121069,18 +121059,18 @@ aad aag aag aag -kyw -deq -qZK -bwG -bwG -bwG -bwG -bwG -bwG -dTd -dTd -div +nnw +xnn +lpH +pAH +pAH +pAH +pAH +pAH +pAH +niz +niz +vbq jeb vlX thA @@ -121096,11 +121086,11 @@ gAA fFD vlX jeb -wEK -meQ -iEM -meQ -fZE +oue +laC +tvc +laC +owO bdg bqZ beH @@ -121120,11 +121110,11 @@ beH beH bqZ bdg -oSM -awE -jnc -awE -dNW +npi +jEv +uYP +jEv +mBa vra asX drj @@ -121140,18 +121130,18 @@ cgo hQc asX vra -crc -goo -hAA -mJO -mJO -mJO -mJO -mJO -mJO -jPx -pgJ -lyW +xWi +tJw +kfa +rng +rng +rng +rng +rng +rng +fKC +rzK +qbs aag aag aag @@ -121180,31 +121170,31 @@ aag aag aag aag -vHn -hoT -tob -cGd -vVY -vVY -vVY -vVY -cGd +qdy +oKB +nxJ +rOR +ivy +ivy +ivy +ivy +rOR mAF ilq pjj -cGd -dkt -tob -hoT -xfW +rOR +dzS +nxJ +oKB +cNn ael afJ agY aiq ajJ -dpS -mxg -iUV +nTU +xJr +bfG mOi rCw rCw @@ -121220,31 +121210,31 @@ dgg xRk bti aHq -rwf -mxg -qGZ -mqd -mRU -jtU -vzB -mRU -bBc -vpf -jtU -vpf -mRU +vsB +xJr +dER +euB +lYm +iTV +eLq +lYm +yaa +dhe +iTV +dhe +lYm gfN efj sxE -mRU -qSw -qSw -qSw -qSw -mRU -vpI -jtU -woU +lYm +wqU +wqU +wqU +wqU +lYm +uCU +iTV +ckw aag aag aag @@ -121272,18 +121262,18 @@ aad aag aag aag -kyw -xwd -lfx -bwG -ycl -ycl -ycl -jCg -bwG -wBw -bZo -vsf +nnw +sMe +wli +pAH +pCe +pCe +pCe +vbk +pAH +tFH +jot +sZN jeb vlX tdE @@ -121299,11 +121289,11 @@ xHp xwl vlX jeb -dQV -meQ -iEM -meQ -onn +idv +laC +tvc +laC +sVp bdd bDQ lnm @@ -121323,11 +121313,11 @@ sCA bVw cab bdd -tmE -awE -jnc -awE -gvK +alu +jEv +uYP +jEv +raq vra asX qUq @@ -121343,18 +121333,18 @@ lpt qYQ asX vra -lDk -dEK -oWN -mJO -plv -plv -plv -mbR -mJO -jPx -mgb -lyW +nQS +qfp +xdv +rng +kks +kks +kks +xOb +rng +fKC +jbS +qbs aag aag aag @@ -121383,31 +121373,31 @@ aag aag aag aag -vHn -tob -xLu -cGd -vVY -vVY -vVY -vVY -cGd +qdy +nxJ +wTe +rOR +ivy +ivy +ivy +ivy +rOR hZE kbv mbx -cGd -gMJ -tob -hoT -xfW +rOR +uUD +nxJ +oKB +cNn ael afK ahc air ael -nBo -mxg -uZI +fUT +xJr +puV mOi wCT sIf @@ -121423,31 +121413,31 @@ oqv iqd rUy cnS -klr -mxg -pSN -mRU -mRU -jtU -oNM -mRU -tih -ycM -jtU -vpf -mRU +deW +xJr +lAg +lYm +lYm +iTV +lcL +lYm +eSp +qsr +iTV +dhe +lYm aDS aPT hGV -mRU -qSw -qSw -qSw -qSw -mRU -jtU -vpf -woU +lYm +wqU +wqU +wqU +wqU +lYm +iTV +dhe +ckw aag aag aag @@ -121475,18 +121465,18 @@ aad aag aag aag -kyw -deq -lfx -bwG -ycl -ycl -ycl -ycl -bwG -tQe -meQ -ktl +nnw +xnn +wli +pAH +pCe +pCe +pCe +pCe +pAH +rgs +laC +aaG jeb obE thA @@ -121502,11 +121492,11 @@ xHp diJ rHf jeb -fZE -meQ -iEM -meQ -fZE +owO +laC +tvc +laC +owO bCx bqZ cNf @@ -121526,11 +121516,11 @@ nuK dVe bqZ bCx -oSM -awE -vOZ -awE -oSM +npi +jEv +fBW +jEv +npi vra bMq drj @@ -121546,18 +121536,18 @@ lpt eBV ptj vra -xzI -mkx -hdV -mJO -plv -plv -plv -plv -mJO -nEl -xbg -lyW +oDd +fed +fGR +rng +kks +kks +kks +kks +rng +xIB +cER +qbs aag aag aag @@ -121586,31 +121576,31 @@ aag aag aag aag -vHn -tob -hUb -cGd -cGd -cGd -cGd -cGd -cGd +qdy +nxJ +ujc +rOR +rOR +rOR +rOR +rOR +rOR laM kbv nkH -cGd -eJZ -rRb -cXd -xew +rOR +cFb +tsI +sYe +eOY ael afL ahe aij ael -acQ -lOn -acQ +oao +oXo +oao mOi kbH kbH @@ -121626,31 +121616,31 @@ wDy aGN dxv cnS -riK -mxg -kGS -rXF -vpf -vpf -aBQ -mRU -mRU -mRU -gBs -mRU -mRU +bxQ +xJr +eBy +pmS +dhe +dhe +tXX +lYm +lYm +lYm +hdf +lYm +lYm oIa aPT bqY -mRU -mRU -mRU -mRU -mRU -mRU -vpf -vpf -woU +lYm +lYm +lYm +lYm +lYm +lYm +dhe +dhe +ckw aag aag aag @@ -121673,23 +121663,23 @@ aKQ aaa aaa aab -kyw -kyw -kyw -kyw -kyw -kyw -deq -iGc -bwG -ycl -ycl -ycl -ycl +nnw +nnw +nnw +nnw +nnw +nnw +xnn +sro +pAH +pCe +pCe +pCe +pCe cmC -fZE -meQ -hvz +owO +laC +vgN jeb vlX tdE @@ -121705,11 +121695,11 @@ xHp xwl vlX jeb -fZE -meQ -cmL -czR -jzT +owO +laC +vLe +jrx +jtH bCy bDS cNf @@ -121729,11 +121719,11 @@ qnC dVe cac bCy -hQf -sTU -xLX -awE -hCf +icd +qsK +rNT +jEv +eVf vra asX qUq @@ -121749,23 +121739,23 @@ lpt qYQ asX vra -wcD -mkx -oSM +ueq +fed +npi cnd -plv -plv -plv -plv -mJO -kLm -xbg -lyW -lyW -lyW -lyW -lyW -lyW +kks +kks +kks +kks +rng +faC +cER +qbs +qbs +qbs +qbs +qbs +qbs aaa aab aaa @@ -121789,31 +121779,31 @@ aag aag aag aag -vHn -tJq -bLf -cGd -vVY -vVY -vVY -tvS -cGd +qdy +wGa +tvm +rOR +ivy +ivy +ivy +pJa +rOR hZE kbv mbx -cGd -cva -cGd -cGd -cGd +rOR +leQ +rOR +rOR +rOR adO adO adO adO adO -frI -lOn -oNa +yjQ +oXo +qXW mOi mOi mOi @@ -121829,31 +121819,31 @@ nTs pje pje cnT -meS -gUk -naj -mRU -mRU -mRU -mRU -mRU -jwM -oZn -jtU -lPW -mRU +mRC +nWf +pfU +lYm +lYm +lYm +lYm +lYm +jnl +wzC +iTV +bDN +lYm aDS aPT hGV -mRU -qSw -qSw -qSw -vMQ -mRU -wUJ -vpf -woU +lYm +wqU +wqU +wqU +axT +lYm +vJq +dhe +ckw aag aag aag @@ -121876,23 +121866,23 @@ aKQ aaa aaa aab -kyw -ety -deq -deq -deq -deq -deq -xJp -bwG -ycl -ycl -ycl -ycl -bwG -lFL -sNL -ygB +nnw +eNf +xnn +xnn +xnn +xnn +xnn +cVZ +pAH +pCe +pCe +pCe +pCe +pAH +mTa +kId +sEJ jeb jeb hfa @@ -121908,11 +121898,11 @@ xWd oSL jeb jeb -fZE -meQ -dAm -fEF -otC +owO +laC +uQE +cDd +ycb bdd bDT tHv @@ -121932,11 +121922,11 @@ iXb pzV cad bdd -vMA -oYi -sIR -awE -oSM +vij +xPU +qay +jEv +npi vra vra eUh @@ -121952,23 +121942,23 @@ mSU wVy vra vra -siy -wIX -aCu -mJO -plv -plv -plv -plv -mJO -nEl -xbg -jPU -mgb -cgU -oqI -iDk -lyW +vtV +jYz +roK +rng +kks +kks +kks +kks +rng +xIB +cER +wuR +jbS +pga +ygb +fkF +qbs aaa aab aaa @@ -121992,31 +121982,31 @@ aag aag aag aag -vHn -hoT -rGz -cGd -vVY -vVY -vVY -vVY -cGd +qdy +oKB +qXe +rOR +ivy +ivy +ivy +ivy +rOR hHe gxn gKd -cGd -hoT -hoT -svV -rIE +rOR +oKB +oKB +far +ssF adO afM fpR ahf adO -dni -jao -acQ +qEw +pEH +oao aqU sdl mLE @@ -122032,31 +122022,31 @@ rsO aGN rbB cnS -dKD -mxg -jvz +oYD +xJr +kTp aUH aXx jKI aXx -mRU -tih -vpf -jtU -vpf -mRU +lYm +eSp +dhe +iTV +dhe +lYm lCL pMA gcm -mRU -qSw -qSw -qSw -qSw -mRU -uNz -jtU -woU +lYm +wqU +wqU +wqU +wqU +lYm +bEW +iTV +ckw aag aag aag @@ -122079,23 +122069,23 @@ aKQ aaa aaa aab -kyw -byt -lfx -lfx -lfx -lfx -txp -veq -bwG -ycl -ycl -ycl -ycl -bwG -bwP -bwP -bwP +nnw +pDZ +wli +wli +wli +wli +dDd +dle +pAH +pCe +pCe +pCe +pCe +pAH +tOp +tOp +tOp jeb tkN qHg @@ -122111,11 +122101,11 @@ gAA cGV tkN jeb -hjQ -meQ -fNd -oUi -qdV +rSI +laC +dYa +uIX +lRL bdd bDU bqZ @@ -122135,11 +122125,11 @@ bqZ bqZ cae bdd -huP -nbu -kcg -awE -oSM +sUA +unm +bJN +jEv +npi vra gNq hXb @@ -122155,23 +122145,23 @@ cgo skF gNq vra -fqA -fqA -fqA -mJO -plv -plv -plv -plv -mJO -rxq -sAS -cXX -sAS -sAS -nHG -xbg -lyW +sde +sde +sde +rng +kks +kks +kks +kks +rng +ncw +lTL +kyH +lTL +lTL +onr +cER +qbs aaa aab aaa @@ -122195,31 +122185,31 @@ aag aag aag aag -vHn -tob -alh -cGd -vVY -vVY -vVY -vVY +qdy +nxJ +sen +rOR +ivy +ivy +ivy +ivy bWh hmj kbv fZo -cGd -ykY -hoT -hoT -tjz +rOR +cWP +oKB +oKB +vyS adO afN ahh aiw ahG -kGS -mxg -acQ +eBy +xJr +oao aqU xbN gfE @@ -122235,31 +122225,31 @@ liJ pTj cnq cnS -klr -jao -acQ +deW +pEH +oao aUH oyE mMP mMP -mRU -jtU -vpf -jtU -vpf -mRU +lYm +iTV +dhe +iTV +dhe +lYm mzs aPT xyB cix -qSw -qSw -qSw -qSw -mRU -bWg -jtU -woU +wqU +wqU +wqU +wqU +lYm +wlQ +iTV +ckw aag aag aag @@ -122282,23 +122272,23 @@ aKQ aaa aaa aab -kyw -deq -lfx -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -txE -bwP -bwP +nnw +xnn +wli +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +gRW +tOp +tOp jeb aMx qHg @@ -122314,11 +122304,11 @@ xHp cGV nBa jeb -atH -atH -dAm -aCX -suH +mqu +mqu +uQE +sEz +unA bdd beQ beQ @@ -122338,11 +122328,11 @@ beQ beQ beQ bdd -oCb -wwv -sIR -brq -brq +uxy +kGz +qay +iIQ +iIQ vra bMu hXb @@ -122358,23 +122348,23 @@ lpt skF pQF vra -fqA -fqA -gzM -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -nEl -mgb -lyW +sde +sde +frT +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +xIB +jbS +qbs aaa aab aaa @@ -122398,31 +122388,31 @@ aag aag aag aag -vHn -btV -hoT -cGd -vVY -vVY -vVY -vVY -cGd +qdy +xeV +oKB +rOR +ivy +ivy +ivy +ivy +rOR mAF ilq pjj -cGd -boU -nNI -hoT -veO +rOR +eKk +jEB +oKB +pqU adO afO ahh aiw adO -mQF -yaR -mQF +sGP +rqa +sGP lmK lmK lmK @@ -122438,31 +122428,31 @@ cnH kzk cnR aHq -mQF -yaR -mQF +sGP +rqa +sGP aUH sIA gSj aXA -mRU -jtU -vpf -jtU -bBc -mRU +lYm +iTV +dhe +iTV +yaa +lYm gfN efj sxE -mRU -qSw -qSw -qSw -qSw -mRU -kUL -tMU -woU +lYm +wqU +wqU +wqU +wqU +lYm +uyb +enA +ckw aag aag aag @@ -122485,23 +122475,23 @@ aKQ aaa aaa aab -kyw -deq -iGc -wDr -mFL -mFL -iFp -wNz -wNz -wNz -oWE -wNz -wNz -suU -bwP -bwP -bwP +nnw +xnn +sro +wdA +jIS +jIS +cvt +jgW +jgW +jgW +pFO +jgW +jgW +syo +tOp +tOp +tOp jeb iow aMO @@ -122517,11 +122507,11 @@ xHp aUi iow jeb -fZE -meQ -rTA -tAW -stR +owO +laC +jgu +ehZ +jjE bCz bDV bGw @@ -122541,18 +122531,18 @@ bGw bGw bGw bCz -oSM -oYi -sIR -awE -dnP +npi +xPU +qay +jEv +lGI vra wTw bNE wDJ ivs nyQ -dXH +ipY vWB bSK nyQ @@ -122561,23 +122551,23 @@ bUi bUT wTw vra -fqA -fqA -fqA -dBg -aqL -aqL -buY -aqL -aqL -aqL -uWm -nRA -nRA -wDr -jPx -wdW -lyW +sde +sde +sde +ltn +dTl +dTl +aEU +dTl +dTl +dTl +hEZ +uqY +uqY +wdA +fKC +lyV +qbs aaa aab aaa @@ -122601,31 +122591,31 @@ aag aag aag aag -vHn -tob -tob -cGd -vVY -vVY -vVY -vVY -cGd +qdy +nxJ +nxJ +rOR +ivy +ivy +ivy +ivy +rOR xXT sVV tkR -cGd -ipr -pUL -tob -eQd +rOR +ulG +lrD +nxJ +kiY adO jkj ahh aiw adO -ebV -mbu -kCo +gEj +xKy +ksH ioU pvK qPE @@ -122641,31 +122631,31 @@ liJ hgB cbn aHq -ebV -qGP -pym +gEj +nhI +aPc aUd ckK iKM aHM -mRU -jtU -vpf -lPW -vwJ -mRU +lYm +iTV +dhe +bDN +dRf +lYm nme sfT vAH -mRU -qSw -qSw -qSw -qSw -mRU -edG -vpf -woU +lYm +wqU +wqU +wqU +wqU +lYm +wQM +dhe +ckw aag aag aag @@ -122688,23 +122678,23 @@ aKQ aaa aaa aab -kyw -lfx -gSH -wDr -mFL -mFL -iFp -wNz -wNz -wNz -wNz -wNz -wNz -suU -bwP -bwP -bwP +nnw +wli +cTc +wdA +jIS +jIS +cvt +jgW +jgW +jgW +jgW +jgW +jgW +syo +tOp +tOp +tOp aLT aLT aLT @@ -122720,11 +122710,11 @@ aQL aQL aQL aQL -dQV -meQ -dAm -fEF -fZE +idv +laC +uQE +cDd +owO bCA bCA bdj @@ -122744,11 +122734,11 @@ bCA bdj bCA bCA -oSM -oYi -sIR -awE -gvK +npi +xPU +qay +jEv +raq bJC bJC bJC @@ -122764,23 +122754,23 @@ bSJ bSJ bSJ bSJ -fqA -fqA -fqA -dBg -aqL -aqL -aqL -aqL -aqL -aqL -uWm -nRA -nRA -wDr -nEl -mgb -lyW +sde +sde +sde +ltn +dTl +dTl +dTl +dTl +dTl +dTl +hEZ +uqY +uqY +wdA +xIB +jbS +qbs aaa aab aaa @@ -122804,31 +122794,31 @@ aag aag aag aag -vHn -hoT -hoT -cGd -cGd -cGd -cGd -cGd -cGd +qdy +oKB +oKB +rOR +rOR +rOR +rOR +rOR +rOR ehL kyr chb -cGd -cGd -cGd -moK -cGd -cGd +rOR +rOR +rOR +jZD +rOR +rOR lFt ahh aiw adO -qHu -hqx -kCo +jEo +wXx +ksH ioU qyZ wTd @@ -122844,31 +122834,31 @@ liJ qmP uoH aHq -kCo -mbu -kCo +ksH +xKy +ksH aUH dbv lII aWc -mRU -gBs -mRU -mRU -mRU -mRU +lYm +hdf +lYm +lYm +lYm +lYm tCx ncG tZg -mRU -mRU -mRU -mRU -mRU -mRU -jtU -jtU -woU +lYm +lYm +lYm +lYm +lYm +lYm +iTV +iTV +ckw aag aag aag @@ -122891,23 +122881,23 @@ aKQ aaa aaa aab -kyw -oif -nRN -wDr -mFL -mFL -iFp -wNz -wNz -wNz -wNz -wNz -wNz -suU -bwP -bwP -bwP +nnw +jtG +ecf +wdA +jIS +jIS +cvt +jgW +jgW +jgW +jgW +jgW +jgW +syo +tOp +tOp +tOp aLT kaB vVb @@ -122923,11 +122913,11 @@ aQL mJP bSn aQL -hEm -kti -eFa -fEF -exQ +fPk +xdN +qor +cDd +pgg bCB bCB bCB @@ -122947,11 +122937,11 @@ bCB bCB bCB bCB -uuI -oYi -mkx -bIW -eMZ +diu +xPU +fed +slr +xvB bJC jSp lAQ @@ -122967,23 +122957,23 @@ bSJ hII iJS bSJ -fqA -fqA -fqA -dBg -aqL -aqL -aqL -aqL -aqL -aqL -uWm -nRA -nRA -wDr -xgS -svF -lyW +sde +sde +sde +ltn +dTl +dTl +dTl +dTl +dTl +dTl +hEZ +uqY +uqY +wdA +buY +jta +qbs aaa aab aaa @@ -123007,31 +122997,31 @@ aag aag aag aag -vHn -hoT -tob -lso -hoT -tob -tob -hqm -rpG +qdy +oKB +nxJ +cgU +oKB +nxJ +nxJ +mvu +oFg cSa aeA sjz -rpG -hqm -tob -tob -hoT -fkK +oFg +mvu +nxJ +nxJ +oKB +cLx aiw ahh aiw nph -kCo -tSY -kCo +ksH +mns +ksH ioU mSz nIG @@ -123047,31 +123037,31 @@ iKf aGN qrv aHq -hBa -gft -kCo +vZF +tbG +ksH aGz ckd mQC aHM -rXF -jtU -jtU -egQ -ycM -rXF +pmS +iTV +iTV +ivG +qsr +pmS wcm lJY guo -rXF -fLi -vpf -uBx -jtU -jtU -vpf -vpf -woU +pmS +uPD +dhe +qHK +iTV +iTV +dhe +dhe +ckw aag aag aag @@ -123094,21 +123084,21 @@ aKQ aaa aaa aab -kyw -vaV -qxJ -wDr -lFw -wWt -wWt -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr +nnw +oBS +qvG +wdA +cFL +rWm +rWm +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA aLT aLT aLT @@ -123126,11 +123116,11 @@ aTw aUj kLk aQL -npw -vzi -eFa -fEF -rbd +rZb +yaW +qor +cDd +huI bdk bdk bgR @@ -123150,11 +123140,11 @@ myJ eKI bdk bdk -cxF -oYi -mkx -fic -kjW +aXa +xPU +fed +lBO +wVz bJC ojF bNG @@ -123171,22 +123161,22 @@ bUU uDW bSJ bSJ -ljv -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -fCg -fCg -geu -wDr -wtk -mgb -lyW +lij +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +nhb +nhb +dzV +wdA +hLq +jbS +qbs aaa aab aaa @@ -123211,30 +123201,30 @@ aag aag aag abh -cGd -cGd -moK -cGd -cGd -cGd -cGd -cGd +rOR +rOR +jZD +rOR +rOR +rOR +rOR +rOR wYa nBK mzS -cGd -cGd -cGd -cGd -tob -cGd +rOR +rOR +rOR +rOR +nxJ +rOR afP ahh aiw nph -kCo -hqx -kCo +ksH +wXx +ksH ioU ioU ioU @@ -123250,30 +123240,30 @@ aGN aGN pSU aHq -qcL -gft -kCo +iKP +tbG +ksH aGz drk mQC mkG -mRU -vpI -mRU -mRU -mRU -mRU +lYm +uCU +lYm +lYm +lYm +lYm nuM uHr xwX -mRU -mRU -mRU -mRU -mRU -gBs -mRU -mRU +lYm +lYm +lYm +lYm +lYm +hdf +lYm +lYm uOi aag aag @@ -123297,10 +123287,10 @@ aKQ aaa aaa aab -kyw -lfx -gUn -wDr +nnw +wli +egM +wdA bdY bdY bdY @@ -123311,7 +123301,7 @@ aaF aaF aaF aaF -wDr +wdA aLT aLT aLT @@ -123330,10 +123320,10 @@ aQL aQL aQL aQL -uBj -eFa -fEF -wMB +hQs +qor +cDd +rkn bdl bdl bdl @@ -123353,10 +123343,10 @@ bdl bdl bdl bdl -opd -oYi -mkx -jwP +fws +xPU +fed +ndT bJC bJC bJC @@ -123374,8 +123364,8 @@ bSJ bSJ bSJ bSJ -ljv -wDr +lij +wdA anm anm anm @@ -123386,10 +123376,10 @@ anm pfp pfp pfp -wDr -nEl -xbg -lyW +wdA +xIB +cER +qbs aaa aab aaa @@ -123428,16 +123418,16 @@ aeA bbe aeA aeA -cGd -tob -cGd +rOR +nxJ +rOR afQ aiw aiw nph -kCo -hqx -kCo +ksH +wXx +ksH ioU lPO vJg @@ -123453,16 +123443,16 @@ eEo aGN rub aHq -gar -gft -kCo +tSm +tbG +ksH aGz eqB obC hcf -mRU -cpQ -mRU +lYm +dlt +lYm lJY lJY lFK @@ -123500,10 +123490,10 @@ aKQ aaa aaa aab -kyw -oxn -oxn -wDr +nnw +nsh +nsh +wdA bdY bdY bdY @@ -123514,7 +123504,7 @@ aaF aaF aaF aaF -wDr +wdA aLT aLT bbY @@ -123533,17 +123523,17 @@ brn aRT buM aQL -fZE -eFa -fEF -wMB +owO +qor +cDd +rkn bdl bEr bEs bIs bdm rbY -eAG +gwD bOK bPD bYa @@ -123556,10 +123546,10 @@ bYu nmK caf bdl -oDU -oYi -mkx -oSM +eII +xPU +fed +npi bJC cdT cfo @@ -123577,8 +123567,8 @@ clI clg clW bSJ -ljv -wDr +lij +wdA anm anm anm @@ -123589,10 +123579,10 @@ anm pfp pfp pfp -wDr -cZI -xGT -lyW +wdA +xzx +mSm +qbs aaa aab aaa @@ -123631,16 +123621,16 @@ asA amF kmE aeA -cGd -iTQ -cGd +rOR +rLQ +rOR ahJ ahJ ahJ adO -kCo -tSY -kCo +ksH +mns +ksH ioU dnS viN @@ -123656,16 +123646,16 @@ aRi aGN qrv aHq -oUO -gft -kCo +aWC +tbG +ksH aUH aGz aGz aGz -mRU -vzB -mRU +lYm +eLq +lYm lJY qbx dcp @@ -123703,10 +123693,10 @@ aKQ aaa aaa aab -emA -vIg -vIg -wDr +kHq +fhT +fhT +wdA bdY bdY bdY @@ -123717,7 +123707,7 @@ aaF aaF aaF aaF -wDr +wdA aLT aLT bca @@ -123736,10 +123726,10 @@ aQL aUY buN aQL -fZE -eFa -fEF -wMB +owO +qor +cDd +rkn bdl bDX bCA @@ -123759,10 +123749,10 @@ rIH tUh cag bdl -jDz -oYi -mkx -oSM +lYT +xPU +fed +npi bJC cdU bMy @@ -123780,8 +123770,8 @@ bSJ bVo clX bSJ -ljv -wDr +lij +wdA anm anm anm @@ -123792,10 +123782,10 @@ anm pfp pfp pfp -wDr -cOo -rJf -tcO +wdA +hgR +kzd +nhJ aaa aab aaa @@ -123834,16 +123824,16 @@ aeC vOh gUX ily -cGd -moK -cGd -fiH -fiH -fiH -ybk -kCo -tSY -kCo +rOR +jZD +rOR +xJV +xJV +xJV +oaI +ksH +mns +ksH ioU pPM qKz @@ -123859,16 +123849,16 @@ xNv iLO bUa aHq -qHu -mbu -kCo -ybk -fiH -fiH -fiH -mRU -gBs -mRU +jEo +xKy +ksH +oaI +xJV +xJV +xJV +lYm +hdf +lYm cBb xVS lJY @@ -123906,21 +123896,21 @@ aKQ aaa aaa aab -emA -gPS -gPS -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr +kHq +uBE +uBE +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA aLT aLT aLT @@ -123939,10 +123929,10 @@ aQL aQL aQL aQL -dQV -eFa -fEF -fNH +idv +qor +cDd +ghy bdl bDY bCA @@ -123962,10 +123952,10 @@ jac bCA cah bdl -wPi -oYi -mkx -gvK +oKF +xPU +fed +raq bJC bJC bJC @@ -123983,22 +123973,22 @@ bSJ bSJ bSJ bSJ -ljv -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -wDr -nGM -hIp -tcO +lij +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +wdA +drQ +pGD +nhJ aaa aab aaa @@ -124037,16 +124027,16 @@ aeC aeC ajs aeC -bZq -fiH -rGc -xjI -xjI -fzm -pBg -gmZ -dpN -txd +oaE +xJV +rnP +sXG +sXG +enK +uRe +pMz +slv +mdH alL alL alL @@ -124062,16 +124052,16 @@ jvY alL alL alL -gmZ -onh -wJd -pBg -iOP -xjI -xjI -roY -vXk -jgS +pMz +iaI +ino +uRe +xdr +sXG +sXG +tze +pcK +xLC vcE kUV vcE @@ -124109,22 +124099,22 @@ aKQ aaa aaa aab -emA -jEM -ikT -owU -iTq -ikT -jEM -kjY -riB -fGi -qan -jkN -jUh -tIF -bCk -jkN +kHq +aYf +hsf +lpj +iED +hsf +aYf +iJU +gBP +kSA +twO +pkv +glm +qXm +sNC +pkv aLT bco aMB @@ -124142,10 +124132,10 @@ brr aUZ buO aQL -fZE -eFa -fEF -tLZ +owO +qor +cDd +xEs bdl bDZ bdj @@ -124165,10 +124155,10 @@ jac xxa cai bdl -tkg -oYi -mkx -oSM +cNI +xPU +fed +npi bJC cdV bMx @@ -124186,22 +124176,22 @@ clJ bVn clY bSJ -ljv -dnZ -eHy -eHy -eHy -cyp -oaO -lWY -ljv -jiM -ere -lYg -lYg -sEu -lia -tcO +lij +vCB +oKi +oKi +oKi +tfj +qLO +vRW +lij +xtU +doX +fmZ +fmZ +bYd +fJA +nhJ aaa aab aaa @@ -124240,16 +124230,16 @@ wXh aeC ydz ayb -rrG -gBZ -tGW -rfQ -rfQ -tGW -oOi -szb -rfQ -vnZ +eQP +wQZ +hOb +muc +muc +hOb +opN +fZy +muc +xCQ jvY jvY jvY @@ -124265,16 +124255,16 @@ jvY jvY jvY jvY -urs -eEF -wmH -oOi -rrG -rfQ -rfQ -rrG -sBK -tGW +rro +kuZ +tAH +opN +eQP +muc +muc +eQP +iUU +hOb sSl kkx vcE @@ -124312,22 +124302,22 @@ aKQ aaa aaa aab -emA -kJZ -kjY -fGB -snN -jEM -ikT -jEM -lty -eTD -lty -jEM -ikT -kjY -bCk -heO +kHq +aXd +iJU +kFi +eTJ +aYf +hsf +aYf +gYL +aEE +gYL +aYf +hsf +iJU +sNC +lPP aLT bco bdr @@ -124345,17 +124335,17 @@ brr aRT buO aQL -fZE -eFa -fEF -xpc +owO +qor +cDd +oPG bdl lOr lOr iwI bdl bdl -reH +bEt bNP bmD bNP @@ -124368,10 +124358,10 @@ bYv tiE tiE bdl -fJt -oYi -mkx -oSM +poj +xPU +fed +npi bJC cdV cfo @@ -124389,22 +124379,22 @@ clJ clg clY bSJ -ljv -eaz -lYg -lYg -aqH -oxl -wac -mjy -ljv -ien -xhO -xhO -xhO -cmN -srl -tcO +lij +vHZ +fmZ +fmZ +eyp +moT +dwn +lCT +lij +fNY +aCr +aCr +aCr +ofP +eQa +nhJ aaa aab aaa @@ -124443,16 +124433,16 @@ ngl aeA ajk aeA -iOP -fiH -dwJ -vXk -vXk -jgS -pBg -vkQ -brm -aOw +xdr +xJV +gnT +pcK +pcK +xLC +uRe +sUH +kCG +obc jvY arg atf @@ -124468,16 +124458,16 @@ jvY aMm aOq jvY -biB -uvq -cVT -pBg -bZq -vXk -vXk -siS -aRr -fzm +oZz +rFO +qAa +uRe +oaE +pcK +pcK +tmS +nsk +enK lJY xVS lJY @@ -124515,22 +124505,22 @@ aKQ aaa aaa aab -emA -emA -emA -emA -emA -sEg -ikT -jEM -ahL -bFl -nZW -jEM -ikT -jEM -jEM -bCk +kHq +kHq +kHq +kHq +kHq +pMI +hsf +aYf +nmq +gEM +sRk +aYf +hsf +aYf +aYf +sNC aLT bcZ bdr @@ -124548,16 +124538,16 @@ brs aRT bew aQL -atH -dAm -aCX -atH +mqu +uQE +sEz +mqu mCo iwZ -jFy +lBF bKA -mPK -dmF +sbM +pWA pXV bNP bmD @@ -124571,10 +124561,10 @@ eHa cmo xAB mCo -brq -wwv -sIR -brq +iIQ +kGz +qay +iIQ bJC bKX cfo @@ -124592,22 +124582,22 @@ clK clg bVy bSJ -ljv -ljv -ljv -ljv -tWl -jer -ljv -ljv -ljv -jEA -hCq -tcO -tcO -tcO -tcO -tcO +lij +lij +lij +lij +eYC +crr +lij +lij +lij +myA +lkg +nhJ +nhJ +nhJ +nhJ +nhJ aaa aab aaa @@ -124646,16 +124636,16 @@ nqV aeA ajk ily -taw -mRI -taw -qnf -fiH -wPm -ybk -mQF -mQF -nbW +mBf +rFS +mBf +jpz +xJV +syf +oaI +sGP +sGP +mCS jvY arh atm @@ -124671,16 +124661,16 @@ jvY nSG aOs jvY -mQF -pZq -mQF -ybk -dJF -fiH -dAr -kNq -cWo -kNq +sGP +pGQ +sGP +oaI +fka +xJV +hws +fcW +kAO +fcW cBb xVS lJY @@ -124722,18 +124712,18 @@ aaa aaa aaa aaa -emA -tcm -ikT -jEM -uzv -tYr -uzv -jEM -ikT -hYf -jEM -ikT +kHq +ozP +hsf +aYf +kAN +cSi +kAN +aYf +hsf +gHm +aYf +hsf aLT bco bdr @@ -124751,10 +124741,10 @@ brr aRT buO aQL -jpW -eFa -svw -mzv +jAu +qor +srA +kcR bmv bEg bGU @@ -124774,10 +124764,10 @@ bYw nDM bWL sSa -bRo -dOG -gKw -tgz +enc +cmi +pKd +xpG bJC cdV cfo @@ -124795,18 +124785,18 @@ clJ clg clY bSJ -bXh -lYg -lYg -lYg -sEu -eaz -ere -lYg -lYg -sEu -gEh -tcO +jQK +fmZ +fmZ +fmZ +bYd +vHZ +doX +fmZ +fmZ +bYd +gbz +nhJ aaa aaa aaa @@ -124849,16 +124839,16 @@ wXh aeC ajs qon -taw -obJ +mBf +nUS aep ggQ ggQ aME aep -ivV -jnx -iPK +dRm +leC +xJv jvY ari aoP @@ -124874,16 +124864,16 @@ axo atm aOr jvY -ivV -otE -ivV +dRm +gIe +dRm aep aME ggQ aME aep -hog -kNq +eWV +fcW dHe kUV vcE @@ -124925,18 +124915,18 @@ aaa aaa aaa aaa -emA -hyb -fGB -kjY -yia -ugZ -kcG -fBo -ikT -jEM -jEM -ikT +kHq +enq +kFi +iJU +lSH +bJr +gQz +aRm +hsf +aYf +aYf +hsf aLT bco aMC @@ -124954,10 +124944,10 @@ brr aUY buO aQL -fZE -eFa -fEF -tLZ +owO +qor +cDd +xEs mCo bEh bNQ @@ -124977,10 +124967,10 @@ bKA cXR cal mCo -wcD -oYi -mkx -oSM +ueq +xPU +fed +npi bJC cdV bMy @@ -124998,18 +124988,18 @@ clJ bVo clY bSJ -tgm -xhO -xhO -xhO -xhO -gEh -sOD -gEh -xhO -xhO -tWp -tcO +dOr +aCr +aCr +aCr +aCr +gbz +tNy +gbz +aCr +aCr +nxM +nhJ aaa aaa aaa @@ -125052,16 +125042,16 @@ aeC aeC ajs aeC -taw -oxy +mBf +nHf aep afj afk agM aep -pEd -tbD -fDk +qRq +kTn +jEt jvY arj atm @@ -125077,16 +125067,16 @@ bzD atm aOs jvY -pEd -hqx -xhi +qRq +wXx +usl aep aHS afk sHo aep -vmu -kNq +waa +fcW vcE kUV vcE @@ -125128,18 +125118,18 @@ aaa aaa aaa aaa -emA -emA -emA -emA -emA -emA -emA -emA -emA -emA -iTq -snN +kHq +kHq +kHq +kHq +kHq +kHq +kHq +kHq +kHq +kHq +iED +eTJ aLT aLT aLT @@ -125157,10 +125147,10 @@ aQL aQL aQL aQL -fZE -eFa -fEF -bNr +owO +qor +cDd +gQd bdl bEi bZr @@ -125180,10 +125170,10 @@ bKA cir bdl bdl -sXC -oYi -mkx -oSM +kag +xPU +fed +npi bJC bJC bJC @@ -125201,18 +125191,18 @@ bSJ bSJ bSJ bSJ -cZp -xhO -tcO -tcO -tcO -tcO -tcO -tcO -tcO -tcO -tcO -tcO +oeY +aCr +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ aaa aaa aaa @@ -125255,16 +125245,16 @@ aeC aeA ajk aeA -taw -oxy +mBf +nHf aep afk afk afk aep -pEd -tbD -fDk +qRq +kTn +jEt jvY ark atm @@ -125280,16 +125270,16 @@ axo atm thv jvY -pEd -hqx -xhi +qRq +wXx +usl aep afk aHl afk aep -hLt -kNq +tWL +fcW lJY itR kKR @@ -125340,9 +125330,9 @@ aaa aaa aaa aaa -emA -ikT -jEM +kHq +hsf +aYf aLT bcE aMB @@ -125360,10 +125350,10 @@ brt aUZ buS aQL -fZE -eFa -fEF -tLZ +owO +qor +cDd +xEs bdl brp bZr @@ -125382,11 +125372,11 @@ bNQ bNQ bNQ bGz -egD -oQn -oYi -mkx -oSM +mUE +rCP +xPU +fed +npi bJC cdX bMx @@ -125404,9 +125394,9 @@ clL bVn clZ bSJ -tgm -xhO -tcO +dOr +aCr +nhJ aaa aaa aaa @@ -125458,16 +125448,16 @@ asA amF ohL aeA -taw -oQL +mBf +sJo aep aep aep aep aep -pvE -tbD -fDk +qsj +kTn +jEt jvY alL atk @@ -125483,16 +125473,16 @@ jvY aAy alL jvY -pEd -hqx -xhi +qRq +wXx +usl aep aep aep aep aep -ddF -kNq +vKo +fcW lJY ucw dcp @@ -125543,9 +125533,9 @@ aaa aaa aaa aaa -emA -qGC -jEM +kHq +bhe +aYf aLT bcE bdr @@ -125563,10 +125553,10 @@ brt bpC buS aQL -bMf -eFa -fEF -tLZ +jJF +qor +cDd +xEs bdl bEl wup @@ -125585,11 +125575,11 @@ krN krN krN oqY -lde -oSM -oYi -mkx -oSM +wqQ +npi +xPU +fed +npi bJC cdX cfo @@ -125607,9 +125597,9 @@ clL clg clZ bSJ -xMm -pFr -tcO +iLH +tRd +nhJ aaa aaa aaa @@ -125661,16 +125651,16 @@ ntI aeA aeC puO -taw -oxy -eRG +mBf +nHf +nXv aep aep aep aep -pEd -tbD -fDk +qRq +kTn +jEt jvY arl atm @@ -125686,16 +125676,16 @@ alL aMo aOt jvY -pEd -hqx -jhm +qRq +wXx +cGk oIB jgr gGp dMf oIB -vmu -kNq +waa +fcW lJY uxC lJY @@ -125746,9 +125736,9 @@ aaa aaa aaa aaa -emA -ikT -jEM +kHq +hsf +aYf aLT abS bdr @@ -125766,10 +125756,10 @@ brs bpC abT aQL -atH -dAm -aCX -atH +mqu +uQE +sEz +mqu bdl buz bZr @@ -125788,11 +125778,11 @@ ibc uly bNN vbR -eGq -uuI -wwv -sIR -brq +qZh +diu +kGz +qay +iIQ bJC ack cfo @@ -125810,9 +125800,9 @@ clK clg acp bSJ -qKK -gEh -tcO +mAO +gbz +nhJ aaa aaa aaa @@ -125858,22 +125848,22 @@ atr aeC atr aeC -taw -taw -taw -taw -mRI -taw -taw -oxy -hja -taw -taw -taw -taw -pEd -tbD -fDk +mBf +mBf +mBf +mBf +rFS +mBf +mBf +nHf +iIt +mBf +mBf +mBf +mBf +qRq +kTn +jEt jvY abF atm @@ -125889,22 +125879,22 @@ aIT atm aVF jvY -pEd -wZp -amc +qRq +sWn +lTY oIB fXE kaS aiQ oIB -vmu -kNq -kNq -kNq -kNq -qDB -kNq -kNq +waa +fcW +fcW +fcW +fcW +nVz +fcW +fcW vcE bXe vcE @@ -125949,9 +125939,9 @@ aaa aaa aaa aaa -emA -jEM -ikT +kHq +aYf +hsf aLT bcE aMC @@ -125969,10 +125959,10 @@ brt aUY buS aQL -fZE -eFa -fEF -hvz +owO +qor +cDd +vgN bdl bEm bZr @@ -125992,10 +125982,10 @@ uys uys uys uys -bfd -oYi -mkx -oSM +sbV +xPU +fed +npi bJC cdX bMy @@ -126013,9 +126003,9 @@ clL bVo clZ bSJ -hTU -lNk -tcO +cBR +uIF +nhJ aaa aaa aaa @@ -126061,22 +126051,22 @@ atr aeC atr aeC -taw -hEj -cvi -taw -wFX -taw -ncV -oxy -oQL -taw -oQL -oQL -taw -pqv -gqf -fDk +mBf +eHJ +lhS +mBf +mFa +mBf +jYh +nHf +sJo +mBf +sJo +sJo +mBf +ead +qTd +jEt jvY jvY jvY @@ -126092,22 +126082,22 @@ jvY jvY jvY jvY -xeq -hqx -xhi +uhv +wXx +usl oIB wqr bZw xUV oIB -vmu -vDR -kNq -toD -wDq -aPO -sNP -kNq +waa +nUs +fcW +glz +jbl +gGX +bWm +fcW vcE bXe vcE @@ -126152,9 +126142,9 @@ aaa aaa aaa aaa -emA -rIV -dYc +kHq +kin +omi aLT aLT aLT @@ -126172,10 +126162,10 @@ aQL aQL aQL aQL -edn -qRd -gtH -edn +jpy +hUh +urv +jpy bdl bpT bNN @@ -126195,10 +126185,10 @@ dyx eYr bUo uys -kKB -rsL -jts -kKB +qob +rWV +lFZ +qob bJC bJC bJC @@ -126216,9 +126206,9 @@ bSJ bSJ bSJ bSJ -xsv -gEh -tcO +sFO +gbz +nhJ aaa aaa aaa @@ -126264,22 +126254,22 @@ atu azU aeC ldl -taw -oxy -stA -taw -tvA -taw -oTc -nwT -ocI -mfH -nwT -nwT -mfH -pym -gqf -fDk +mBf +nHf +euw +mBf +llF +mBf +pBE +rDk +tcP +nVY +rDk +rDk +nVY +aPc +qTd +jEt alL urM dBG @@ -126295,22 +126285,22 @@ jvY wjv fDG alL -pEd -wZp -pym -qgK +qRq +sWn +aPc +uHZ tEB uBM dXo oIB -xPu -uOE -kNq -swG -jei -aPO -hIX -kNq +ePc +wKe +fcW +wCF +pNu +gGX +ddC +fcW vcE pxJ swM @@ -126355,9 +126345,9 @@ aaa aaa aaa aaa -emA -jEM -kDd +kHq +aYf +dJF aLT bdJ bds @@ -126375,20 +126365,20 @@ aQL bsS mqK aQL -bqc -tcS -mww -sZe +ivi +fEb +gZO +hQo bdl bEp bCA -wlh -cvb -bmC -nwG -lDL -nwG -lMw +iPy +qvd +nAC +hcx +oxt +hcx +lSF jeO nQv ltb @@ -126398,10 +126388,10 @@ dyx hGN pVx uys -wKm -ekM -aVM -wVm +umb +jPA +uTc +hkI bJC cfp cgu @@ -126419,9 +126409,9 @@ bSJ clM clS bSJ -cZp -gEh -tcO +oeY +gbz +nhJ aaa aaa aaa @@ -126461,28 +126451,28 @@ aaa aad aag aag -fTl -taw -taw -taw -mRI -taw -taw -wpT -stA -taw -wTn -taw -nQw -oxy -wjP -taw -oQL -oQL -taw -gbR -tbD -chC +sTT +mBf +mBf +mBf +rFS +mBf +mBf +fWP +euw +mBf +lOa +mBf +iao +nHf +sEC +mBf +sJo +sJo +mBf +dSI +kTn +rBd aqe amw anO @@ -126498,28 +126488,28 @@ arq anO qaV kwd -urs -hqx -tFQ +rro +wXx +fZY oIB wKF hzb ltU oIB -aPO -eDk -kNq -bCR -jei -aPO -fJp -kNq -kNq -kNq -kNq -qDB -kNq -fVe +gGX +xsj +fcW +maG +pNu +gGX +cvp +fcW +fcW +fcW +fcW +nVz +fcW +bMH aag aag afm @@ -126558,9 +126548,9 @@ aaa aaa aaa aaa -emA -jEM -ikT +kHq +aYf +hsf aLT beT bdr @@ -126578,20 +126568,20 @@ ihY bpC dnE aQL -qfI -dpA -ggo -lhs +lRo +xaV +hEE +uLs bdl ycp ycp -tPj +qmb ycp ycp bdl bdl -rtj -agv +vna +vuw bdl bdl bdl @@ -126601,10 +126591,10 @@ uys uys uys uys -gyw -bFX -gyw -hza +kIR +pVF +kIR +bQr bJC bMA cfo @@ -126622,9 +126612,9 @@ clG clg bVq bSJ -ien -dFL -tcO +fNY +fcx +nhJ aaa aaa aaa @@ -126664,28 +126654,28 @@ aaa aaa aad aag -fTl -vrZ -qlu -taw -wTn -kCu -taw -uPN -stA -taw -wFX -taw -lsh -oxy -hja -taw -oQL -hja -taw -bwN -gxR -lCc +sTT +bic +bZu +mBf +lOa +ihI +mBf +oBM +euw +mBf +mFa +mBf +sMC +nHf +iIt +mBf +sJo +iIt +mBf +aXU +cqB +hBS aqg arr atn @@ -126701,28 +126691,28 @@ atn atn aOB aRj -dZR -kWc -cwL +gAL +wmY +rdX oIB phj vEf cNK oIB -aPO -jei -oYr -aPO -aPO -aPO -jei -jei -lYt -jei -jei -aPO -jei -fVe +gGX +pNu +caZ +gGX +gGX +gGX +pNu +pNu +vtZ +pNu +pNu +gGX +pNu +bMH aag ajZ aaa @@ -126761,9 +126751,9 @@ aaa aaa aaa aaa -emA -sEg -ikT +kHq +pMI +hsf aLT aLT aLT @@ -126781,20 +126771,20 @@ aQL aQL aQL aQL -oxe -tcS -mww -sZe +tcq +fEb +gZO +hQo bdl fKT bGy -kOW -snM -iqo +fUL +aZJ +fMK bdl -clV -crD -kLP +rGZ +tLA +lVK gvU cyo bdl @@ -126804,10 +126794,10 @@ sgc xCa bUy bdl -eTx -ekM -cJs -pOW +pgq +jPA +wCN +rPl bJC bJC bJC @@ -126825,9 +126815,9 @@ bSJ bSJ bSJ bSJ -cZp -xhO -tcO +oeY +aCr +nhJ aaa aaa aaa @@ -126867,28 +126857,28 @@ aaa aaa aad aag -fTl -hjT -rWb -taw -oAK -kCu -taw -mRI -taw -taw -tvA -taw -oQL -oxy -oQL -taw -cap -fiN -taw -vkQ -kzR -mXP +sTT +khz +cPy +mBf +kFM +ihI +mBf +rFS +mBf +mBf +llF +mBf +sJo +nHf +sJo +mBf +rsr +uUa +mBf +sUH +klf +dLb kwd amA atq @@ -126904,28 +126894,28 @@ atq atq aoT kwd -vkQ -kzR -oig +sUH +klf +vvH oIB opI dha pxj oIB -aPO -oUx -kNq -fPF -jei -nNT -jwJ -mgX -nZG -nZG -nZG -xGm -jei -fVe +gGX +gRt +fcW +tpQ +pNu +fFN +aYN +uhn +iWD +iWD +iWD +mVY +pNu +bMH aag ajZ aaa @@ -126964,9 +126954,9 @@ aaa aaa aaa aaa -emA -jEM -ikT +kHq +aYf +hsf aLT beT bdr @@ -126984,10 +126974,10 @@ mUx bpC dnE aQL -bqc -tcS -mww -sZe +ivi +fEb +gZO +hQo bdl fgm bdj @@ -127007,10 +126997,10 @@ fYZ vYC noj hpS -gyE -ekM -cJs -pOW +sUk +jPA +wCN +rPl bJC bMA cfo @@ -127028,9 +127018,9 @@ clH oFV bVq bSJ -vUJ -hCq -tcO +vEv +lkg +nhJ aaa aaa aaa @@ -127070,28 +127060,28 @@ aaa aaa aad aag -fTl -qlu -uKl -kiR -oxy -oQL -jsu -oQL -gqt -oxy -oxy -kiR -oxy -oxy -oQL -taw -taw -taw -taw -mQF -rnO -ogd +sTT +bZu +ace +vMv +nHf +sJo +lGV +sJo +iAo +nHf +nHf +vMv +nHf +nHf +sJo +mBf +mBf +mBf +mBf +sGP +mju +yeb alO ars amx @@ -127107,9 +127097,9 @@ amx amx aOC alO -mQF -rnO -mQF +sGP +mju +sGP loP loP loP @@ -127118,17 +127108,17 @@ loP qej loP loP -kNq -fJp -aPO -wXl -dJe -unQ -nxe -tjH -tVn -oUx -fVe +fcW +cvp +gGX +ekz +cBE +crG +xdT +qeO +uAx +gRt +bMH aag ajZ aaa @@ -127167,9 +127157,9 @@ aaa aaa aaa aaa -emA -ikT -jEM +kHq +hsf +aYf aLT beU bdv @@ -127187,13 +127177,13 @@ aQL bsW xvX aQL -bqc -noI -dJG -sZe +ivi +jFn +xkM +hQo bdl ntd -hgO +iVj eqb mLR hdE @@ -127210,10 +127200,10 @@ scH nzO kxL hpS -gyE -nzt -jhs -pOW +sUk +mgN +lLe +rPl bJC cfq cgv @@ -127231,9 +127221,9 @@ bSJ clN clT bSJ -xsv -gEh -tcO +sFO +gbz +nhJ aaa aaa aaa @@ -127273,28 +127263,28 @@ aaa aaa aad aag -fTl -wIu -wXJ -taw -oxy -kMa -qIa -iSB -oxy -oQL -hdy -taw -oQL -oxy -oQL -taw -liF -wPR -taw -cui -fQU -onh +sTT +glC +oCV +mBf +nHf +hYj +mtj +oPS +nHf +sJo +hoC +mBf +sJo +nHf +sJo +mBf +lLx +aoZ +mBf +byZ +iSu +iaI inw amA amx @@ -127310,9 +127300,9 @@ atq amx aoT inw -ivV -fQU -hPr +dRm +iSu +jhJ loP iwB tOC @@ -127321,17 +127311,17 @@ vqL xBY qwo loP -ang -hqu -aPO -wXl -fJp -iCD -iCD -iCD -tVn -jei -fVe +qrS +jzp +gGX +ekz +cvp +nLT +nLT +nLT +uAx +pNu +bMH aag ajZ aaa @@ -127370,9 +127360,9 @@ aaa aaa aaa aaa -emA -qGC -jEM +kHq +bhe +aYf aLT aLT aLT @@ -127390,10 +127380,10 @@ aQL aQL aQL aQL -bqc -ubQ -fpM -bEk +ivi +llQ +tMu +iPL bdl tFS bdj @@ -127413,10 +127403,10 @@ jaR mJa wWP rsK -cBC -feo -ekM -pOW +wOb +iZq +jPA +rPl bJC bJC bJC @@ -127434,9 +127424,9 @@ bSJ bSJ bSJ bSJ -goM -tfQ -tcO +kTt +toh +nhJ aaa aaa aaa @@ -127476,28 +127466,28 @@ aaf aaf aag aag -fTl -taw -taw -taw -wTn -wOv -tuJ -iKV -oxy -oQL -oFr -taw -mUL -oxy -oQL -taw -oQL -oQL -taw -pEd -gBg -bLg +sTT +mBf +mBf +mBf +lOa +wNN +vts +lVv +nHf +sJo +ftE +mBf +kWc +nHf +sJo +mBf +sJo +sJo +mBf +qRq +psT +wYI aqj arw anP @@ -127513,9 +127503,9 @@ atq atq wwJ inw -pEd -tbD -xhi +qRq +kTn +usl loP joG sDu @@ -127524,17 +127514,17 @@ wSn xBY lKa loP -fvo -jei -aPO -wXl -kNq -jcE -jei -lVR -pHD -dhp -fVe +yhx +pNu +gGX +ekz +fcW +qyu +pNu +fXG +xft +riw +bMH aag aag aaf @@ -127569,13 +127559,13 @@ aaa aaa aaa aaa -emA -emA -emA -emA -emA -ikT -ikT +kHq +kHq +kHq +kHq +kHq +hsf +hsf aLT vZb tnY @@ -127593,10 +127583,10 @@ aUZ uqA bES kcl -bqc -ubQ -uPX -rHr +ivi +llQ +lLs +rwk bdl wIr aQy @@ -127616,10 +127606,10 @@ nPT bdl bdl bdl -jLg -uEO -ekM -pOW +iCf +gMC +jPA +rPl hNw wos bMC @@ -127637,13 +127627,13 @@ hcI hcI vPK bSJ -cZp -gEh -tcO -tcO -tcO -tcO -tcO +oeY +gbz +nhJ +nhJ +nhJ +nhJ +nhJ aaa aaa aaa @@ -127679,28 +127669,28 @@ aag aag aag aag -fTl -hEr -oQL -kiR -oxy -wOv -qlu -qAG -oxy -kMa -gQu -taw -lsh -oxy -wjP -taw -oQL -oQL -taw -rhX -gBg -fDk +sTT +siP +sJo +vMv +nHf +wNN +bZu +hBR +nHf +hYj +sGD +mBf +sMC +nHf +sEC +mBf +sJo +sJo +mBf +dxH +psT +jEt inw qHM emn @@ -127716,9 +127706,9 @@ amx amx aBs inw -pEd -tbD -xhi +qRq +kTn +usl loP kxo wSn @@ -127727,17 +127717,17 @@ kdi xBY kxo loP -nSk -jei -aPO -wXl -kNq -cke -hqu -oSR -fZI -jei -fVe +pwJ +pNu +gGX +ekz +fcW +wsw +jzp +cua +qJr +pNu +bMH aag aag aag @@ -127772,13 +127762,13 @@ aaa aaa aaa aaa -emA -hyb -kjY -kcG -tIF -jEM -ikT +kHq +enq +iJU +gQz +qXm +aYf +hsf aWT aMH beV @@ -127796,9 +127786,9 @@ aSE aVf bES kcl -bqc -sUk -slo +ivi +nIL +ruC bdl bdl bdl @@ -127808,21 +127798,21 @@ bdl bdl bdl bdl -xWo +voU bdl bdl bdl bdl -reN -dEp -reN -htk -dEp +fqh +qtO +fqh +qgM +qtO bdl bdl -udf -iyC -pOW +idg +nQb +rPl hNw sZq jZv @@ -127840,13 +127830,13 @@ aMI wGE erG ewO -sEu -xhO -ffx -jhK -srl -lWY -tcO +bYd +aCr +uFE +eMt +eQa +vRW +nhJ aaa aaa aaa @@ -127882,28 +127872,28 @@ aag aag aag aag -fTl -hEr -xBS -taw -tTG -wOv -wIu -ydf -oxy -wOv -ixu -taw -wXJ -oxy -oxy -kiR -oxy -oxy -kiR -fiH -gBg -xsX +sTT +siP +dOX +mBf +ckq +wNN +glC +lGi +nHf +wNN +heI +mBf +oCV +nHf +nHf +vMv +nHf +nHf +vMv +xJV +psT +spa alO alO alO @@ -127919,9 +127909,9 @@ atq atq aBs alO -pEd -gBg -fiH +qRq +psT +xJV fTF xBY xBY @@ -127930,17 +127920,17 @@ xBY xBY jGI loP -kNq -fJp -nOx -wXl -kNq -kNq -kNq -kNq -pAV -jei -fVe +fcW +cvp +uyV +ekz +fcW +fcW +fcW +fcW +jCu +pNu +bMH aag aag aag @@ -127975,13 +127965,13 @@ aaa aaa aaa aaa -emA -jkN -ikT -ikT -ikT -ikT -ikT +kHq +pkv +hsf +hsf +hsf +hsf +hsf aLT aZf duV @@ -127999,33 +127989,33 @@ iIR aVf bES kcl -bqc -ubQ -kwi -lZM -rSR -xss -rLK -xss -xss -uHk -dXb -dXb -dXb -cTX -xss -xss -dXb -ndm -xss -iFY -dXb -xss -xss -lZM -kYl -ekM -pOW +ivi +llQ +kJw +mgZ +wVU +row +rXg +row +row +kDT +fRD +fRD +fRD +muJ +row +row +fRD +jZz +row +evQ +fRD +row +row +mgZ +oZJ +jPA +rPl hNw sZq jZv @@ -128043,13 +128033,13 @@ jGR jGR oqu bSJ -gEh -gEh -gEh -gEh -gEh -xhO -tcO +gbz +gbz +gbz +gbz +gbz +aCr +nhJ aaa aaa aaa @@ -128085,28 +128075,28 @@ aag aag aag aag -fTl -oqc -smw -taw -oxy -rgk -nUT -cnP -oxy -wOv -qlu -taw -qlu -oxy -oQL -taw -oQL -oQL -lnD -pEd -gBg -iea +sTT +ozw +qzm +mBf +nHf +shJ +jXL +rcw +nHf +wNN +bZu +mBf +bZu +nHf +sJo +mBf +sJo +sJo +jpu +qRq +psT +pEu alO gKZ vTv @@ -128122,9 +128112,9 @@ atq atq aBs alO -pvE -tbD -xhi +qsj +kTn +usl gdS wSn kXN @@ -128133,17 +128123,17 @@ odD xBY mOg oHx -aPO -iXB -aPO -gof -bVr -ivL -ivL -ivL -fVa -jei -fVe +gGX +vnE +gGX +rji +lcM +cTb +cTb +cTb +gxW +pNu +bMH aag aag aag @@ -128178,9 +128168,9 @@ aaa aaa aaa aaa -emA -fGi -ikT +kHq +kSA +hsf aLT aLT aLT @@ -128202,16 +128192,16 @@ chp aVf aQL aQL -lhs -bww -tHF -cvx -cvx -bKJ -cvx -cvx -cvx -cvx +uLs +klk +bTY +qwT +qwT +xIy +qwT +qwT +qwT +qwT vub vub vub @@ -128219,16 +128209,16 @@ owW vub vub vub -cvx -cvx -cvx -bKJ -cvx -cvx -cvx -xQz -bFX -pmd +qwT +qwT +qwT +xIy +qwT +qwT +qwT +fkz +pVF +gtL bJC bJC bMD @@ -128250,9 +128240,9 @@ bSJ bSJ bSJ bSJ -gEh -dFL -tcO +gbz +fcx +nhJ aaa aaa aaa @@ -128288,28 +128278,28 @@ aag aag aag aag -fTl -taw -taw -taw -wTn -oQL -oQL -lUQ -oxy -tBU -iDs -taw -qlu -oxy -hja -taw -kLZ -tty -lnD -pEd -gBg -iea +sTT +mBf +mBf +mBf +lOa +sJo +sJo +rEs +nHf +oFn +kpl +mBf +bZu +nHf +iIt +mBf +wfG +lPE +jpu +qRq +psT +pEu alO arz atq @@ -128325,9 +128315,9 @@ auB atc aOF alO -pEd -tbD -xhi +qRq +kTn +usl gdS lBg dXd @@ -128336,17 +128326,17 @@ loP eMh loP loP -kNq -hnt -aPO -wSx -gYI -wPa -gYI -gYI -rzk -jei -fVe +fcW +cGP +gGX +wXS +kHv +rbE +kHv +kHv +foU +pNu +bMH aag aag aag @@ -128381,9 +128371,9 @@ aaa aaa aaa aaa -emA -jEM -ikT +kHq +aYf +hsf aLT bBg vPv @@ -128405,9 +128395,9 @@ brA aVf lQz aQL -bqc -qIf -bqc +ivi +bWD +ivi bbs cbh xYP @@ -128429,9 +128419,9 @@ tez gsm bCM bbr -uPE -ekM -pOW +wOC +jPA +rPl bJC jht jZv @@ -128453,9 +128443,9 @@ qNd hzu hcI bSJ -xhO -xhO -tcO +aCr +aCr +nhJ aaa aaa aaa @@ -128491,28 +128481,28 @@ aag aag aag aag -fTl -oQL -mOE -gUG -oxy -oQL -taw -taw -mRI -taw -taw -taw -ixu -oxy -oQL -taw -taw -taw -taw -pEd -gBg -iea +sTT +sJo +oPv +rEd +nHf +sJo +mBf +mBf +rFS +mBf +mBf +mBf +heI +nHf +sJo +mBf +mBf +mBf +mBf +qRq +psT +pEu alO arz atq @@ -128528,9 +128518,9 @@ aIU aMq aOG alO -pEd -gBg -xhi +qRq +psT +usl loP loP loP @@ -128540,16 +128530,16 @@ vyI lPB oHl jWh -kNq -qDB -kNq -kNq -kNq -kNq -kNq -gGb -oUx -fVe +fcW +nVz +fcW +fcW +fcW +fcW +fcW +eEv +gRt +bMH aag aag aag @@ -128584,9 +128574,9 @@ aaa aaa aaa aaa -emA -jEM -jEM +kHq +aYf +aYf aLT nuN nuN @@ -128608,9 +128598,9 @@ bOG aVf iaq aQL -bqc -qIf -bqc +ivi +bWD +ivi bbs bKD vTS @@ -128632,9 +128622,9 @@ tez ccQ bCN bbr -uPE -ekM -pOW +wOC +jPA +rPl bJC cjC jZv @@ -128656,9 +128646,9 @@ rYp oEo oEo bSJ -xhO -lMO -tcO +aCr +aCB +nhJ aaa aaa aaa @@ -128694,28 +128684,28 @@ aag aag aag aag -fTl -oxy -oxy -bCv -oxy -oQL -taw -gCQ -rEs -tvr -taw -lsh -oQL -oxy -oQL -aYU -uxs -iDs -taw -pEd -gBg -iea +sTT +nHf +nHf +vag +nHf +sJo +mBf +lnb +gBO +ozt +mBf +sMC +sJo +nHf +sJo +eNO +sCi +kpl +mBf +qRq +psT +pEu alO arz atq @@ -128731,9 +128721,9 @@ xBe xBe xBe xBe -pEd -gBg -xhi +qRq +psT +usl jWh eFK wGd @@ -128743,16 +128733,16 @@ hSk hSk uIv jWh -jZj -sRP -oko -kNq -tiY -qAK -xGK -gGb -jei -fVe +nmp +iPe +dbj +fcW +eje +olv +njr +eEv +pNu +bMH aag aag aag @@ -128787,9 +128777,9 @@ aaa aaa aaa aaa -emA -oPF -jEM +kHq +slG +aYf aLT vug vug @@ -128811,9 +128801,9 @@ bRg aVf aQL aQL -ylN -qIf -bqc +ycS +bWD +ivi bbs ydM xYP @@ -128835,9 +128825,9 @@ tez ccQ cdn bbr -uPE -ekM -pOW +wOC +jPA +rPl bJC bJC kGF @@ -128859,9 +128849,9 @@ yle wWX wWX bSJ -xhO -xHa -tcO +aCr +dvi +nhJ aaa aaa aaa @@ -128897,28 +128887,28 @@ aag aag aag aag -fTl -wTn -oQL -qmq -oQL -nXo -taw -gCQ -bNc -tCC -taw -ftG -oQL -oxy -oQL -oQL -oQL -keE -taw -pvE -gBg -iea +sTT +lOa +sJo +dLx +sJo +rYM +mBf +lnb +pVG +ndd +mBf +vAu +sJo +nHf +sJo +sJo +sJo +tlX +mBf +qsj +psT +pEu xnR arm ats @@ -128934,9 +128924,9 @@ aIV qqr arH xBe -pEd -gBg -xhi +qRq +psT +usl vXd duF hSk @@ -128946,16 +128936,16 @@ hSk hSk uIv jWh -eHz -aPO -tMT -kNq -jei -ltm -oAT -gGb -cmV -fVe +iCI +gGX +gMj +fcW +pNu +vBa +bcQ +eEv +yen +bMH aag aag aag @@ -128990,9 +128980,9 @@ aaa aaa aaa aaa -emA -rIV -nvI +kHq +kin +iZh aLT iPS vAE @@ -129014,9 +129004,9 @@ jOi aVf bES kcl -bqc -qIf -bqc +ivi +bWD +ivi bbs dvs xYP @@ -129038,9 +129028,9 @@ tez ccQ bCM bbr -uPE -ekM -pOW +wOC +jPA +rPl hNw sZq lef @@ -129062,9 +129052,9 @@ vSW scy kPJ bSJ -xhO -eeR -tcO +aCr +wkJ +nhJ aaa aaa aaa @@ -129100,28 +129090,28 @@ aag aag aag aag -fTl -oxy -taw -taw -xcs -taw -taw -utC -oxy -ikC -vRJ -gNQ -laP -gNQ -gNQ -gNQ -gNQ -gNQ -xDG -tJH -qpH -iSu +sTT +nHf +mBf +mBf +mkq +mBf +mBf +opU +nHf +iqN +ovx +fwQ +wJS +fwQ +fwQ +fwQ +fwQ +fwQ +wZD +wPR +sEW +hbK alO arA att @@ -129137,9 +129127,9 @@ azo aJg abR xBe -pEd -gBg -jhm +qRq +psT +cGk jWh oih khE @@ -129149,16 +129139,16 @@ vyI kpQ vSE jWh -nwA -xZz -kRN -kNq -jei -ltm -ejj -gGb -jei -fVe +pPw +iay +waG +fcW +pNu +vBa +xiD +eEv +pNu +bMH aag aag aag @@ -129193,9 +129183,9 @@ aaa aaa aaa aaa -emA -sEg -kDd +kHq +pMI +dJF aLT aLT aLT @@ -129217,9 +129207,9 @@ vfx aVf bES kcl -lhs -uvh -lhs +uLs +uos +uLs kFY jmK bDL @@ -129241,9 +129231,9 @@ tez ccQ bCN jhb -kAj -bFX -hza +iFJ +pVF +bQr hNw sZq ltI @@ -129265,9 +129255,9 @@ bSJ bSJ bSJ bSJ -qid -lNk -tcO +twi +uIF +nhJ aaa aaa aaa @@ -129303,28 +129293,28 @@ aag aag aag aag -fTl -oxy -taw -tZM -qEZ -frV -taw -gCQ -uqJ -vbu -taw -taw -taw -mRI -taw -taw -taw -taw -taw -rhX -gBg -xhi +sTT +nHf +mBf +vkW +uVx +aFE +mBf +lnb +fmY +mkW +mBf +mBf +mBf +rFS +mBf +mBf +mBf +mBf +mBf +dxH +psT +usl wDM wDM wDM @@ -129340,9 +129330,9 @@ atv auV amE xBe -pEd -gBg -xhi +qRq +psT +usl jWh jWh uUz @@ -129352,16 +129342,16 @@ qbZ jWh jWh jWh -fQl -aPO -nGZ -kNq -xQe -jei -lVR -pHD -dhp -fVe +rYT +gGX +lQk +fcW +iOt +pNu +fXG +xft +riw +bMH aag aag aag @@ -129396,9 +129386,9 @@ aaa aaa aaa aaa -emA -eTD -ikT +kHq +aEE +hsf aLT bBg vPv @@ -129420,9 +129410,9 @@ bRV bSe bES kcl -bqc -qIf -bqc +ivi +bWD +ivi bBd aPr bfl @@ -129444,9 +129434,9 @@ bSb bEa bFp bBd -uPE -ekM -pOW +wOC +jPA +rPl hNw sZq lwJ @@ -129468,9 +129458,9 @@ mAV hzu hcI bSJ -rqz -xhO -tcO +dpM +aCr +nhJ aaa aaa aaa @@ -129506,17 +129496,17 @@ aag aag aag aag -fTl -lmq -taw -mDz -pIf -uwf -taw -gCQ -rEs -bhZ -taw +sTT +pSP +mBf +vwJ +vWa +iIa +mBf +lnb +gBO +sXg +mBf uiG rTZ tfb @@ -129525,9 +129515,9 @@ tfb tfb tfb ptK -pEd -tbD -xhi +qRq +kTn +usl wDM aOM aoW @@ -129543,9 +129533,9 @@ atv auV amE xBe -pEd -tbD -xhi +qRq +kTn +usl jWh xXa xXa @@ -129555,16 +129545,16 @@ cKL jbH rJh jWh -rJY -dPl -qQG -kNq -cfm -jei -oSR -grd -jei -fVe +pOa +fZu +gyT +fcW +eeL +pNu +cua +fNv +pNu +bMH aag aag aag @@ -129599,9 +129589,9 @@ aaa aaa aaa aaa -emA -efP -ikT +kHq +gER +hsf aLT cjc cjc @@ -129623,9 +129613,9 @@ csZ odB aQL aQL -bqc -sUk -ade +ivi +nIL +rNY bBe bFq bfm @@ -129647,9 +129637,9 @@ bCD bEb bFq bBe -hWD -iyC -pOW +rWy +nQb +rPl bJC bJC rbH @@ -129671,9 +129661,9 @@ yfm fXN fXN bSJ -gEh -xhO -tcO +gbz +aCr +nhJ aaa aaa aaa @@ -129709,17 +129699,17 @@ aag aag aag aag -fTl -oxy -taw -taw -taw -taw -taw -taw -mRI -taw -taw +sTT +nHf +mBf +mBf +mBf +mBf +mBf +mBf +rFS +mBf +mBf bNM wkX jhx @@ -129728,9 +129718,9 @@ jhx jhx dnH gpc -fiH -tbD -xhi +xJV +kTn +usl wDM uto aoX @@ -129746,9 +129736,9 @@ nNY qKi abR xBe -pvE -gxR -pym +qsj +cqB +aPc dEt soP pDr @@ -129758,16 +129748,16 @@ soP eoG uIv jWh -kNq -qDB -kNq -kNq -kNq -fJp -ekz -gGb -oUx -fVe +fcW +nVz +fcW +fcW +fcW +cvp +tIE +eEv +gRt +bMH aag aag aag @@ -129802,9 +129792,9 @@ aaa aaa aaa aaa -emA -uzv -ikT +kHq +kAN +hsf aLT cjc cjc @@ -129826,9 +129816,9 @@ vil bpC qZX aQL -pjP -qIf -lfz +cbO +bWD +tBp bbs cdp cdp @@ -129850,9 +129840,9 @@ fJO fJO fJO bbs -wMI -ekM -oHt +xJY +jPA +iVq bJC lbf cft @@ -129874,9 +129864,9 @@ yfm fXN fXN bSJ -xhO -dFL -tcO +aCr +fcx +nhJ aaa aaa aaa @@ -129912,13 +129902,13 @@ aag aag aag aag -fTl -wTn -mOE -sWp -nUm -moL -taw +sTT +lOa +oPv +dFW +gog +bBO +mBf mDJ owg xUA @@ -129931,9 +129921,9 @@ nwU owg owg ptK -nhT -gqf -xhi +raD +qTd +usl wDM aOQ fxI @@ -129949,9 +129939,9 @@ azp qJf anV xBe -pEd -tbD -xhi +qRq +kTn +usl jWh iqH khE @@ -129961,16 +129951,16 @@ ovi iat eim jWh -kNq -spd -kNq -kNq -dVH -cAz -bVr -pHD -jei -fVe +fcW +mEN +fcW +fcW +ieG +nGp +lcM +xft +pNu +bMH aag aag aag @@ -130005,9 +129995,9 @@ aaa aaa aaa aaa -emA -hfO -ikT +kHq +aDY +hsf aLT iPS vAE @@ -130029,9 +130019,9 @@ vil bpC qDq kbc -bqc -ubQ -bqc +ivi +llQ +ivi bbs bdw bfo @@ -130053,9 +130043,9 @@ lJu bEd bFs bbs -uPE -ekM -pOW +wOC +jPA +rPl fzq oXb cft @@ -130077,9 +130067,9 @@ gEo scy kPJ bSJ -gEh -pFr -tcO +gbz +tRd +nhJ aaa aaa aaa @@ -130115,13 +130105,13 @@ aag aag aag aag -fTl -oxy -oxy -tIN -oxy -oxy -kiR +sTT +nHf +nHf +fcK +nHf +nHf +vMv owg owg uKV @@ -130134,9 +130124,9 @@ eNi eNi eNi eNi -pEd -gBg -jhm +qRq +psT +cGk wDM aOH aJf @@ -130152,9 +130142,9 @@ xBe xBe xBe xBe -pEd -tbD -rXV +qRq +kTn +ufM jWh jWh jlQ @@ -130164,16 +130154,16 @@ thV uWV uIv oSx -kNq -oUx -kNq -kNq -fJp -ekz -hqu -jei -qDS -fVe +fcW +gRt +fcW +fcW +cvp +tIE +jzp +pNu +ght +bMH aag aag aag @@ -130208,9 +130198,9 @@ aaa aaa aaa aaa -emA -jkN -ikT +kHq +pkv +hsf aLT aLT aLT @@ -130232,9 +130222,9 @@ ngA koC koC xGE -jno -fqw -bqc +lYg +tBd +ivi lgy ccb xYP @@ -130256,9 +130246,9 @@ rXk xYP jew laU -uPE -dEL -rzy +wOC +hPk +lpM uCM lNw eFj @@ -130280,9 +130270,9 @@ bSJ bSJ bSJ bSJ -gEh -kMR -tcO +gbz +owD +nhJ aaa aaa aaa @@ -130318,13 +130308,13 @@ aah aag aag aag -fTl -pWw -hbE -cbc -qIa -qIa -taw +sTT +jaF +emX +iGH +mtj +mtj +mBf ptK afX ptK @@ -130337,9 +130327,9 @@ olO wiG nWN eNi -pEd -tbD -xhi +qRq +kTn +usl wDM wDM wDM @@ -130355,9 +130345,9 @@ aJh arq ufx alR -pEd -tbD -jhm +qRq +kTn +cGk jWh hSk hSk @@ -130367,16 +130357,16 @@ upR fCL uIv vVw -iSV -jei -oYr -jei -aPO -aPO -aPO -gtQ -wiO -fVe +cWF +pNu +caZ +pNu +gGX +gGX +gGX +mdG +hNn +bMH aag aag aag @@ -130411,14 +130401,14 @@ aaa aaa aaa aaa -emA -hyb -jEM -jEM -jEM -jEM -hyb -jEM +kHq +enq +aYf +aYf +aYf +aYf +enq +aYf aLT cjc cjc @@ -130435,9 +130425,9 @@ jOx bpC qDq aQL -nYR -bww -lhs +xRK +klk +uLs lgy bsG xYP @@ -130459,9 +130449,9 @@ lJu xYP hLI laU -gyw -uNQ -gyw +kIR +gRV +kIR bJC oXb cfo @@ -130478,14 +130468,14 @@ kPJ fXN fXN bSJ -enY -srl -gEh -xhO -xhO -xhO -jay -tcO +hMV +eQa +gbz +aCr +aCr +aCr +sce +nhJ aaa aaa aaa @@ -130521,13 +130511,13 @@ aaa aad aag aag -fTl -prX -oYs -odG -biC -qlu -taw +sTT +hEB +ojg +mbp +bib +bZu +mBf bKm hsr mDJ @@ -130540,9 +130530,9 @@ ueG rPt jyE eNi -pEd -tbD -xhi +qRq +kTn +usl hwC rcS amx @@ -130558,9 +130548,9 @@ aJi azs atq alR -pEd -tbD -xhi +qRq +kTn +usl jlQ tst uUe @@ -130570,16 +130560,16 @@ pZK fCL uIv lFA -kNq -jei -kNq -kNq -jei -jei -gYU -oGi -dVR -fVe +fcW +pNu +fcW +fcW +pNu +pNu +kjY +kMW +uGy +bMH aag aag ajZ @@ -130614,14 +130604,14 @@ aaa aaa aaa aaa -emA -emA -emA -emA -emA -jEM -ikT -jEM +kHq +kHq +kHq +kHq +kHq +aYf +hsf +aYf aLT iPS vAE @@ -130638,9 +130628,9 @@ jOx bpC ksp aQL -bqc -wqO -wxD +ivi +lWA +rez cau bCG cgE @@ -130660,11 +130650,11 @@ xYP jmK hcw cgE -yht -blq -ddL -eZR -uPE +qGS +dPf +jyX +fza +wOC bJC kIP cfo @@ -130681,14 +130671,14 @@ oer vSW scy bSJ -mCE -qid -hCq -tcO -tcO -tcO -tcO -tcO +ljD +twi +lkg +nhJ +nhJ +nhJ +nhJ +nhJ aaa aaa aaa @@ -130724,13 +130714,13 @@ aaa aad aag aag -fTl -fTl -fTl -fTl -fTl -fTl -fTl +sTT +sTT +sTT +sTT +sTT +sTT +sTT qJx hsr mDJ @@ -130743,9 +130733,9 @@ iKD rPt rPt eNi -pEd -tbD -xhi +qRq +kTn +usl alR amA atq @@ -130761,9 +130751,9 @@ aJj aMD atq alR -pEd -tbD -xhi +qRq +kTn +usl jlQ tZZ gLz @@ -130773,16 +130763,16 @@ ovi fCL lYk bYn -fVe -fVe -fVe -fVe -fVe -fVe -fVe -fVe -fVe -fVe +bMH +bMH +bMH +bMH +bMH +bMH +bMH +bMH +bMH +bMH aag aag ajZ @@ -130821,10 +130811,10 @@ aaa aaa aaa aaa -emA -oPF -ikT -jEM +kHq +slG +hsf +aYf aLT meY meY @@ -130841,9 +130831,9 @@ pyl pDt aQL aQL -bqc -ubQ -bqc +ivi +llQ +ivi lgy ccN xYP @@ -130863,11 +130853,11 @@ wLm wLm lJu xYP -wbV +hko laU -uPE -vuV -uPE +wOC +iQx +wOC bJC bJC vLA @@ -130884,10 +130874,10 @@ oer oer oer oer -uVp -gEh -pFr -tcO +tQw +gbz +tRd +nhJ aaa aaa aaa @@ -130946,9 +130936,9 @@ eNi eNi gIh eNi -iIQ -gBg -xhi +gUt +psT +usl alR amA atq @@ -130964,9 +130954,9 @@ amA ayl amx alR -pEd -tbD -xhi +qRq +kTn +usl jWh jmQ vcu @@ -131024,18 +131014,18 @@ aaa aaa aaa aaa -emA -wtn -ikT -ikT -ikT -ikT -ikT -ikT -ikT -jEM -ikT -jEM +kHq +eRm +hsf +hsf +hsf +hsf +hsf +hsf +hsf +aYf +hsf +aYf aQL qZX qZX @@ -131044,9 +131034,9 @@ jOx bpC qZX aQL -bqc -ubQ -bqc +ivi +llQ +ivi lgy ccb xYP @@ -131068,9 +131058,9 @@ rXk xYP jew laU -uPE -vuV -uPE +wOC +iQx +wOC bJC lbf cfo @@ -131079,18 +131069,18 @@ lbf lbf lbf bJC -gEh -cmN -gEh -xhO -dzX -foS -xhO -gEh -gEh -gEh -gEh -tcO +gbz +ofP +gbz +aCr +doM +nda +aCr +gbz +gbz +gbz +gbz +nhJ aaa aaa aaa @@ -131149,9 +131139,9 @@ aWb dyK vzK wYY -pEd -gBg -xhi +qRq +psT +usl alR amA atq @@ -131167,9 +131157,9 @@ aJl amx atq alR -pEd -tbD -xhi +qRq +kTn +usl jlQ snE sGL @@ -131227,18 +131217,18 @@ aaa aaa aaa aaa -emA -pGj -uoj -jEM -jEM -jEM -jEM -fBo -jEM -jEM -jEM -jEM +kHq +dJm +nmS +aYf +aYf +aYf +aYf +aRm +aYf +aYf +aYf +aYf aQL qDq qDq @@ -131247,9 +131237,9 @@ jOx bpC qDq bTb -bqc -ubQ -bqc +ivi +llQ +ivi bbs ccd ccN @@ -131271,9 +131261,9 @@ lJu huK jeQ bbs -uPE -vuV -uPE +wOC +iQx +wOC xSw oXb cfo @@ -131282,18 +131272,18 @@ oXb oXb oXb bJC -gEh -xhO -gEh -xhO -gEh -hWH -xhO -gEh -xhO -xhO -rhD -tcO +gbz +aCr +gbz +aCr +gbz +uvB +aCr +gbz +aCr +aCr +wqX +nhJ aaa aaa aaa @@ -131352,9 +131342,9 @@ tii eJX sAC wYY -pEd -gBg -xhi +qRq +psT +usl alR amA amx @@ -131370,9 +131360,9 @@ aJk amx atq alR -pEd -tbD -xhi +qRq +kTn +usl jlQ tZZ cBj @@ -131430,18 +131420,18 @@ aaa aaa aaa aaa -emA -emA -emA -emA -emA -emA -emA -emA -emA -emA -ikT -oBr +kHq +kHq +kHq +kHq +kHq +kHq +kHq +kHq +kHq +kHq +hsf +qwE aQL qDq qDq @@ -131450,9 +131440,9 @@ osA cHl cHl bTb -lhs -bww -lhs +uLs +klk +uLs bbs cdp cdp @@ -131474,9 +131464,9 @@ fJO fJO fJO bbs -gyw -uNQ -gyw +kIR +gRV +kIR xSw ejo ejo @@ -131485,18 +131475,18 @@ oXb oXb oXb bJC -xhO -gEh -gEh -tcO -tcO -ucy -tcO -tcO -tcO -tcO -tcO -tcO +aCr +gbz +gbz +nhJ +nhJ +urZ +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ aaa aaa aaa @@ -131555,9 +131545,9 @@ sjj fzP sAC wYY -pEd -tbD -xhi +qRq +kTn +usl alR amA atq @@ -131573,9 +131563,9 @@ xEO xEO lnP alR -pEd -tbD -jhm +qRq +kTn +cGk jWh qLs qLs @@ -131642,9 +131632,9 @@ aaa aaa aaa aaa -emA -qGC -hyb +kHq +bhe +enq aQL ksp ksp @@ -131653,33 +131643,33 @@ qDq qDq qDq bTb -bqc -ubQ -bqc -bqc -bqc -bqc -bqc -bqc -dYb -bqc -fpI -bqc -bqc -tGS -uPE -uPE -uuT -uPE -fRL -uPE -uPE -uPE -uPE -uPE -uPE -vuV -uPE +ivi +llQ +ivi +ivi +ivi +ivi +ivi +ivi +eZn +ivi +nAN +ivi +ivi +vja +wOC +wOC +niK +wOC +hky +wOC +wOC +wOC +wOC +wOC +wOC +iQx +wOC xSw oXb oXb @@ -131688,10 +131678,10 @@ kIP qer kIP bJC -xhO -wYd -pFr -tcO +aCr +wFG +tRd +nhJ aaa aaa aaa @@ -131758,9 +131748,9 @@ fcM uzE qsL nim -prV -gqf -xhi +sFo +qTd +usl alR amA atq @@ -131776,9 +131766,9 @@ iWR iWR kbx alR -pEd -tbD -xhi +qRq +kTn +usl jWh jWh jlQ @@ -131845,9 +131835,9 @@ aaa aaa aaa aaa -emA -ikT -jEM +kHq +hsf +aYf aQL aQL aQL @@ -131856,33 +131846,33 @@ ksp rou ksp aQL -bqc -qas -qUO -qUO -qUO -reu -fLf -reu -reu -reu -kkN -reu -reu -uTP -kEE -kEE -dCM -kEE -kEE -kEE -ulH -kEE -wzJ -wzJ -wzJ -nmH -xui +ivi +mfr +tqp +tqp +tqp +pAa +cgp +pAa +pAa +pAa +hdC +pAa +pAa +cZo +wad +wad +upP +wad +wad +wad +wYU +wad +sGQ +sGQ +sGQ +cLT +nwd bJC kIP qer @@ -131891,10 +131881,10 @@ bJC bJC bJC bJC -gEh -gEh -gEh -tcO +gbz +gbz +gbz +nhJ aaa aaa aaa @@ -131961,9 +131951,9 @@ xlC gyO kTN eNi -pvE -tbD -xhi +qsj +kTn +usl alR amA atq @@ -131979,14 +131969,14 @@ xEO xEO aOV alR -pEd -tbD -xhi +qRq +kTn +usl jWh -kUw -dod -eNv -rxV +pnV +nqp +vyI +fVM thV fCL uIv @@ -132048,56 +132038,56 @@ aaa aaa aaa aaa -emA -ikT -jEM -jEM -hYf -jEM -oBr -oBr -oBr -oBr -oBr -ovQ -bqc -bqc -bqc -bqc -nci -mww -nci -nci -bqc -rVC -bqc -bqc -tGS -uPE -uPE -tIl -uPE -cJs -cJs -vuV -cJs -uPE -uPE -uPE -uPE -pqw +kHq +hsf +aYf +aYf +gHm +aYf +qwE +qwE +qwE +qwE +qwE +mED +ivi +ivi +ivi +ivi +eOz +gZO +eOz +eOz +ivi +aAM +ivi +ivi +vja +wOC +wOC +qXz +wOC +wCN +wCN +iQx +wCN +wOC +wOC +wOC +wOC +hVR bJC bJC bJC bJC bJC -xhO -xhO -xhO -gEh -xhO -xfq -tcO +aCr +aCr +aCr +gbz +aCr +dXc +nhJ aaa aaa aaa @@ -132164,9 +132154,9 @@ oNb iFC qAA eNi -pEd -gBg -xhi +qRq +psT +usl alR arK atc @@ -132182,15 +132172,15 @@ aJq aMG aOW alR -pEd -tbD -xhi +qRq +kTn +usl jWh -tZP -hSk -hSk +qkz +nqp +vyI +vyI vyI -thV fCL uIv hSk @@ -132251,27 +132241,27 @@ aaa aaa aaa aaa -emA -kAv -jEM -ikT -ikT -jEM -jEM -gCu -ikT -ikT -oBr -oBr -qPn -oBr -oBr -jxX -knl -pum -jAj -kKY -kKY +kHq +kai +aYf +hsf +hsf +aYf +aYf +lfs +hsf +hsf +qwE +qwE +bhV +qwE +qwE +qSB +gtc +gCX +rly +jAy +jAy oJk lNR lNR @@ -132279,28 +132269,28 @@ oJk lNR lNR oJk -mXy -oGh -far -vDo -nnr -cNm -ljv -ljv -sUi -ljv -ljv -xhO -xhO -xhO -xhO -xhO -xhO -xhO -xhO -xhO -srl -tcO +anE +wBg +cwy +rYV +rSz +wJA +lij +lij +saa +lij +lij +aCr +aCr +aCr +aCr +aCr +aCr +aCr +aCr +aCr +eQa +nhJ aaa aaa aaa @@ -132367,9 +132357,9 @@ eNi eNi eNi eNi -mQF -rnO -mQF +sGP +mju +sGP alO alO alO @@ -132385,14 +132375,14 @@ alO alO alO alO -mQF -rnO -mQF +sGP +mju +sGP jWh -nDL -vyI +pnV +nqp vyI -wTJ +qJb thV uWV uIv @@ -132454,22 +132444,22 @@ aaa aaa aaa aaa -emA -qFS -pPG -jEM -jEM -jEM -jEM -gCu -jEM -jEM -oBr -sRM -jEM -jEM -oBr -oBr +kHq +qev +gaW +aYf +aYf +aYf +aYf +lfs +aYf +aYf +qwE +nSI +aYf +aYf +qwE +qwE sqg rPQ sqg @@ -132487,23 +132477,23 @@ oJk sqg mgu sqg -ljv -ljv -xhO -gEh -xhO -xhO -gEh -gEh -gEh -xhO -xhO -xhO -xhO -gEh -aEr -keO -tcO +lij +lij +aCr +gbz +aCr +aCr +gbz +gbz +gbz +aCr +aCr +aCr +aCr +gbz +tbz +xUS +nhJ aaa aaa aaa @@ -132570,9 +132560,9 @@ dWX owg owg ptK -bZq -hfc -jgS +oaE +whg +xLC aqq aPa eky @@ -132588,9 +132578,9 @@ eky eky aPa aqq -bZq -hfc -lBf +oaE +whg +hKS jWh xXa xXa @@ -132657,22 +132647,22 @@ aaa aaa aaa aaa -emA -twp -iyE -ecb -ikT -ikT -ikT -ctp -ecb -jEM -jEM -jEM -jEM -ikT -ikT -oBr +kHq +hFR +kJD +fMn +hsf +hsf +hsf +aPP +fMn +aYf +aYf +aYf +aYf +hsf +hsf +qwE fcS gdJ oyR @@ -132690,23 +132680,23 @@ oJk ppn nAY cjt -ljv -ceY -gIm -gEh -gEh -gEh -xhO -wra -xhO -gEh -xhO -gEh -gEh -sOD -eMx -xgr -tcO +lij +xtk +xWh +gbz +gbz +gbz +aCr +erR +aCr +gbz +aCr +gbz +gbz +tNy +lgI +ulI +nhJ aaa aaa aaa @@ -132773,9 +132763,9 @@ keR jhx keR dwI -pym -jae -tGW +aPc +efE +hOb hal uYg nau @@ -132791,9 +132781,9 @@ uYg nau uYg hal -rrG -jae -pym +eQP +efE +aPc mPh soP tWi @@ -132860,22 +132850,22 @@ aaa aaa aaa aaa -emA -emA -emA -emA -emA -emA -emA +kHq +kHq +kHq +kHq +kHq +kHq +kHq vgw sqg sqg sqg mpP sqg -oBr -qGC -oBr +qwE +bhe +qwE fcS gdJ oyR @@ -132893,23 +132883,23 @@ oJk pkA nAY cjt -ljv -gEh -ljv +lij +gbz +lij sqg mpP aep aep aep dKL -tcO -tcO -tcO -tcO -tcO -tcO -tcO -tcO +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ +nhJ aaa aaa aaa @@ -132976,9 +132966,9 @@ kPG kPG cVw ptK -iOP -xjI -fzm +xdr +sXG +enK aqq eky aNl @@ -132994,9 +132984,9 @@ eky aNl eky aqq -iOP -xSl -fzm +xdr +fAQ +enK jWh tim uWV @@ -133077,8 +133067,8 @@ sqg rwB lKM sqg -nSq -oBr +vJJ +qwE fcS gdJ cjt @@ -133096,8 +133086,8 @@ pRZ fcS nAY jOE -ljv -mPc +lij +lGo sqg qEL vmE @@ -133179,9 +133169,9 @@ ucp cIW ptK ptK -ybk -sDe -ybk +oaI +pFh +oaI aHe jlT exi @@ -133197,9 +133187,9 @@ eky ins wRP aHe -eZm -eZm -eZm +wUB +wUB +wUB jWh jWh sWC @@ -133280,8 +133270,8 @@ sqg eKy wQA sqg -jEM -oBr +aYf +qwE uYn jaM oXM @@ -133299,8 +133289,8 @@ mkP muQ ojh nxx -ljv -xhO +lij +aCr sqg gEC skC @@ -133382,9 +133372,9 @@ gPc trB exy ptK -fLl -fLl -fLl +diy +diy +diy eky eky aNl @@ -133400,9 +133390,9 @@ eky aNl eky rqj -eZm -jYm -aZI +wUB +pLB +tpk jWh duz hXG @@ -133585,9 +133575,9 @@ eet fcP pDh ptK -aqZ -aqZ -ptQ +uQp +uQp +rlO aMT aMT dPm @@ -133603,9 +133593,9 @@ okg dPm aMT aMT -hbp -mwP -mwP +qtZ +aBO +aBO jWh axR mIP @@ -133788,9 +133778,9 @@ wxj lht rYv ptK -haO -pKB -fLl +frq +iDx +diy svf arV wZX @@ -133806,9 +133796,9 @@ eky wZX arV vUh -eZm -xUy -mwP +wUB +dnW +aBO jWh vpv pgw @@ -133991,9 +133981,9 @@ ptK afX ptK ptK -haO -fLl -fLl +frq +diy +diy lDn arV wZX @@ -134009,9 +133999,9 @@ eky wZX arV wkA -eZm -eZm -mwP +wUB +wUB +aBO jWh jWh kLc @@ -134186,16 +134176,16 @@ bdH uMc bNM ofK -fLl -uxl -haO -ebf -haO -aqZ -tot -haO -qqS -fLl +diy +lkN +frq +dfv +frq +uQp +hOc +frq +oeq +diy xrq vVu arV @@ -134213,16 +134203,16 @@ wZX arV oIt xrq -eZm -qHG -mwP -xQW -vJR -mwP -hkz -ckj -oaw -eZm +wUB +hZp +aBO +dsp +vsa +aBO +exX +fDm +hyL +wUB lbB uIv pql @@ -134389,16 +134379,16 @@ bdH uMc bNM ofK -fLl -uxl -haO -uLG -haO -aqZ -pbo -haO -xLn -fLl +diy +lkN +frq +cIZ +frq +uQp +fUF +frq +ruS +diy vlk mKy aMT @@ -134416,16 +134406,16 @@ sQO aMT wNS vlk -eZm -oHg -uiK -mwP -vJR -mwP -jrB -eoK -xTG -eZm +wUB +fAH +fOO +aBO +vsa +aBO +iUD +cLt +ebz +wUB lbB uIv pql @@ -134498,8 +134488,8 @@ aWZ qAB gEC sqg -aIh -eTb +jon +iQK kkW iwf uFg @@ -134517,8 +134507,8 @@ vXo gWu xMl lft -eTb -aIh +iQK +jon sqg siN cjt @@ -134592,17 +134582,17 @@ bdH uMc bNM rtd -ptQ -aqZ -aqZ -aqZ -aqZ -aqZ -leM -haO -iYm -fLl -fLl +rlO +uQp +uQp +uQp +uQp +uQp +nLN +frq +wIz +diy +diy vjd aRp jBX @@ -134618,17 +134608,17 @@ tKf jBX aRp quy -eZm -eZm -bjt -eIN -mwP -ksw -ksw -ksw -ksw -ksw -hbp +wUB +wUB +jDf +hfs +aBO +opf +opf +opf +opf +opf +qtZ uWV uIv pql @@ -134701,14 +134691,14 @@ ggQ pYS ivS sqg -ppM -eTb +xjU +iQK hbs vZU elx jnI oJk -xef +ggx dPQ ams eni @@ -134720,8 +134710,8 @@ nYn elx mDL fSF -eTb -ppM +iQK +xjU sqg lvh iks @@ -134795,17 +134785,17 @@ bdH cuC htb pfc -fLl -fLl -fLl -fLl -rht -aqZ -aqZ -aqZ -aqZ -aqZ -ptQ +diy +diy +diy +diy +gNj +uQp +uQp +uQp +uQp +uQp +rlO qYG atM bGc @@ -134821,17 +134811,17 @@ atM bGc atK qYG -hbp -ksw -ksw -rHB -ksw -vJR -rPq -eZm -eZm -eZm -eZm +qtZ +opf +opf +vrG +opf +vsa +oDI +wUB +wUB +wUB +wUB jAJ lAu bYn @@ -134904,8 +134894,8 @@ aep mkL gEC sqg -ppM -eTb +xjU +iQK hsy hsy baJ @@ -134923,8 +134913,8 @@ foC kph hsy hsy -eTb -eUe +iQK +nJm sqg wWl trh @@ -135001,14 +134991,14 @@ tgK tfb wuT lMx -gJF -gJF -gJF -gJF -gJF -gJF -gJF -gJF +bma +bma +bma +bma +bma +bma +bma +bma aPw avu mhG @@ -135024,14 +135014,14 @@ dxK dPC aMU aPw -wxy -wxy -wxy -wxy -wxy -wxy -wxy -wxy +nzC +nzC +nzC +nzC +nzC +nzC +nzC +nzC jFY qKY jHL @@ -135107,27 +135097,27 @@ wpS fZA fEe sqg -ppM -ppM +xjU +xjU hsy shL uXk mlF hsy -ckZ -hmv -hmv +wdN +lsQ +lsQ dTS -hmv -hmv -ckZ +lsQ +lsQ +wdN hsy tos uXk tkn hsy -aIh -ppM +jon +xjU sqg fEe nqW @@ -135310,8 +135300,8 @@ vgw vgw vgw vgw -aIh -aIh +jon +jon hsy wed uXk @@ -135329,8 +135319,8 @@ tos uXk wed hsy -qBS -lib +hts +afA vgw vgw vgw @@ -135512,11 +135502,11 @@ aah aag aag aag -nic -tmQ -ppM +eUf +ioT +xjU hsy -txS +ujr bVN oGJ xpZ @@ -135530,11 +135520,11 @@ coH oTO uqh iAE -sct +vji hsy -iWa -fZR -nic +gMX +uSI +eUf aag aag aag @@ -135715,29 +135705,29 @@ bdH aad aag aag -nic -aIh -aIh +eUf +jon +jon hsy -fCT +lxm uXk rae jIV pzM mtZ -hmv -hmv -hmv +lsQ +lsQ +lsQ fQn pzM nac xNf uXk -slv +kIj hsy -aIh -aIh -nic +jon +jon +eUf aag aag ajZ @@ -135918,29 +135908,29 @@ bdH aad aag aag -nic -ppM -ppM +eUf +xjU +xjU hsy -igs +duP nCn oGJ uSW kzO vaZ kYL -hmv +lsQ sCV rjO suY pdK uqh pJr -slv +kIj hsy -aIh -aIh -nic +jon +jon +eUf aag aag ajZ @@ -136121,29 +136111,29 @@ bdH aad aag aag -nic -aIh -ppM +eUf +jon +xjU hsy hsy -wTB +mBT mlF uXk hmw gSa mtZ -hmv +lsQ fQn wSV ulp uXk tos -slv +kIj hsy hsy -ppM -eUe -nic +xjU +nJm +eUf aag aag ajZ @@ -136324,29 +136314,29 @@ bdH aad aag aag -nic -aIh -aIh -aIh +eUf +jon +jon +jon hsy -ygP +osd mlF hsy -hcX +jiq fQn mtZ -hmv +lsQ fQn mtZ -hmv +lsQ hsy beL -ygP +osd hsy -cWb -aIh -aIh -nic +tHw +jon +jon +eUf aag aag ajZ @@ -136527,29 +136517,29 @@ bdH aad aag aag -nic -ppM -ppM -ppM +eUf +xjU +xjU +xjU hsy ylh opH hsy -pvI +gTV fQn qoR aPU rjO mtZ -njS +goF hsy iEw ylh hsy -dDT -ppM -dDT -nic +qEP +xjU +qEP +eUf aag aag ajZ @@ -136730,29 +136720,29 @@ bdH aad aag aag -nic -nic -wsw -aIh +eUf +eUf +xUt +jon hsy ylh mlF hsy -hmv +lsQ eZp kzO pzM hip ptZ -hmv +lsQ hsy tos ylh hsy -qBS -piJ -nic -nic +hts +hEy +eUf +eUf aag aag ajZ @@ -136934,9 +136924,9 @@ aad aag aag aag -nic -qBS -lib +eUf +hts +afA hsy hsy suJ @@ -136952,9 +136942,9 @@ hsy wdv hsy hsy -yjE -ppM -nic +sUq +xjU +eUf aag aag aag @@ -137137,9 +137127,9 @@ aad aag aag aag -nic -aIh -vsi +eUf +jon +mtQ hsy uiC sIr @@ -137155,9 +137145,9 @@ rlc hfb hUk hsy -ppM -fZR -nic +xjU +uSI +eUf aag aag aag @@ -137340,9 +137330,9 @@ aad aag aag aag -nic -ppM -ppM +eUf +xjU +xjU hsy thc sIr @@ -137358,9 +137348,9 @@ pAm sIr fZl hsy -mxV -aIh -nic +tyY +jon +eUf aag aag aag @@ -137543,9 +137533,9 @@ aad aag aag aag -nic -aIh -aIh +eUf +jon +jon hsy tIe uAK @@ -137561,9 +137551,9 @@ bVv nJa jPd hsy -ppM -eeC -nic +xjU +flY +eUf aag aag aag @@ -137746,9 +137736,9 @@ aad aag aag aag -nic -ppM -ppM +eUf +xjU +xjU hsy dPH sov @@ -137764,9 +137754,9 @@ pAm fZl oex hsy -aIh -aIh -nic +jon +jon +eUf aag aag aag @@ -137949,9 +137939,9 @@ aad aag aag aag -nic -aIh -aIh +eUf +jon +jon hsy rBv sov @@ -137967,9 +137957,9 @@ pAm fZl snt hsy -ppM -ppM -nic +xjU +xjU +eUf aag aag aag @@ -138152,9 +138142,9 @@ aad aag aag aag -nic -ppM -ppM +eUf +xjU +xjU hsy fqW qYq @@ -138170,9 +138160,9 @@ mQn wQD fqW hsy -aIh -aIh -nic +jon +jon +eUf aag aag aag @@ -138355,9 +138345,9 @@ aad aag aag aag -nic -aIh -ppM +eUf +jon +xjU hsy hsy hsy @@ -138373,9 +138363,9 @@ hsy hsy hsy hsy -ppM -ppM -nic +xjU +xjU +eUf aag aag aag @@ -138558,11 +138548,11 @@ aad aag aag aag -nic -aIh -ppM -csd -dDJ +eUf +jon +xjU +liF +aBK hsy haz fQn @@ -138574,11 +138564,11 @@ pzM mtZ haz hsy -dDJ -rXH -aIh -aIh -nic +aBK +feZ +jon +jon +eUf aag aag aag @@ -138652,7 +138642,7 @@ aaa cuC cuC jPq -xgm +jZS aqK cuC uiR @@ -138761,11 +138751,11 @@ aad aag aag aag -nic -aIh -aIh -aIh -aIh +eUf +jon +jon +jon +jon hsy haz pLt @@ -138777,11 +138767,11 @@ mZL lOX haz hsy -fpi -aIh -aIh -aIh -nic +gvt +jon +jon +jon +eUf aag aag aag @@ -138964,11 +138954,11 @@ aad aag aag aag -nic -nic -mem -piJ -piJ +eUf +eUf +ydb +hEy +hEy hsy mkI aPS @@ -138980,11 +138970,11 @@ nop aPS ddf hsy -atS -ppM -fZR -nic -nic +wQV +xjU +uSI +eUf +eUf aag aag aag @@ -139168,10 +139158,10 @@ aag aag aag aag -nic -aIh -ppM -sER +eUf +jon +xjU +wri hsy hsy hsy @@ -139183,10 +139173,10 @@ hsy hsy hsy hsy -aIh -aIh -aIh -nic +jon +jon +jon +eUf aag aag aag @@ -139371,25 +139361,25 @@ aag aag aag aag -nic -aIh -ppM -aIh -ppM -puT -aIh -xrg -ppM -ppM -ppM -xrg -aIh -erE -ppM -ppM -ppM -aIh -nic +eUf +jon +xjU +jon +xjU +olk +jon +mdF +xjU +xjU +xjU +mdF +jon +ssH +xjU +xjU +xjU +jon +eUf aag aag aag