diff --git a/code/controllers/subsystem/ticker.dm b/code/controllers/subsystem/ticker.dm
index 20691a1a7723..f265315460e3 100644
--- a/code/controllers/subsystem/ticker.dm
+++ b/code/controllers/subsystem/ticker.dm
@@ -8,6 +8,10 @@ SUBSYSTEM_DEF(ticker)
var/current_state = GAME_STATE_STARTUP //State of current round used by process()
var/force_ending = FALSE //Round was ended by admin intervention
+
+ /// If TRUE, there is no lobby phase, the game starts immediately.
+ var/start_immediately = FALSE
+
var/bypass_checks = FALSE //Bypass mode init checks
var/setup_failed = FALSE //If the setup has failed at any point
var/setup_started = FALSE
@@ -80,6 +84,10 @@ SUBSYSTEM_DEF(ticker)
var/mob/new_player/player = i
if(player.ready) // TODO: port this == PLAYER_READY_TO_PLAY)
++totalPlayersReady
+
+ if(start_immediately)
+ time_left = 0
+
if(time_left < 0 || delay_start)
return
diff --git a/code/controllers/subsystem/vote.dm b/code/controllers/subsystem/vote.dm
index 33967fab1004..2438577a1771 100644
--- a/code/controllers/subsystem/vote.dm
+++ b/code/controllers/subsystem/vote.dm
@@ -525,7 +525,7 @@ GLOBAL_LIST_INIT(possible_vote_types, list(
if(!(params["vote_type"] in GLOB.possible_vote_types))
return
- if(!check_rights(R_ADMIN))
+ if(!check_rights(R_MOD))
var/list/vote_type = GLOB.possible_vote_types[params["vote_type"]]
if(vote_type["admin_only"])
return
diff --git a/code/game/machinery/doors/multi_tile.dm b/code/game/machinery/doors/multi_tile.dm
index f943cd696897..ed2874fc3505 100644
--- a/code/game/machinery/doors/multi_tile.dm
+++ b/code/game/machinery/doors/multi_tile.dm
@@ -569,4 +569,3 @@
icon = 'icons/obj/structures/doors/2x1almayerdoor_glass.dmi'
opacity = FALSE
glass = TRUE
-
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/game/machinery/vending/vendor_types/squad_prep/squad_engineer.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_engineer.dm
index 4053b9294c13..95864404f4e8 100644
--- a/code/game/machinery/vending/vendor_types/squad_prep/squad_engineer.dm
+++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_engineer.dm
@@ -51,7 +51,7 @@ GLOBAL_LIST_INIT(cm_vending_gear_engi, list(
list("ARMORS", 0, null, null, null),
list("M3 B12 Pattern Marine Armor", 24, /obj/item/clothing/suit/storage/marine/medium/leader, null, VENDOR_ITEM_REGULAR),
- list("M4 Pattern Armor", 30, /obj/item/clothing/suit/storage/marine/medium/rto, null, VENDOR_ITEM_REGULAR),
+ list("M4 Pattern Armor", 16, /obj/item/clothing/suit/storage/marine/medium/rto, null, VENDOR_ITEM_REGULAR),
list("RESTRICTED FIREARMS", 0, null, null, null),
list("VP78 Pistol", 8, /obj/item/storage/box/guncase/vp78, null, VENDOR_ITEM_REGULAR),
diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_leader.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_leader.dm
index 845d169a701a..0039d5b03250 100644
--- a/code/game/machinery/vending/vendor_types/squad_prep/squad_leader.dm
+++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_leader.dm
@@ -16,7 +16,7 @@ GLOBAL_LIST_INIT(cm_vending_gear_leader, list(
list("Basic Engineering Supplies", 0, /obj/item/storage/box/kit/engineering_supply_kit, MARINE_CAN_BUY_KIT, VENDOR_ITEM_REGULAR),
list("ARMORS", 0, null, null, null),
- list("M4 Pattern Armor", 30, /obj/item/clothing/suit/storage/marine/medium/rto, null, VENDOR_ITEM_REGULAR),
+ list("M4 Pattern Armor", 16, /obj/item/clothing/suit/storage/marine/medium/rto, null, VENDOR_ITEM_REGULAR),
list("CLOTHING ITEMS", 0, null, null, null),
list("Machete Scabbard (Full)", 4, /obj/item/storage/large_holster/machete/full, null, VENDOR_ITEM_REGULAR),
diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm
index 7d16d15af6fd..b29b528ded13 100644
--- a/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm
+++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_medic.dm
@@ -72,8 +72,8 @@ GLOBAL_LIST_INIT(cm_vending_gear_medic, list(
list("VP78 Magazine", 3, /obj/item/ammo_magazine/pistol/vp78, null, VENDOR_ITEM_REGULAR),
list("ARMORS", 0, null, null, null),
- list("M3 B12 Pattern Marine Armor", 28, /obj/item/clothing/suit/storage/marine/medium/leader, null, VENDOR_ITEM_REGULAR),
- list("M4 Pattern Armor", 28, /obj/item/clothing/suit/storage/marine/medium/rto, null, VENDOR_ITEM_REGULAR),
+ list("M3 B12 Pattern Marine Armor", 24, /obj/item/clothing/suit/storage/marine/medium/leader, null, VENDOR_ITEM_REGULAR),
+ list("M4 Pattern Armor", 16, /obj/item/clothing/suit/storage/marine/medium/rto, null, VENDOR_ITEM_REGULAR),
list("RESTRICTED FIREARMS", 0, null, null, null),
list("VP78 Pistol", 8, /obj/item/storage/box/guncase/vp78, null, VENDOR_ITEM_REGULAR),
diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_rifleman.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_rifleman.dm
index b132d8d4f13d..0b980fc31960 100644
--- a/code/game/machinery/vending/vendor_types/squad_prep/squad_rifleman.dm
+++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_rifleman.dm
@@ -82,13 +82,13 @@ GLOBAL_LIST_INIT(cm_vending_clothing_marine, list(
list("ARMORS", 0, null, null, null),
list("M3 B12 Pattern Marine Armor", 30, /obj/item/clothing/suit/storage/marine/medium/leader, null, VENDOR_ITEM_REGULAR),
- list("M4 Pattern Armor", 30, /obj/item/clothing/suit/storage/marine/medium/rto, null, VENDOR_ITEM_REGULAR),
+ list("M4 Pattern Armor", 20, /obj/item/clothing/suit/storage/marine/medium/rto, null, VENDOR_ITEM_REGULAR),
list("CLOTHING ITEMS", 0, null, null, null),
list("Webbing", 10, /obj/item/clothing/accessory/storage/webbing, null, VENDOR_ITEM_REGULAR),
list("Brown Webbing Vest", 15, /obj/item/clothing/accessory/storage/black_vest/brown_vest, null, VENDOR_ITEM_REGULAR),
list("Black Webbing Vest", 15, /obj/item/clothing/accessory/storage/black_vest, null, VENDOR_ITEM_REGULAR),
- list("Drop Pouch", 15, /obj/item/clothing/accessory/storage/droppouch, null, VENDOR_ITEM_REGULAR),
+ list("Drop Pouch", 10, /obj/item/clothing/accessory/storage/droppouch, null, VENDOR_ITEM_REGULAR),
list("Shoulder Holster", 15, /obj/item/clothing/accessory/storage/holster, null, VENDOR_ITEM_REGULAR),
list("Machete Scabbard (Full)", 15, /obj/item/storage/large_holster/machete/full, null, VENDOR_ITEM_REGULAR),
list("Machete Pouch (Full)", 15, /obj/item/storage/pouch/machete/full, null, VENDOR_ITEM_REGULAR),
diff --git a/code/game/machinery/vending/vendor_types/squad_prep/squad_tl.dm b/code/game/machinery/vending/vendor_types/squad_prep/squad_tl.dm
index a013ddb15212..a70b7046af81 100644
--- a/code/game/machinery/vending/vendor_types/squad_prep/squad_tl.dm
+++ b/code/game/machinery/vending/vendor_types/squad_prep/squad_tl.dm
@@ -33,6 +33,7 @@ GLOBAL_LIST_INIT(cm_vending_gear_tl, list(
list("ARMORS", 0, null, null, null),
list("M3 B12 Pattern Marine Armor", 30, /obj/item/clothing/suit/storage/marine/medium/leader, null, VENDOR_ITEM_REGULAR),
+ list("M4 Pattern Armor", 20, /obj/item/clothing/suit/storage/marine/medium/rto, null, VENDOR_ITEM_REGULAR),
list("CLOTHING ITEMS", 0, null, null, null),
list("Machete Scabbard (Full)", 5, /obj/item/storage/large_holster/machete/full, null, VENDOR_ITEM_REGULAR),
@@ -89,11 +90,15 @@ GLOBAL_LIST_INIT(cm_vending_gear_tl, list(
GLOBAL_LIST_INIT(cm_vending_clothing_tl, list(
list("STANDARD EQUIPMENT (TAKE ALL)", 0, null, null, null),
list("Standard Marine Apparel", 0, list(/obj/item/clothing/under/marine, /obj/item/clothing/shoes/marine/knife, /obj/item/clothing/gloves/marine, /obj/item/device/radio/headset/almayer/marine, /obj/item/clothing/head/helmet/marine/rto), MARINE_CAN_BUY_UNIFORM, VENDOR_ITEM_MANDATORY),
- list("M4 Pattern Armor", 0, /obj/item/clothing/suit/storage/marine/medium/rto, MARINE_CAN_BUY_ARMOR, 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("Essential Fireteam Leader Utilities", 0, /obj/effect/essentials_set/tl, MARINE_CAN_BUY_ESSENTIALS, VENDOR_ITEM_MANDATORY),
+ list("ARMOR (CHOOSE 1)", 0, null, null, null),
+ list("Light Armor", 0, /obj/item/clothing/suit/storage/marine/light, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR),
+ list("Medium Armor", 0, /obj/item/clothing/suit/storage/marine/medium, MARINE_CAN_BUY_ARMOR, VENDOR_ITEM_REGULAR),
+ list("Heavy Armor", 0, /obj/item/clothing/suit/storage/marine/heavy, MARINE_CAN_BUY_ARMOR, 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 Ammo Load Rig", 0, /obj/item/storage/belt/marine, MARINE_CAN_BUY_BELT, VENDOR_ITEM_RECOMMENDED),
diff --git a/code/game/objects/effects/landmarks/survivor_spawner.dm b/code/game/objects/effects/landmarks/survivor_spawner.dm
index 2250ebf3edf2..a22198d3d703 100644
--- a/code/game/objects/effects/landmarks/survivor_spawner.dm
+++ b/code/game/objects/effects/landmarks/survivor_spawner.dm
@@ -144,6 +144,47 @@
spawn_priority = SPAWN_PRIORITY_VERY_HIGH
+/obj/effect/landmark/survivor_spawner/shivas_panic_room_cl
+ equipment = /datum/equipment_preset/survivor/wy/asstmanager
+ synth_equipment = /datum/equipment_preset/synth/survivor/wy/corporate_synth
+ intro_text = list("
You are the last alive Senior Administrator on the Colony!
",\
+ "You are aware of the xenomorph threat.",\
+ "Your primary objective is to survive the outbreak.")
+ story_text = "You are the Assistant Operations Manager stationed on 'Ifrit' by Weyland-Yutani. This whole outbreak has been a giant mess, you and all other Company personnel ran to the Operations Panic Room, until you heard shooting outside and closed the shutters. You are running low on food, water and ammunition for the weapons you one-day said were 'useless' and a waste of Company dollars. You remember that Administrator Stahl sent out a distress beacon to any ship in range, hoping to get picked up by the Company, he ran to the Spaceport. You have not seen him since. In their attempts at trying to breach in, the so called 'xenomorphs' have tried attacking the shutters, but to no avail. They will soon try again. You must survive and find a way to contact Weyland-Yutani."
+
+ spawn_priority = SPAWN_PRIORITY_VERY_HIGH
+
+/obj/effect/landmark/survivor_spawner/shivas_panic_room_doc
+ equipment = /datum/equipment_preset/survivor/doctor
+ synth_equipment = /datum/equipment_preset/synth/survivor/emt_synth
+ intro_text = list("You are a Medical Doctor on the Colony!
",\
+ "You are aware of the xenomorph threat.",\
+ "Your primary objective is to survive the outbreak.")
+ story_text = "You are a Doctor working on 'Ifrit' for Weyland-Yutani. This whole outbreak has been a giant mess, you and all other Company personnel ran to the Operations Panic Room, until you heard shooting outside and closed the shutters. You are running low on food, water and ammunition for the weapons. You remember that the xenomorphs have a sort of implanter which latches on to your face and then... something bursts out of your chest, through the rib cage. You had plenty of those cases at the Medical Bay. In their attempts at trying to breach in, the so called 'xenomorphs' have tried attacking the shutters, but to no avail. They will soon try again. You must survive and find a way to contact Weyland-Yutani."
+
+ spawn_priority = SPAWN_PRIORITY_HIGH
+
+/obj/effect/landmark/survivor_spawner/shivas_panic_room_sci
+ equipment = /datum/equipment_preset/survivor/scientist
+ synth_equipment = /datum/equipment_preset/synth/survivor/scientist_synth
+ intro_text = list("You are a Weyland-Yutani Scientist on the Colony!
",\
+ "You are aware of the xenomorph threat.",\
+ "Your primary objective is to survive the outbreak.")
+ story_text = "You are a Scientist working on 'Ifrit' for Weyland-Yutani. This whole outbreak has been a giant mess, you and all other Company personnel ran to the Operations Panic Room, until you heard shooting outside and closed the shutters. You are running low on food, water and ammunition for the weapons. You remember that the XX-121 species, codenamed that by Research Director Clarke, have a variety of different species, what you can assume a 'leader' of some sort and that their acid is deadly should it come in contact with you or the shutters. You ran far from the labs and have not seen some your coworkers since. In their attempts at trying to breach in, these so called 'xenomorphs' have tried attacking the shutters, but to no avail. They will soon try again. You must survive and find a way to contact Weyland-Yutani."
+
+ spawn_priority = SPAWN_PRIORITY_HIGH
+
+/obj/effect/landmark/survivor_spawner/shivas_panic_room_civ
+ equipment = /datum/equipment_preset/survivor/civilian
+ synth_equipment = /datum/equipment_preset/synth/survivor/chef_synth
+ intro_text = list("You are a worker on the Colony!
",\
+ "You are aware of the xenomorph threat.",\
+ "Your primary objective is to survive the outbreak.")
+ story_text = "You are a civilian working on 'Ifrit' for Weyland-Yutani. This whole outbreak has been a giant mess, you and all other Company personnel ran to the Operations Panic Room, until you heard shooting outside and closed the shutters. You are running low on food, water and ammunition for the weapons. You remember hearing the alarms blaring and decided to run with a couple others to the Panic Room, hoping to be safe from the threat until rescue arrives. Now you wait along with others for their second attack on the Panic Room. In their first attempt at trying to breach in, the so called 'xenomorphs' have tried attacking the shutters, but to no avail. They will soon try again. You must survive and find a way to contact Weyland-Yutani."
+
+ spawn_priority = SPAWN_PRIORITY_MEDIUM
+
+
//Military Survivors//
/obj/effect/landmark/survivor_spawner/lv522_forecon_tech
diff --git a/code/game/objects/items/devices/flashlight.dm b/code/game/objects/items/devices/flashlight.dm
index 58e86998f39a..2af343c8de26 100644
--- a/code/game/objects/items/devices/flashlight.dm
+++ b/code/game/objects/items/devices/flashlight.dm
@@ -238,7 +238,7 @@
desc = "A red USCM issued flare. There are instructions on the side, it reads 'pull cord, make light'."
w_class = SIZE_SMALL
light_power = 2
- light_range = 7
+ light_range = 5
icon_state = "flare"
item_state = "flare"
actions = list() //just pull it manually, neckbeard.
diff --git a/code/game/world.dm b/code/game/world.dm
index 958278042ea5..e55741ca71e5 100644
--- a/code/game/world.dm
+++ b/code/game/world.dm
@@ -374,6 +374,7 @@ GLOBAL_LIST_INIT(reboot_sfx, file2list("config/reboot_sfx.txt"))
/world/proc/HandleTestRun()
// Wait for the game ticker to initialize
Master.sleep_offline_after_initializations = FALSE
+ SSticker.start_immediately = TRUE
UNTIL(SSticker.initialized)
//trigger things to run the whole process
diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm
index e5fd014e5706..749c30d1f7b6 100644
--- a/code/modules/admin/admin_verbs.dm
+++ b/code/modules/admin/admin_verbs.dm
@@ -112,6 +112,7 @@ GLOBAL_LIST_INIT(admin_verbs_minor_event, list(
/client/proc/cmd_admin_change_custom_event,
/datum/admins/proc/admin_force_distress,
/datum/admins/proc/admin_force_ERT_shuttle,
+ /client/proc/enable_event_mob_verbs,
/client/proc/force_hijack,
/datum/admins/proc/force_predator_round, //Force spawns a predator round.
/client/proc/adjust_predator_round,
@@ -142,7 +143,6 @@ GLOBAL_LIST_INIT(admin_verbs_minor_event, list(
))
GLOBAL_LIST_INIT(admin_verbs_major_event, list(
- /client/proc/enable_event_mob_verbs,
/client/proc/cmd_admin_dress_all,
/client/proc/free_all_mobs_in_view,
/client/proc/drop_bomb,
@@ -239,6 +239,7 @@ GLOBAL_LIST_INIT(debug_verbs, list(
))
GLOBAL_LIST_INIT(admin_verbs_possess, list(
+ /client/proc/cmd_assume_direct_control,
/client/proc/possess,
/client/proc/release
))
@@ -263,10 +264,7 @@ GLOBAL_LIST_INIT(admin_mob_event_verbs_hideable, list(
/client/proc/editappear,
/client/proc/cmd_admin_addhud,
/client/proc/cmd_admin_change_their_hivenumber,
- /client/proc/cmd_assume_direct_control,
/client/proc/free_mob_for_ghosts,
- /client/proc/possess,
- /client/proc/release,
/client/proc/cmd_admin_grantfullaccess,
/client/proc/cmd_admin_grantallskills,
/client/proc/admin_create_account
diff --git a/code/modules/admin/verbs/adminhelp.dm b/code/modules/admin/verbs/adminhelp.dm
index 5f10b8d24d22..4b52f03c1ec8 100644
--- a/code/modules/admin/verbs/adminhelp.dm
+++ b/code/modules/admin/verbs/adminhelp.dm
@@ -469,6 +469,11 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new)
/datum/admin_help/proc/Close(key_name = key_name_admin(usr), silent = FALSE)
if(state != AHELP_ACTIVE)
return
+
+ if(marked_admin != usr.key)
+ to_chat(usr, SPAN_WARNING("This ticket is currently marked by [marked_admin]. Please override their mark to interact with this ticket!"))
+ return
+
RemoveActive()
state = AHELP_CLOSED
GLOB.ahelp_tickets.ListInsert(src)
@@ -483,6 +488,11 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new)
/datum/admin_help/proc/Resolve(key_name = key_name_admin(usr), silent = FALSE)
if(state != AHELP_ACTIVE)
return
+
+ if(marked_admin != usr.key)
+ to_chat(usr, SPAN_WARNING("This ticket is currently marked by [marked_admin]. Please override their mark to interact with this ticket!"))
+ return
+
RemoveActive()
state = AHELP_RESOLVED
GLOB.ahelp_tickets.ListInsert(src)
@@ -501,6 +511,10 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new)
if(state != AHELP_ACTIVE || !initial_message)
return
+ if(marked_admin != usr.key)
+ to_chat(usr, SPAN_WARNING("This ticket is currently marked by [marked_admin]. Please override their mark to interact with this ticket!"))
+ return
+
if(!initiator.current_mhelp)
initiator.current_mhelp = new(initiator)
@@ -559,6 +573,10 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new)
if(state != AHELP_ACTIVE)
return
+ if(marked_admin != usr.key)
+ to_chat(usr, SPAN_WARNING("This ticket is currently marked by [marked_admin]. Please override their mark to interact with this ticket!"))
+ return
+
if(initiator)
initiator.giveadminhelpverb()
@@ -582,6 +600,10 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new)
to_chat(usr, SPAN_WARNING("This ticket is already closed!"))
return
+ if(marked_admin != usr.key)
+ to_chat(usr, SPAN_WARNING("This ticket is currently marked by [marked_admin]. Please override their mark to interact with this ticket!"))
+ return
+
var/chosen = tgui_input_list(usr, "Which auto response do you wish to send?", "AutoReply", GLOB.adminreplies)
var/datum/autoreply/admin/response = GLOB.adminreplies[chosen]
diff --git a/code/modules/admin/verbs/adminpm.dm b/code/modules/admin/verbs/adminpm.dm
index e5fed9db2fc4..a9a3a90ff35a 100644
--- a/code/modules/admin/verbs/adminpm.dm
+++ b/code/modules/admin/verbs/adminpm.dm
@@ -60,7 +60,7 @@
var/message_prompt = "Message:"
- if((AH?.opening_responders && length(AH.ticket_interactions) == 1 ) || (AH?.marked_admin && AH?.marked_admin != usr.key) && length(AH.ticket_interactions) == 2)
+ if((AH?.opening_responders && length(AH.ticket_interactions) == 1 ) || ((AH?.marked_admin && AH?.marked_admin != usr.key) && length(AH.ticket_interactions) == 2))
SEND_SOUND(src, sound('sound/machines/buzz-sigh.ogg', volume=30))
message_prompt += "\n\n**This ticket is already being responded to by: [length(AH.opening_responders) ? english_list(AH.opening_responders) : AH.marked_admin]**"
diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm
index ede1cd029d9d..c614b8d4d512 100644
--- a/code/modules/admin/verbs/debug.dm
+++ b/code/modules/admin/verbs/debug.dm
@@ -283,6 +283,8 @@
account_user.mind.store_memory(remembered_info)
account_user.mind.initial_account = generated_account
+ log_admin("[key_name(usr)] has created a new bank account for [key_name(account_user)].")
+
/client/proc/cmd_assume_direct_control(mob/M in GLOB.mob_list)
set name = "Control Mob"
set desc = "Assume control of the mob"
diff --git a/code/modules/clothing/head/helmet.dm b/code/modules/clothing/head/helmet.dm
index adfbfb023309..f1ee7e82d8bc 100644
--- a/code/modules/clothing/head/helmet.dm
+++ b/code/modules/clothing/head/helmet.dm
@@ -511,7 +511,17 @@ GLOBAL_LIST_INIT(allowed_helmet_items, list(
new_action.give_to(user)
return
- if(HAS_TRAIT(attacking_item, TRAIT_TOOL_SCREWDRIVER) && length(inserted_visors))
+ if(HAS_TRAIT(attacking_item, TRAIT_TOOL_SCREWDRIVER))
+ // If there isn't anything to remove, return.
+ if(!length(inserted_visors))
+ // If the user is trying to remove a built-in visor, give them a more helpful failure message.
+ switch(length(built_in_visors))
+ if(1) // Messy plural handling
+ to_chat(user, SPAN_WARNING("The visor on [src] is built-in!"))
+ if(2 to INFINITY)
+ to_chat(user, SPAN_WARNING("The visors on [src] are built-in!"))
+ return
+
if(active_visor)
var/obj/item/device/helmet_visor/temp_visor_holder = active_visor
active_visor = null
diff --git a/code/modules/clothing/suits/marine_armor/ert.dm b/code/modules/clothing/suits/marine_armor/ert.dm
index 17816b93dc15..19009606db35 100644
--- a/code/modules/clothing/suits/marine_armor/ert.dm
+++ b/code/modules/clothing/suits/marine_armor/ert.dm
@@ -482,9 +482,10 @@
flags_inventory = BLOCKSHARPOBJ|SMARTGUN_HARNESS
/obj/item/clothing/suit/storage/CMB
- name = "\improper CMB jacket"
- desc = "A black jacket worn by Colonial Marshals. The back is enscribed with the powerful letters of 'MARSHAL' representing justice, authority, and protection in the outer rim. The laws of the Earth stretch beyond the Sol."
+ name = "\improper CMB Deputy jacket"
+ desc = "A thick and stylish black leather jacket with a Marshal's Deputy badge pinned to it. The back is enscribed with the powerful letters of 'DEPUTY' representing justice, authority, and protection in the outer rim. The laws of the Earth stretch beyond the Sol."
icon_state = "CMB_jacket"
+ item_state = "CMB_jacket"
blood_overlay_type = "coat"
flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS
flags_cold_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_ARMS
@@ -531,6 +532,11 @@
)
pockets.max_storage_space = 8
+/obj/item/clothing/suit/storage/CMB/marshal
+ name = "\improper CMB Marshal jacket"
+ desc = "A thick and stylish black leather jacket with a Marshal's badge pinned to it. The back is enscribed with the powerful letters of 'MARSHAL' representing justice, authority, and protection in the outer rim. The laws of the Earth stretch beyond the Sol."
+ icon_state = "CMB_jacket_marshal"
+ item_state = "CMB_jacket_marshal"
//===========================//HELGHAST - MERCENARY\\================================\\
//=====================================================================\\
diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm
index b5859bb6f2d4..54148d4f7076 100644
--- a/code/modules/clothing/suits/miscellaneous.dm
+++ b/code/modules/clothing/suits/miscellaneous.dm
@@ -143,8 +143,8 @@
valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL)
/obj/item/clothing/suit/storage/apron/overalls
- name = "coveralls"
- desc = "A set of denim overalls."
+ name = "blue coveralls"
+ desc = "A pair of denim overalls. With a large pocket in the front these overalls are popular with workers of all kinds."
icon_state = "overalls"
item_state = "overalls"
flags_armor_protection = BODY_FLAG_CHEST|BODY_FLAG_GROIN|BODY_FLAG_LEGS
@@ -167,6 +167,18 @@
)
valid_accessory_slots = list(ACCESSORY_SLOT_MEDAL)
+/obj/item/clothing/suit/storage/apron/overalls/tan
+ name = "tan coveralls"
+ desc = "A pair of tan overalls. With a large pocket in the front these overalls are popular with workers of all kinds."
+ icon_state = "overalls_tan"
+ item_state = "overalls_tan"
+
+/obj/item/clothing/suit/storage/apron/overalls/red
+ name = "red coveralls"
+ desc = "A pair of reddish-brown overalls. With a large pocket in the front these overalls are popular with workers of all kinds."
+ icon_state = "overalls_red"
+ item_state = "overalls_red"
+
/obj/item/clothing/suit/syndicatefake
name = "red space suit replica"
icon_state = "syndicate"
diff --git a/code/modules/clothing/under/gimmick.dm b/code/modules/clothing/under/gimmick.dm
index d8e0a16fc7a2..793bc0593735 100644
--- a/code/modules/clothing/under/gimmick.dm
+++ b/code/modules/clothing/under/gimmick.dm
@@ -11,6 +11,10 @@
has_sensor = UNIFORM_NO_SENSORS
displays_id = 0
+ item_icons = list(
+ WEAR_BODY = 'icons/mob/humans/onmob/uniform_1.dmi',
+ )
+
//JASON
/obj/item/clothing/under/gimmick/jason
name = "dirty work attire"
diff --git a/code/modules/clothing/under/marine_uniform.dm b/code/modules/clothing/under/marine_uniform.dm
index 3b41b2db02c7..ce0784392e70 100644
--- a/code/modules/clothing/under/marine_uniform.dm
+++ b/code/modules/clothing/under/marine_uniform.dm
@@ -692,6 +692,40 @@
has_sensor = UNIFORM_HAS_SENSORS
sensor_faction = FACTION_COLONIST
+/obj/item/clothing/under/colonist/workwear
+ name = "grey workwear"
+ desc = "A pair of black slacks and a short-sleeve grey workshirt. Standard uniform for Weyland Yutani employees working in colony operations and administration."
+ icon_state = "workwear_grey"
+ worn_state = "workwear_grey"
+
+/obj/item/clothing/under/colonist/workwear/khaki
+ name = "khaki workwear"
+ desc = "A pair of jeans paired with a khaki workshirt. A common pairing among blue-collar workers due to its drab look."
+ icon_state = "workwear_khaki"
+ worn_state = "workwear_khaki"
+ flags_jumpsuit = UNIFORM_SLEEVE_ROLLABLE|UNIFORM_JACKET_REMOVABLE
+
+/obj/item/clothing/under/colonist/workwear/pink
+ name = "pink workwear"
+ desc = "A pair of jeans paired with a pink workshirt. Pink? Your wife might not think so, but such outlandish attire deserves questioning by corporate security. What are you, some kind of free-thinking anarchist?"
+ icon_state = "workwear_pink"
+ worn_state = "workwear_pink"
+ flags_jumpsuit = UNIFORM_SLEEVE_ROLLABLE|UNIFORM_JACKET_REMOVABLE
+
+/obj/item/clothing/under/colonist/workwear/blue
+ name = "blue workwear"
+ desc = "A pair of brown canvas workpants paired with a dark blue workshirt. A common pairing among blue-collar workers."
+ icon_state = "workwear_blue"
+ worn_state = "workwear_blue"
+ flags_jumpsuit = UNIFORM_SLEEVE_ROLLABLE|UNIFORM_JACKET_REMOVABLE
+
+/obj/item/clothing/under/colonist/workwear/green
+ name = "green workwear"
+ desc = "A pair of brown canvas workpants paired with a green workshirt. An common pairing among blue-collar workers."
+ icon_state = "workwear_green"
+ worn_state = "workwear_green"
+ flags_jumpsuit = UNIFORM_SLEEVE_ROLLABLE|UNIFORM_JACKET_REMOVABLE
+
/obj/item/clothing/under/colonist/clf
name = "\improper Colonial Liberation Front uniform"
desc = "A stylish grey-green jumpsuit - standard issue for colonists. This version appears to have the symbol of the Colonial Liberation Front emblazoned in select areas."
@@ -735,6 +769,7 @@
displays_id = FALSE
has_sensor = UNIFORM_HAS_SENSORS
sensor_faction = FACTION_MARINE
+
/obj/item/clothing/under/tshirt/gray_blu
name = "gray T-shirt and jeans"
desc = "A comfortable gray T-shirt and blue jeans."
@@ -755,7 +790,7 @@
/obj/item/clothing/under/CM_uniform
name = "\improper Colonial Marshal uniform"
- desc = "A blue shirt and tan trousers - the official uniform for a Colonial Marshal."
+ desc = "A pair of off-white slacks and a blue button-down shirt with a dark brown tie; the standard uniform of the Colonial Marshals."
icon_state = "marshal"
worn_state = "marshal"
armor_melee = CLOTHING_ARMOR_LOW
@@ -766,7 +801,7 @@
armor_bio = CLOTHING_ARMOR_NONE
armor_rad = CLOTHING_ARMOR_NONE
armor_internaldamage = CLOTHING_ARMOR_LOW
-
+ flags_jumpsuit = UNIFORM_SLEEVE_ROLLABLE|UNIFORM_JACKET_REMOVABLE
/obj/item/clothing/under/liaison_suit
name = "liaison's tan suit"
diff --git a/code/modules/cm_marines/Donator_Items.dm b/code/modules/cm_marines/Donator_Items.dm
index 17669b0157dc..e534997ddd42 100644
--- a/code/modules/cm_marines/Donator_Items.dm
+++ b/code/modules/cm_marines/Donator_Items.dm
@@ -972,8 +972,11 @@
icon_state = null
item_state = null
min_cold_protection_temperature = ICE_PLANET_MIN_COLD_PROT
- //DON'T GRAB STUFF BETWEEN THIS LINE
- //AND THIS LINE
+
+ item_icons = list(
+ WEAR_BODY = 'icons/mob/humans/onmob/uniform_1.dmi',
+ )
+
//END UNIFORM TEMPLATE
/obj/item/clothing/under/marine/fluff/marinemedic //UNUSED
diff --git a/code/modules/cm_marines/dropship_equipment.dm b/code/modules/cm_marines/dropship_equipment.dm
index b162fb7c6a87..cd3c01459b7b 100644
--- a/code/modules/cm_marines/dropship_equipment.dm
+++ b/code/modules/cm_marines/dropship_equipment.dm
@@ -21,6 +21,10 @@
var/skill_required = SKILL_PILOT_TRAINED
var/combat_equipment = TRUE
+/obj/structure/dropship_equipment/Initialize()
+ . = ..()
+ RegisterSignal(src, COMSIG_ATOM_DIR_CHANGE, PROC_REF(on_dir_change))
+
/obj/structure/dropship_equipment/Destroy()
QDEL_NULL(ammo_equipped)
if(linked_shuttle)
@@ -33,8 +37,15 @@
if(linked_console.selected_equipment && linked_console.selected_equipment == src)
linked_console.selected_equipment = null
linked_console = null
+ UnregisterSignal(src, COMSIG_ATOM_DIR_CHANGE)
. = ..()
+/obj/structure/dropship_equipment/proc/on_dir_change(datum/source, old_dir, new_dir)
+ SIGNAL_HANDLER
+ if(old_dir == new_dir)
+ return
+ update_equipment()
+
/obj/structure/dropship_equipment/attack_alien(mob/living/carbon/xenomorph/current_xenomorph)
if(unslashable)
return XENO_NO_DELAY_ACTION
diff --git a/code/modules/gear_presets/cmb.dm b/code/modules/gear_presets/cmb.dm
index ae6544fa3d63..fcacf8bb638a 100644
--- a/code/modules/gear_presets/cmb.dm
+++ b/code/modules/gear_presets/cmb.dm
@@ -162,7 +162,7 @@
new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/revolver/cmb/normalpoint, WEAR_IN_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/holobadge/cord, WEAR_ACCESSORY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/cigarette/cigar, WEAR_FACE)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/CMB, WEAR_JACKET)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/CMB/marshal, WEAR_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/device/binoculars/range, WEAR_IN_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/weapon/telebaton, WEAR_IN_JACKET)
new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/shotgun/pump/dual_tube/cmb/m3717, WEAR_J_STORE)
diff --git a/code/modules/gear_presets/survivors/shivas_snowball/panic_room_insert_shivas.dm b/code/modules/gear_presets/survivors/shivas_snowball/panic_room_insert_shivas.dm
new file mode 100644
index 000000000000..9f1e2c705efb
--- /dev/null
+++ b/code/modules/gear_presets/survivors/shivas_snowball/panic_room_insert_shivas.dm
@@ -0,0 +1,43 @@
+// /obj/effect/landmark/survivor_spawner/shivas_assistant_manager
+// panic_room_insert_shivas.dmm
+
+/datum/equipment_preset/survivor/wy/asstmanager
+ name = "Survivor - Corporate Assistant Manager"
+ flags = EQUIPMENT_PRESET_EXTRA
+ paygrade = PAY_SHORT_WYC7
+ skills = /datum/skills/civilian/survivor/manager
+ assignment = "Assistant Operations Manager"
+ idtype = /obj/item/card/id/silver/clearance_badge/manager
+ faction_group = list(FACTION_WY, FACTION_SURVIVOR)
+ access = list(
+ ACCESS_WY_GENERAL,
+ ACCESS_WY_COLONIAL,
+ ACCESS_WY_MEDICAL,
+ ACCESS_WY_SECURITY,
+ ACCESS_WY_RESEARCH,
+ ACCESS_WY_ARMORY,
+ ACCESS_CIVILIAN_PUBLIC,
+ ACCESS_CIVILIAN_RESEARCH,
+ ACCESS_CIVILIAN_ENGINEERING,
+ ACCESS_CIVILIAN_LOGISTICS,
+ ACCESS_CIVILIAN_BRIG,
+ ACCESS_CIVILIAN_MEDBAY,
+ ACCESS_CIVILIAN_COMMAND,
+ )
+ languages = list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE)
+
+ survivor_variant = CORPORATE_SURVIVOR
+
+/datum/equipment_preset/survivor/wy/asstmanager/load_gear(mob/living/carbon/human/new_human)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/under/suit_jacket/manager(new_human), WEAR_BODY)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/lockable/liaison, WEAR_BACK)
+ new_human.equip_to_slot_or_del(new /obj/item/reagent_container/glass/beaker/vial/random/good(new_human), WEAR_IN_BACK)
+ new_human.equip_to_slot_or_del(new /obj/item/paper/research_notes/grant, WEAR_IN_BACK)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/snow_suit/survivor/parka/navy(new_human), WEAR_JACKET)
+ new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY, WEAR_L_EAR)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/rebreather/scarf(new_human), WEAR_FACE)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/knife, WEAR_FEET)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/head/ushanka(new_human), WEAR_HEAD)
+ new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/full(new_human), WEAR_R_STORE)
+ add_survivor_weapon_civilian(new_human)
+ ..()
diff --git a/code/modules/gear_presets/survivors/solaris/preset_solaris.dm b/code/modules/gear_presets/survivors/solaris/preset_solaris.dm
index 91dd05ef8154..2d0f634a6948 100644
--- a/code/modules/gear_presets/survivors/solaris/preset_solaris.dm
+++ b/code/modules/gear_presets/survivors/solaris/preset_solaris.dm
@@ -6,7 +6,7 @@
/datum/equipment_preset/survivor/trucker/solaris/load_gear(mob/living/carbon/human/new_human)
new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/worker_overalls(new_human), WEAR_BODY)
new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/apron/overalls(new_human), WEAR_JACKET)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/head/soft/red(new_human), WEAR_HEAD)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/head/soft/trucker/red(new_human), WEAR_HEAD)
new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/big(new_human), WEAR_EYES)
..()
diff --git a/code/modules/gear_presets/survivors/trijent/preset_trijent.dm b/code/modules/gear_presets/survivors/trijent/preset_trijent.dm
index f62010539d77..405496d8f496 100644
--- a/code/modules/gear_presets/survivors/trijent/preset_trijent.dm
+++ b/code/modules/gear_presets/survivors/trijent/preset_trijent.dm
@@ -64,7 +64,7 @@
new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/jackboots(new_human), WEAR_FEET)
new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/black(new_human), WEAR_HANDS)
new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/eng(new_human), WEAR_BACK)
- new_human.equip_to_slot_or_del(new /obj/item/clothing/head/hardhat(new_human), WEAR_HEAD)
+ new_human.equip_to_slot_or_del(new /obj/item/clothing/head/soft/trucker(new_human), WEAR_HEAD)
new_human.equip_to_slot_or_del(new /obj/item/tool/weldingtool/hugetank(new_human), WEAR_IN_BACK)
..()
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/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm
index c2fbd6b9d8c4..199df345fb62 100644
--- a/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm
+++ b/code/modules/mob/living/carbon/xenomorph/abilities/praetorian/praetorian_abilities.dm
@@ -129,7 +129,7 @@
// Config
var/max_distance = 7
- var/windup = 7 DECISECONDS
+ var/windup = 8 DECISECONDS
/datum/action/xeno_action/activable/oppressor_punch
name = "Dislocate"
diff --git a/code/modules/reagents/chemistry_machinery/chem_simulator.dm b/code/modules/reagents/chemistry_machinery/chem_simulator.dm
index 8a95e3f3b07e..dd7f008e47d2 100644
--- a/code/modules/reagents/chemistry_machinery/chem_simulator.dm
+++ b/code/modules/reagents/chemistry_machinery/chem_simulator.dm
@@ -380,8 +380,7 @@
relate(C)
if(!C.original_id)
C.original_id = target.data.id
- C.id = encode_reagent(C)
- C.name = C.id
+ encode_reagent(C)
if(C.id in simulations)
//We've already simulated this before, so we don't need to continue
C = GLOB.chemical_reagents_list[C.id]
@@ -577,8 +576,8 @@
var/obj/item/paper/research_report/report = new /obj/item/paper/research_report/(loc)
var/datum/reagent/D = GLOB.chemical_reagents_list[id]
var/datum/asset/asset = get_asset_datum(/datum/asset/simple/paper)
- report.name = "Simulation result for [D.name]"
- report.info += "
Official Company Document
Simulated Synthesis Report
Result for [D.name]
"
+ report.name = "Simulation result for [D.id]"
+ report.info += "
Official Company Document
Simulated Synthesis Report
Result for [D.id]
"
report.generate(D)
report.info += "
This report was automatically printed by the Synthesis Simulator.
The [MAIN_SHIP_NAME], [time2text(world.timeofday, "MM/DD")]/[GLOB.game_year], [worldtime2text()]
\n"
playsound(loc, 'sound/machines/twobeep.ogg', 15, 1)
@@ -590,7 +589,9 @@
var/suffix = " "
for(var/datum/chem_property/P in C.properties)
suffix += P.code+"[P.level]"
- return O.name + suffix
+ C.id = O.name + " " + copytext(md5(suffix),1,3) + suffix //Show random suffix AND real properties on research paper
+ C.name = O.name + " " + copytext(md5(suffix),1,3) //Show ONLY random suffix on health analyzers
+ return
/obj/structure/machinery/chem_simulator/proc/complexity_to_string_list()
var/list/L = list()
diff --git a/code/modules/shuttle/shuttles/dropship.dm b/code/modules/shuttle/shuttles/dropship.dm
index ce9ba7c623bb..557e443f08a2 100644
--- a/code/modules/shuttle/shuttles/dropship.dm
+++ b/code/modules/shuttle/shuttles/dropship.dm
@@ -81,10 +81,12 @@
door_control.add_door(air, "port")
if("aft_door")
door_control.add_door(air, "aft")
+ RegisterSignal(src, COMSIG_ATOM_DIR_CHANGE, PROC_REF(on_dir_change))
/obj/docking_port/mobile/marine_dropship/Destroy(force)
. = ..()
qdel(door_control)
+ UnregisterSignal(src, COMSIG_ATOM_DIR_CHANGE)
/obj/docking_port/mobile/marine_dropship/proc/control_doors(action, direction, force, asynchronous = TRUE)
// its been locked down by the queen
@@ -118,6 +120,12 @@
set_security_level(SEC_LEVEL_RED)
return
+/obj/docking_port/mobile/marine_dropship/proc/on_dir_change(datum/source, old_dir, new_dir)
+ SIGNAL_HANDLER
+ for(var/place in shuttle_areas)
+ for(var/obj/structure/machinery/door/air in place)
+ air.handle_multidoor(old_dir, new_dir)
+
/obj/docking_port/mobile/marine_dropship/alamo
name = "Alamo"
id = DROPSHIP_ALAMO
diff --git a/code/modules/shuttle/shuttles/ert.dm b/code/modules/shuttle/shuttles/ert.dm
index 4c078f3fe6d3..cc6e61f7a26a 100644
--- a/code/modules/shuttle/shuttles/ert.dm
+++ b/code/modules/shuttle/shuttles/ert.dm
@@ -31,9 +31,11 @@
air.breakable = FALSE
air.indestructible = TRUE
air.unacidable = TRUE
+ RegisterSignal(src, COMSIG_ATOM_DIR_CHANGE, PROC_REF(on_dir_change))
/obj/docking_port/mobile/emergency_response/enterTransit()
control_doors("force-lock-launch", force = TRUE, external_only = TRUE)
+ UnregisterSignal(src, COMSIG_ATOM_DIR_CHANGE)
..()
/obj/docking_port/mobile/emergency_response/proc/control_doors(action, force = FALSE, external_only = FALSE)
@@ -77,10 +79,10 @@
air.lock()
air.safe = 1
-/obj/docking_port/mobile/emergency_response/setDir(newdir)
- . = ..()
+/obj/docking_port/mobile/emergency_response/proc/on_dir_change(datum/source, old_dir, new_dir)
+ SIGNAL_HANDLER
for(var/obj/structure/machinery/door/shuttle_door in doors)
- shuttle_door.handle_multidoor()
+ shuttle_door.handle_multidoor(old_dir, new_dir)
// ERT Shuttle 1
/obj/docking_port/mobile/emergency_response/ert1
diff --git a/colonialmarines.dme b/colonialmarines.dme
index f619b2081cf8..c583e4b3bfd0 100644
--- a/colonialmarines.dme
+++ b/colonialmarines.dme
@@ -975,6 +975,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"
@@ -1778,6 +1779,7 @@
#include "code\modules\gear_presets\survivors\lv_624\corporate_dome_insert_lv624.dm"
#include "code\modules\gear_presets\survivors\lv_624\preset_lv.dm"
#include "code\modules\gear_presets\survivors\new_varadero\preset_new_varadero.dm"
+#include "code\modules\gear_presets\survivors\shivas_snowball\panic_room_insert_shivas.dm"
#include "code\modules\gear_presets\survivors\shivas_snowball\preset_shivas_snowball.dm"
#include "code\modules\gear_presets\survivors\solaris\crashlanding-offices_insert_bigred.dm"
#include "code\modules\gear_presets\survivors\solaris\preset_solaris.dm"
diff --git a/html/changelogs/AutoChangeLog-pr-3642.yml b/html/changelogs/AutoChangeLog-pr-3642.yml
new file mode 100644
index 000000000000..35b044b0b37e
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-3642.yml
@@ -0,0 +1,5 @@
+author: "paulrpg,kugamo"
+delete-after: True
+changes:
+ - imageadd: "shuttle rotation sprites added"
+ - maptweak: "escape pods now use new floors"
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-5681.yml b/html/changelogs/AutoChangeLog-pr-5681.yml
new file mode 100644
index 000000000000..ba541a5ba22b
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-5681.yml
@@ -0,0 +1,7 @@
+author: "BadAtThisGame302"
+delete-after: True
+changes:
+ - rscadd: "Added trucker hats to the Solaris and Trijent Trucker survs."
+ - rscadd: "Added the CMB Marshal jacket to the CMB Marshal."
+ - imageadd: "Differentiated the CMB Deputy and CMB Marshal jackets to accurately know which is which. Courtesy of AmoryBlaine."
+ - imageadd: "Added new insulated gloves, coveralls (Tan/Red), updated the blue coveralls, Five Colonist Clothes (Grey/Khaki/Pink/Blue/Green), updated the Orange/Blue/Black hazard vests and updated the CMB Uniform and Cap. Courtesy of AmoryBlaine."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-5698.yml b/html/changelogs/AutoChangeLog-pr-5698.yml
new file mode 100644
index 000000000000..39ceb86101f2
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-5698.yml
@@ -0,0 +1,7 @@
+author: "Huffie56"
+delete-after: True
+changes:
+ - balance: "set base price for B12 to 30 and for the M4 to 20."
+ - balance: "Medic comtech and SL have a discount of 20% for the B12 and M4. (B12=24 & M4=16=)"
+ - balance: "removed the free M4 for FTL but added FTL the option to buy it for 20."
+ - balance: "changed the price of Drop Pouch from 15 to 10."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-5738.yml b/html/changelogs/AutoChangeLog-pr-5738.yml
new file mode 100644
index 000000000000..206e2fa3e6c7
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-5738.yml
@@ -0,0 +1,4 @@
+author: "Megaddd"
+delete-after: True
+changes:
+ - balance: "health analyzer no longer shows large custom research chem property text rows."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-5749.yml b/html/changelogs/AutoChangeLog-pr-5749.yml
new file mode 100644
index 000000000000..c3786e33bfdc
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-5749.yml
@@ -0,0 +1,6 @@
+author: "Huffie56"
+delete-after: True
+changes:
+ - rscadd: "adding vendor for maintenance technician."
+ - code_imp: "remove some item that maintenance technician spawned with and put them in is vendor instead."
+ - maptweak: "replaced secured closet by vendor for maintenance technician."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-5759.yml b/html/changelogs/AutoChangeLog-pr-5759.yml
new file mode 100644
index 000000000000..29bc5a8fdabc
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-5759.yml
@@ -0,0 +1,4 @@
+author: "InsaneRed"
+delete-after: True
+changes:
+ - balance: "Oppressor tailhook is now 8 deciseconds instead of 7."
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-5792.yml b/html/changelogs/AutoChangeLog-pr-5792.yml
deleted file mode 100644
index da482c895c07..000000000000
--- a/html/changelogs/AutoChangeLog-pr-5792.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-author: "SpartanBobby"
-delete-after: True
-changes:
- - maptweak: "Edits to southyard sci-annex"
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-5800.yml b/html/changelogs/AutoChangeLog-pr-5800.yml
new file mode 100644
index 000000000000..ea11b03f077c
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-5800.yml
@@ -0,0 +1,4 @@
+author: "BadAtThisGame302"
+delete-after: True
+changes:
+ - mapadd: "added a new nightmare insert in the Operations Panic Room on Shivas"
\ No newline at end of file
diff --git a/html/changelogs/AutoChangeLog-pr-5804.yml b/html/changelogs/AutoChangeLog-pr-5804.yml
new file mode 100644
index 000000000000..5b044fa988cb
--- /dev/null
+++ b/html/changelogs/AutoChangeLog-pr-5804.yml
@@ -0,0 +1,4 @@
+author: "SabreML"
+delete-after: True
+changes:
+ - qol: "Added a failure message when trying to remove a built-in helmet visor."
\ No newline at end of file
diff --git a/html/changelogs/archive/2024-02.yml b/html/changelogs/archive/2024-02.yml
index 6b3b809713e2..55ddb5e6146d 100644
--- a/html/changelogs/archive/2024-02.yml
+++ b/html/changelogs/archive/2024-02.yml
@@ -387,3 +387,15 @@
botony caves flanks ands removes some ledges from combat routes
- maptweak: Edits to southwest dorms LV522
- maptweak: Redetails bigred Libary
+2024-02-26:
+ Mister-moon1:
+ - balance: Reverted flare range buff 7->5 tiles
+ SpartanBobby:
+ - maptweak: Edits to southyard sci-annex
+ harryob:
+ - admin: marking a ticket now actually stops other people from messing with your
+ marked ticket
+ realforest2001:
+ - admin: Mods can now run votes where appropriate.
+ - admin: Moved a few event verbs from Admin level to Senior Mod.
+ - admin: Added a log to creating new bank accounts.
diff --git a/icons/mob/humans/onmob/hands.dmi b/icons/mob/humans/onmob/hands.dmi
index 83bf9960ad12..923a417f4f89 100644
Binary files a/icons/mob/humans/onmob/hands.dmi and b/icons/mob/humans/onmob/hands.dmi differ
diff --git a/icons/mob/humans/onmob/head_1.dmi b/icons/mob/humans/onmob/head_1.dmi
index e69c0191042f..a88f9c59739c 100644
Binary files a/icons/mob/humans/onmob/head_1.dmi and b/icons/mob/humans/onmob/head_1.dmi differ
diff --git a/icons/mob/humans/onmob/suit_0.dmi b/icons/mob/humans/onmob/suit_0.dmi
index de2595e261f0..737b59f6c4af 100644
Binary files a/icons/mob/humans/onmob/suit_0.dmi and b/icons/mob/humans/onmob/suit_0.dmi differ
diff --git a/icons/mob/humans/onmob/uniform_0.dmi b/icons/mob/humans/onmob/uniform_0.dmi
index 0613b6e66623..9126bfccb699 100644
Binary files a/icons/mob/humans/onmob/uniform_0.dmi and b/icons/mob/humans/onmob/uniform_0.dmi differ
diff --git a/icons/mob/humans/onmob/uniform_1.dmi b/icons/mob/humans/onmob/uniform_1.dmi
index 12f4d104c2f0..70455716c477 100644
Binary files a/icons/mob/humans/onmob/uniform_1.dmi and b/icons/mob/humans/onmob/uniform_1.dmi differ
diff --git a/icons/obj/items/clothing/cm_hats.dmi b/icons/obj/items/clothing/cm_hats.dmi
index ae311984e2c3..5e32ccfca3bf 100644
Binary files a/icons/obj/items/clothing/cm_hats.dmi and b/icons/obj/items/clothing/cm_hats.dmi differ
diff --git a/icons/obj/items/clothing/gloves.dmi b/icons/obj/items/clothing/gloves.dmi
index f1fe9b303046..b290778d2d28 100644
Binary files a/icons/obj/items/clothing/gloves.dmi and b/icons/obj/items/clothing/gloves.dmi differ
diff --git a/icons/obj/items/clothing/suits.dmi b/icons/obj/items/clothing/suits.dmi
index cf23d265181f..5057a89fe278 100644
Binary files a/icons/obj/items/clothing/suits.dmi and b/icons/obj/items/clothing/suits.dmi differ
diff --git a/icons/obj/items/clothing/uniforms.dmi b/icons/obj/items/clothing/uniforms.dmi
index bf8e5831607c..42a925ef71ea 100644
Binary files a/icons/obj/items/clothing/uniforms.dmi and b/icons/obj/items/clothing/uniforms.dmi differ
diff --git a/icons/obj/structures/doors/dropship1_cargo.dmi b/icons/obj/structures/doors/dropship1_cargo.dmi
index 699a3cc13b9f..be517592324f 100644
Binary files a/icons/obj/structures/doors/dropship1_cargo.dmi and b/icons/obj/structures/doors/dropship1_cargo.dmi differ
diff --git a/icons/obj/structures/doors/dropship1_pilot.dmi b/icons/obj/structures/doors/dropship1_pilot.dmi
index 776882a136e4..0ae55add9966 100644
Binary files a/icons/obj/structures/doors/dropship1_pilot.dmi and b/icons/obj/structures/doors/dropship1_pilot.dmi differ
diff --git a/icons/obj/structures/doors/dropship1_side.dmi b/icons/obj/structures/doors/dropship1_side.dmi
index 346811438914..7f3298d69975 100644
Binary files a/icons/obj/structures/doors/dropship1_side.dmi and b/icons/obj/structures/doors/dropship1_side.dmi differ
diff --git a/icons/obj/structures/doors/dropship2_cargo.dmi b/icons/obj/structures/doors/dropship2_cargo.dmi
index 4e2ebfe0e3d2..f6bd23184889 100644
Binary files a/icons/obj/structures/doors/dropship2_cargo.dmi and b/icons/obj/structures/doors/dropship2_cargo.dmi differ
diff --git a/icons/obj/structures/doors/dropship2_pilot.dmi b/icons/obj/structures/doors/dropship2_pilot.dmi
index 9a77adf39f70..226249be4d84 100644
Binary files a/icons/obj/structures/doors/dropship2_pilot.dmi and b/icons/obj/structures/doors/dropship2_pilot.dmi differ
diff --git a/icons/obj/structures/doors/dropship2_side.dmi b/icons/obj/structures/doors/dropship2_side.dmi
index 03c0492d7df9..8dfa437d6521 100644
Binary files a/icons/obj/structures/doors/dropship2_side.dmi and b/icons/obj/structures/doors/dropship2_side.dmi differ
diff --git a/icons/obj/structures/props/almayer_props64.dmi b/icons/obj/structures/props/almayer_props64.dmi
index c45b37d6ef15..f47f19be9081 100644
Binary files a/icons/obj/structures/props/almayer_props64.dmi and b/icons/obj/structures/props/almayer_props64.dmi differ
diff --git a/icons/turf/dropship.dmi b/icons/turf/dropship.dmi
index b3cf56eb4549..e4261344ebba 100644
Binary files a/icons/turf/dropship.dmi and b/icons/turf/dropship.dmi differ
diff --git a/icons/turf/dropship2.dmi b/icons/turf/dropship2.dmi
index 754c20d9ead4..53a44fe75b71 100644
Binary files a/icons/turf/dropship2.dmi and b/icons/turf/dropship2.dmi differ
diff --git a/icons/turf/ert_shuttle.dmi b/icons/turf/ert_shuttle.dmi
index befed9f547b7..39018d4f1611 100644
Binary files a/icons/turf/ert_shuttle.dmi and b/icons/turf/ert_shuttle.dmi differ
diff --git a/icons/turf/escapepods.dmi b/icons/turf/escapepods.dmi
index 089db3cd3e19..96aa67789bb1 100644
Binary files a/icons/turf/escapepods.dmi and b/icons/turf/escapepods.dmi differ
diff --git a/maps/Nightmare/maps/Ice_Colony_v3/nightmare.json b/maps/Nightmare/maps/Ice_Colony_v3/nightmare.json
index 9c3008696d3a..301ffa337115 100644
--- a/maps/Nightmare/maps/Ice_Colony_v3/nightmare.json
+++ b/maps/Nightmare/maps/Ice_Colony_v3/nightmare.json
@@ -96,5 +96,12 @@
"landmark": "lz2-north",
"path": "lz2-variations/north/full-closed.dmm",
"when": { "lz2-north": "full" }
- }
+ },
+ {
+ "type": "map_insert",
+ "landmark": "panic_room",
+ "chance": 0.5,
+ "path": "standalone/panic_room_hold.dmm",
+ "when": { "panic_room": "full" }
+ }
]
diff --git a/maps/Nightmare/maps/Ice_Colony_v3/scenario.json b/maps/Nightmare/maps/Ice_Colony_v3/scenario.json
index 414bbcb15abc..4b4eb7b6b92f 100644
--- a/maps/Nightmare/maps/Ice_Colony_v3/scenario.json
+++ b/maps/Nightmare/maps/Ice_Colony_v3/scenario.json
@@ -8,6 +8,13 @@
{ "weight": 1, "type": "def", "values": { "lz2-southwest": "half", "lz2-south-gate": "none", "lz2-southeast": "half", "lz2-eastsouth": "full", "lz2-southeast-gate": "full", "lz2-east": "none", "lz2-east-gate": "half", "lz2-north": "none"} },
{ "weight": 1, "type": "def", "values": { "lz2-southwest": "full", "lz2-south-gate": "none", "lz2-southeast": "half", "lz2-eastsouth": "none", "lz2-southeast-gate": "open", "lz2-east": "full", "lz2-east-gate": "none", "lz2-north": "open"} }
]
+},
+{
+ "type": "pick", "name": "Panic Room",
+ "choices": [
+ { "weight": 10, "type": "def", "values": { "panic_room": "none"} },
+ { "weight": 3, "type": "def", "values": { "panic_room": "full"} }
+ ]
}
]
diff --git a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm
index e5c8e3e13c69..7ff89252a916 100644
--- a/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm
+++ b/maps/map_files/Ice_Colony_v3/Shivas_Snowball.dmm
@@ -7035,6 +7035,17 @@
},
/turf/open/floor/plating,
/area/shiva/interior/aerodrome)
+"bws" = (
+/obj/structure/surface/rack,
+/obj/item/fuel_cell,
+/obj/item/fuel_cell,
+/obj/item/fuel_cell,
+/obj/item/fuel_cell,
+/turf/open/floor/shiva{
+ dir = 10;
+ icon_state = "yellow"
+ },
+/area/shiva/interior/garage)
"bwJ" = (
/turf/open/floor/shiva{
dir = 4;
@@ -7260,12 +7271,6 @@
/obj/item/device/motiondetector/hacked,
/turf/open/floor/shiva,
/area/shiva/interior/colony/research_hab)
-"bIP" = (
-/obj/structure/machinery/power/reactor/colony,
-/turf/open/floor/shiva{
- dir = 1
- },
-/area/shiva/interior/garage)
"bIV" = (
/turf/open/auto_turf/snow/layer1,
/area/shiva/exterior/junkyard/cp_bar)
@@ -10094,6 +10099,12 @@
icon_state = "yellow"
},
/area/shiva/interior/colony/medseceng)
+"ffg" = (
+/obj/effect/landmark/nightmare{
+ insert_tag = "panic_room"
+ },
+/turf/open/auto_turf/snow/layer3,
+/area/shiva/exterior/junkyard)
"ffj" = (
/turf/closed/shuttle/elevator{
dir = 10
@@ -10105,6 +10116,14 @@
icon_state = "yellow"
},
/area/shiva/interior/lz2_habs)
+"ffo" = (
+/obj/structure/surface/rack,
+/obj/item/fuel_cell,
+/obj/item/fuel_cell,
+/turf/open/floor/shiva{
+ icon_state = "yellow"
+ },
+/area/shiva/interior/garage)
"ffw" = (
/obj/effect/landmark/xeno_spawn,
/turf/open/floor/shiva{
@@ -10768,14 +10787,6 @@
/obj/structure/window/framed/shiva,
/turf/open/floor/plating,
/area/shiva/interior/colony/research_hab)
-"fNR" = (
-/obj/structure/surface/rack,
-/obj/item/fuel_cell,
-/obj/item/fuel_cell,
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
-/area/shiva/interior/garage)
"fOa" = (
/obj/item/lightstick/red/spoke/planted{
pixel_x = -11
@@ -10911,13 +10922,6 @@
icon_state = "floor3"
},
/area/shiva/interior/aerodrome)
-"fWJ" = (
-/obj/structure/machinery/power/reactor/colony,
-/turf/open/floor/shiva{
- dir = 8;
- icon_state = "yellowfull"
- },
-/area/shiva/interior/lz2_habs)
"fXp" = (
/obj/structure/prop/invuln{
desc = "The mounting points are ground down from heavy use. They'll need some maintenance work before they can be used again.";
@@ -11956,17 +11960,6 @@
dir = 1
},
/area/shiva/interior/colony/central)
-"hat" = (
-/obj/structure/surface/rack,
-/obj/item/fuel_cell,
-/obj/item/fuel_cell,
-/obj/item/fuel_cell,
-/obj/item/fuel_cell,
-/turf/open/floor/shiva{
- dir = 10;
- icon_state = "yellow"
- },
-/area/shiva/interior/garage)
"hbo" = (
/obj/structure/platform/strata,
/turf/open/auto_turf/ice/layer1,
@@ -12028,13 +12021,6 @@
icon_state = "wred"
},
/area/shiva/interior/colony/medseceng)
-"hgk" = (
-/obj/structure/machinery/fuelcell_recycler/full,
-/turf/open/floor/shiva{
- dir = 6;
- icon_state = "yellow"
- },
-/area/shiva/interior/garage)
"hgI" = (
/obj/structure/flora/bush/ausbushes/lavendergrass,
/turf/open/auto_turf/snow/layer2,
@@ -14767,10 +14753,6 @@
icon_state = "floor3"
},
/area/shiva/exterior/lz2_fortress)
-"jTR" = (
-/obj/structure/machinery/power/reactor/colony,
-/turf/open/floor/plating,
-/area/shiva/interior/colony/medseceng)
"jTT" = (
/obj/structure/flora/grass/tallgrass/ice/corner{
dir = 6
@@ -18191,6 +18173,10 @@
},
/turf/open/auto_turf/snow/layer3,
/area/shiva/interior/colony/medseceng)
+"npM" = (
+/obj/structure/machinery/power/reactor/colony,
+/turf/open/floor/plating,
+/area/shiva/interior/colony/medseceng)
"npY" = (
/obj/structure/inflatable,
/turf/open/auto_turf/snow/layer3,
@@ -18446,6 +18432,13 @@
/obj/structure/machinery/space_heater,
/turf/open/auto_turf/ice/layer1,
/area/shiva/interior/warehouse/caves)
+"nED" = (
+/obj/structure/machinery/power/reactor/colony,
+/turf/open/floor/shiva{
+ dir = 8;
+ icon_state = "yellowfull"
+ },
+/area/shiva/interior/lz2_habs)
"nEH" = (
/obj/effect/landmark/monkey_spawn,
/obj/effect/decal/warning_stripes{
@@ -18544,6 +18537,12 @@
},
/turf/open/floor/wood,
/area/shiva/interior/bar)
+"nJu" = (
+/obj/structure/machinery/fuelcell_recycler/full,
+/turf/open/floor/shiva{
+ icon_state = "yellow"
+ },
+/area/shiva/interior/garage)
"nKc" = (
/obj/structure/machinery/door/airlock/almayer/medical/colony{
dir = 1;
@@ -19331,6 +19330,13 @@
},
/turf/open/auto_turf/snow/layer2,
/area/shiva/exterior/cp_lz2)
+"oDJ" = (
+/obj/structure/machinery/fuelcell_recycler/full,
+/turf/open/floor/shiva{
+ dir = 6;
+ icon_state = "yellow"
+ },
+/area/shiva/interior/garage)
"oDM" = (
/turf/open/floor/shiva{
dir = 10;
@@ -27212,12 +27218,6 @@
},
/turf/open/floor/plating,
/area/shiva/interior/colony/research_hab)
-"wZO" = (
-/obj/structure/machinery/fuelcell_recycler/full,
-/turf/open/floor/shiva{
- icon_state = "yellow"
- },
-/area/shiva/interior/garage)
"wZW" = (
/obj/structure/bed,
/turf/open/floor/wood,
@@ -27285,6 +27285,12 @@
/obj/effect/landmark/objective_landmark/medium,
/turf/open/floor/wood,
/area/shiva/interior/colony/botany)
+"xdk" = (
+/obj/structure/machinery/power/reactor/colony,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/garage)
"xdT" = (
/obj/structure/surface/table,
/obj/effect/spawner/random/toolbox,
@@ -37097,7 +37103,7 @@ puZ
puZ
puZ
anc
-fWJ
+nED
mCn
uRi
xQJ
@@ -37421,7 +37427,7 @@ puZ
puZ
puZ
anc
-fWJ
+nED
mCn
cce
xQJ
@@ -37745,7 +37751,7 @@ puZ
puZ
puZ
anc
-fWJ
+nED
mCn
cce
xQJ
@@ -43668,7 +43674,7 @@ tHd
tHd
jMf
tHd
-jMf
+ffg
tHd
jMf
ofw
@@ -53212,7 +53218,7 @@ ver
ver
ver
fEO
-hat
+bws
ktd
bFg
bIV
@@ -53374,7 +53380,7 @@ ver
ver
ver
ver
-fNR
+ffo
ktd
cZk
bIV
@@ -54184,7 +54190,7 @@ aAh
ver
ver
ver
-wZO
+nJu
ktd
cZk
bFg
@@ -54346,7 +54352,7 @@ ver
ver
ver
pNf
-hgk
+oDJ
ktd
gJo
lTc
@@ -54987,11 +54993,11 @@ oQl
oQl
oQl
ktd
-bIP
+xdk
tXd
aAh
pSD
-bIP
+xdk
ktd
oQl
oQl
@@ -55149,11 +55155,11 @@ oQl
oQl
oQl
ktd
-bIP
+xdk
ush
vUL
aCA
-bIP
+xdk
ktd
oQl
oQl
@@ -55312,9 +55318,9 @@ oQl
oQl
ktd
ktd
-bIP
-bIP
-bIP
+xdk
+xdk
+xdk
ktd
ktd
oQl
@@ -58331,16 +58337,16 @@ acT
qDT
eAZ
acT
-jTR
+npM
cso
agh
-jTR
-jTR
-jTR
-jTR
+npM
+npM
+npM
+npM
agh
cso
-jTR
+npM
acT
aii
agh
@@ -58493,7 +58499,7 @@ aDn
eAZ
eAZ
aDn
-jTR
+npM
cso
agh
cso
@@ -58502,7 +58508,7 @@ cso
cso
agh
cso
-jTR
+npM
acT
acT
aii
@@ -58658,10 +58664,10 @@ aek
eXL
cso
agh
-jTR
-jTR
-jTR
-jTR
+npM
+npM
+npM
+npM
agh
cso
qdd
diff --git a/maps/map_files/Ice_Colony_v3/standalone/panic_room_hold.dmm b/maps/map_files/Ice_Colony_v3/standalone/panic_room_hold.dmm
new file mode 100644
index 000000000000..15ec0c4e099d
--- /dev/null
+++ b/maps/map_files/Ice_Colony_v3/standalone/panic_room_hold.dmm
@@ -0,0 +1,2547 @@
+//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
+"ai" = (
+/obj/structure/largecrate/random/barrel/red,
+/turf/open/auto_turf/snow/layer2,
+/area/shiva/exterior/junkyard/cp_bar)
+"aq" = (
+/obj/structure/window_frame/colony/reinforced,
+/obj/item/stack/rods,
+/turf/open/floor/plating,
+/area/shiva/interior/colony/s_admin)
+"aH" = (
+/obj/item/tool/pen/blue{
+ pixel_x = 5
+ },
+/obj/effect/decal/cleanable/blood{
+ icon_state = "gib6"
+ },
+/turf/open/floor/wood,
+/area/shiva/interior/colony/s_admin)
+"ba" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/structure/machinery/alarm{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/effect/landmark/crap_item,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"bi" = (
+/obj/item/reagent_container/food/drinks/cans/waterbottle{
+ pixel_x = -5;
+ pixel_y = 12
+ },
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"bI" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/paper_bin,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"ce" = (
+/turf/closed/wall/shiva/prefabricated/reinforced,
+/area/shiva/interior/colony/s_admin)
+"ch" = (
+/obj/item/lightstick/red/spoke/planted{
+ pixel_x = 11;
+ pixel_y = 20
+ },
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/bar)
+"cv" = (
+/obj/structure/machinery/alarm{
+ dir = 4;
+ pixel_x = -24
+ },
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"cL" = (
+/obj/item/prop/colony/folded_bedroll,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"cO" = (
+/turf/open/floor/shiva{
+ dir = 6;
+ icon_state = "multi_tiles"
+ },
+/area/shiva/interior/colony/s_admin)
+"cS" = (
+/turf/closed/wall/shiva/prefabricated/reinforced,
+/area/shiva/interior/bar)
+"cY" = (
+/obj/structure/window/reinforced/tinted{
+ dir = 8
+ },
+/obj/item/shard{
+ icon_state = "large"
+ },
+/obj/item/frame/table/reinforced,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"dg" = (
+/obj/structure/barricade/metal{
+ dir = 1;
+ health = 210
+ },
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"do" = (
+/obj/effect/spawner/gibspawner/xeno,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"dv" = (
+/obj/item/ammo_magazine/rifle/m16,
+/obj/structure/closet/secure_closet/guncabinet/wy,
+/turf/open/floor/shiva{
+ dir = 8;
+ icon_state = "redfull"
+ },
+/area/shiva/interior/colony/s_admin)
+"dF" = (
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"eO" = (
+/obj/structure/barricade/wooden{
+ dir = 1
+ },
+/turf/open/floor/shiva{
+ dir = 8;
+ icon_state = "multi_tiles"
+ },
+/area/shiva/interior/colony/s_admin)
+"eZ" = (
+/turf/open/floor/shiva{
+ dir = 8;
+ icon_state = "redfull"
+ },
+/area/shiva/interior/colony/s_admin)
+"ff" = (
+/obj/structure/barricade/wooden{
+ dir = 4;
+ pixel_y = 4
+ },
+/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot,
+/turf/open/floor/wood,
+/area/shiva/interior/colony/s_admin)
+"fj" = (
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"fx" = (
+/obj/structure/stairs/perspective{
+ icon_state = "p_stair_full"
+ },
+/obj/effect/decal/cleanable/blood{
+ layer = 3
+ },
+/obj/effect/landmark/corpsespawner/doctor,
+/turf/open/floor/shiva{
+ dir = 6;
+ icon_state = "multi_tiles"
+ },
+/area/shiva/interior/bar)
+"fM" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ name = "\improper Panic Room Shutters";
+ id = "south_panicroom"
+ },
+/turf/open/floor/shiva,
+/area/shiva/interior/colony/s_admin)
+"fR" = (
+/turf/open/floor/wood,
+/area/shiva/interior/colony/s_admin)
+"fT" = (
+/obj/effect/decal/cleanable/vomit,
+/turf/open/floor/shiva{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/shiva/interior/colony/botany)
+"gf" = (
+/obj/structure/closet/crate/freezer,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"gh" = (
+/obj/structure/noticeboard{
+ pixel_y = 32
+ },
+/obj/item/ammo_magazine/rifle/extended{
+ current_rounds = 0
+ },
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"gk" = (
+/obj/effect/decal/cleanable/blood/oil,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/shiva/interior/colony/s_admin)
+"gn" = (
+/obj/structure/machinery/computer/cameras/wooden_tv{
+ pixel_y = 7
+ },
+/obj/structure/surface/table/reinforced/prison,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"gB" = (
+/obj/structure/surface/table,
+/obj/item/weapon/gun/rifle/m16,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"gL" = (
+/obj/structure/bed/bedroll,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"gO" = (
+/obj/structure/window/reinforced/tinted{
+ dir = 8
+ },
+/obj/structure/machinery/computer/communications{
+ dir = 4
+ },
+/obj/structure/surface/table/reinforced/prison,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"gR" = (
+/obj/item/stack/rods,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"hN" = (
+/obj/item/ammo_casing,
+/turf/open/floor/shiva{
+ dir = 6;
+ icon_state = "multi_tiles"
+ },
+/area/shiva/interior/colony/s_admin)
+"iF" = (
+/obj/item/weapon/gun/shotgun/pump/dual_tube/cmb,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"iS" = (
+/obj/structure/filingcabinet,
+/obj/item/paper/research_notes,
+/obj/effect/landmark/objective_landmark/close,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"iZ" = (
+/obj/item/weapon/gun/rifle/m16,
+/obj/structure/closet/secure_closet/guncabinet/wy,
+/turf/open/floor/shiva{
+ dir = 8;
+ icon_state = "redfull"
+ },
+/area/shiva/interior/colony/s_admin)
+"js" = (
+/obj/item/stack/rods,
+/turf/open/floor/shiva{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/shiva/interior/colony/botany)
+"jE" = (
+/obj/effect/acid_hole{
+ dir = 4
+ },
+/turf/closed/wall/shiva/prefabricated,
+/area/shiva/interior/colony/s_admin)
+"jK" = (
+/obj/structure/flora/bush/snow{
+ icon_state = "snowgrassall_1"
+ },
+/turf/open/auto_turf/snow/layer3,
+/area/shiva/exterior/junkyard)
+"jL" = (
+/obj/structure/machinery/alarm{
+ dir = 4;
+ pixel_x = -24
+ },
+/turf/open/floor/wood,
+/area/shiva/interior/colony/s_admin)
+"jP" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/clothing/head/soft/sec/corp{
+ pixel_y = 10
+ },
+/obj/item/tool/stamp/hos,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"ky" = (
+/obj/item/reagent_container/food/drinks/cans/waterbottle{
+ pixel_x = 10;
+ pixel_y = 16
+ },
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"kB" = (
+/obj/structure/bed/bedroll,
+/obj/effect/landmark/survivor_spawner/shivas_panic_room_doc,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"kP" = (
+/obj/structure/surface/table/woodentable{
+ dir = 1;
+ flipped = 1
+ },
+/obj/structure/machinery/computer/objective,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"kT" = (
+/obj/item/stack/folding_barricade,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"lb" = (
+/obj/structure/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/structure/filingcabinet/chestdrawer,
+/obj/effect/landmark/objective_landmark/close,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"lq" = (
+/obj/item/ammo_magazine/rifle{
+ current_rounds = 0
+ },
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"lP" = (
+/obj/effect/landmark/corpsespawner/wygoon,
+/obj/effect/decal/cleanable/blood{
+ layer = 3
+ },
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"lQ" = (
+/obj/structure/window/reinforced/tinted{
+ dir = 8
+ },
+/obj/structure/window/reinforced/tinted{
+ dir = 1
+ },
+/obj/item/paper_bin,
+/obj/item/tool/pen/blue,
+/obj/structure/surface/table/reinforced/prison,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"mC" = (
+/obj/structure/machinery/power/apc{
+ dir = 8;
+ start_charge = 0
+ },
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"mI" = (
+/obj/item/shard{
+ icon_state = "medium"
+ },
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"ne" = (
+/turf/open/auto_turf/snow/layer3,
+/area/shiva/exterior/junkyard/cp_bar)
+"ng" = (
+/obj/effect/decal/cleanable/blood/gibs/xeno/limb,
+/turf/open/floor/plating,
+/area/shiva/interior/colony/s_admin)
+"nh" = (
+/obj/structure/window/framed/shiva,
+/turf/open/floor/plating,
+/area/shiva/interior/colony/s_admin)
+"ns" = (
+/obj/structure/surface/table,
+/obj/item/weapon/gun/rifle/ar10,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"ob" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/reagent_container/food/drinks/cans/ale{
+ pixel_x = -7;
+ pixel_y = 3
+ },
+/obj/item/reagent_container/food/drinks/cans/ale{
+ pixel_y = 10
+ },
+/obj/item/reagent_container/food/drinks/cans/ale{
+ pixel_x = 7;
+ pixel_y = 4
+ },
+/obj/item/reagent_container/food/drinks/cans/ale,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"of" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ name = "\improper Panic Room Shutters";
+ id = "north_panicroom"
+ },
+/turf/open/floor/plating,
+/area/shiva/interior/colony/s_admin)
+"ov" = (
+/obj/item/trash/buritto,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"oH" = (
+/obj/structure/machinery/light/double,
+/turf/open/floor/shiva{
+ icon_state = "green"
+ },
+/area/shiva/interior/colony/botany)
+"oT" = (
+/obj/item/shard{
+ icon_state = "large"
+ },
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"oY" = (
+/obj/structure/closet/crate/secure/weyland,
+/obj/effect/landmark/objective_landmark/science,
+/obj/effect/landmark/objective_landmark/medium,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"pz" = (
+/obj/item/weapon/gun/boltaction,
+/turf/open/floor/shiva{
+ dir = 8;
+ icon_state = "redfull"
+ },
+/area/shiva/interior/colony/s_admin)
+"pC" = (
+/obj/structure/machinery/disposal,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"pG" = (
+/obj/structure/filingcabinet,
+/obj/effect/landmark/objective_landmark/close,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"pQ" = (
+/turf/open/auto_turf/snow/layer1,
+/area/shiva/exterior/junkyard)
+"pS" = (
+/obj/structure/filingcabinet,
+/obj/effect/landmark/objective_landmark/close,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"pV" = (
+/obj/effect/decal/cleanable/blood/xeno,
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/shiva/interior/colony/s_admin)
+"qT" = (
+/obj/structure/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"qU" = (
+/obj/effect/landmark/corpsespawner/scientist,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"rB" = (
+/obj/structure/window/reinforced/tinted{
+ dir = 4
+ },
+/obj/structure/window/reinforced/tinted,
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/paper_bin,
+/obj/item/tool/pen/blue,
+/obj/effect/landmark/objective_landmark/medium,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"rM" = (
+/obj/structure/barricade/wooden{
+ dir = 1
+ },
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"rQ" = (
+/obj/item/ammo_magazine/rifle/boltaction,
+/obj/effect/landmark/survivor_spawner/shivas_panic_room_civ,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"sq" = (
+/obj/structure/machinery/faxmachine,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"sy" = (
+/obj/effect/decal/cleanable/blood{
+ icon_state = "xgibdown1"
+ },
+/obj/structure/machinery/light/double,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"sZ" = (
+/obj/structure/machinery/vending/coffee,
+/turf/open/floor/shiva{
+ dir = 8;
+ icon_state = "multi_tiles"
+ },
+/area/shiva/interior/colony/s_admin)
+"ti" = (
+/obj/effect/decal/cleanable/blood/gibs/xeno,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/shiva/interior/colony/s_admin)
+"tk" = (
+/obj/structure/window/reinforced/tinted{
+ dir = 4
+ },
+/obj/structure/window/reinforced/tinted{
+ dir = 1
+ },
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/clipboard,
+/obj/item/tool/stamp,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"tl" = (
+/obj/structure/bed/chair/comfy{
+ dir = 4
+ },
+/obj/effect/landmark/survivor_spawner/shivas_panic_room_doc,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"tu" = (
+/obj/structure/machinery/light/double{
+ dir = 8;
+ pixel_y = -5
+ },
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"tD" = (
+/obj/effect/decal/cleanable/vomit{
+ icon_state = "vomit_2"
+ },
+/obj/item/reagent_container/food/drinks/bottle/sake{
+ pixel_x = 9;
+ pixel_y = 17
+ },
+/obj/effect/landmark/corpsespawner/chef,
+/obj/structure/bed/bedroll,
+/obj/item/bedsheet/ce,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"tG" = (
+/obj/structure/janitorialcart,
+/turf/open/floor/shiva{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/shiva/interior/colony/botany)
+"tW" = (
+/obj/effect/decal/cleanable/blood/gibs/xeno,
+/turf/open/floor/plating,
+/area/shiva/interior/colony/s_admin)
+"tY" = (
+/obj/structure/bed/chair{
+ dir = 1
+ },
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"ug" = (
+/obj/effect/decal/cleanable/blood/drip{
+ icon_state = "3"
+ },
+/turf/open/floor/shiva{
+ dir = 8;
+ icon_state = "multi_tiles"
+ },
+/area/shiva/interior/colony/s_admin)
+"uh" = (
+/obj/effect/decal/cleanable/blood/drip,
+/obj/item/ammo_casing,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"ul" = (
+/obj/item/ammo_magazine/rifle/boltaction,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"uA" = (
+/obj/structure/stairs/perspective{
+ icon_state = "p_stair_full"
+ },
+/obj/item/ammo_magazine/pistol/holdout{
+ pixel_x = 3;
+ pixel_y = 2
+ },
+/turf/open/floor/shiva{
+ dir = 6;
+ icon_state = "multi_tiles"
+ },
+/area/shiva/interior/bar)
+"uE" = (
+/obj/structure/machinery/door_control{
+ id = "north_panicroom";
+ pixel_y = 30
+ },
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"uJ" = (
+/obj/item/stack/rods,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"uM" = (
+/obj/structure/window/reinforced/tinted{
+ dir = 8
+ },
+/obj/structure/window/reinforced/tinted,
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/clipboard,
+/obj/item/tool/stamp,
+/obj/effect/landmark/objective_landmark/far,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"uP" = (
+/obj/structure/machinery/light/double{
+ dir = 4;
+ pixel_y = -5
+ },
+/obj/structure/machinery/vending/coffee,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"uR" = (
+/obj/structure/machinery/light/double{
+ dir = 8;
+ pixel_y = -5
+ },
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"vn" = (
+/obj/effect/decal/remains/xeno,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"vq" = (
+/obj/structure/filingcabinet,
+/obj/item/paper/research_notes,
+/obj/structure/machinery/light/double{
+ dir = 8;
+ pixel_y = -5
+ },
+/obj/effect/landmark/objective_landmark/science,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"vs" = (
+/turf/open/floor/shiva{
+ icon_state = "multi_tiles"
+ },
+/area/shiva/interior/colony/s_admin)
+"vL" = (
+/obj/item/reagent_container/glass/bucket/mopbucket{
+ pixel_x = 5;
+ pixel_y = 5
+ },
+/turf/open/floor/shiva{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/shiva/interior/colony/botany)
+"wH" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/shiva/interior/colony/s_admin)
+"wM" = (
+/obj/item/reagent_container/food/drinks/cans/waterbottle{
+ pixel_y = 5
+ },
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"wO" = (
+/obj/item/clipboard,
+/obj/item/tool/pen/blue,
+/obj/item/stack/sheet/metal,
+/obj/item/shard{
+ icon_state = "large"
+ },
+/obj/item/shard{
+ icon_state = "large"
+ },
+/obj/structure/surface/table/reinforced/prison,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"wW" = (
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor/shiva{
+ icon_state = "multi_tiles"
+ },
+/area/shiva/interior/colony/s_admin)
+"wX" = (
+/turf/open/floor/shiva{
+ dir = 8;
+ icon_state = "multi_tiles"
+ },
+/area/shiva/interior/colony/s_admin)
+"wY" = (
+/obj/structure/machinery/power/apc{
+ dir = 1;
+ start_charge = 0
+ },
+/turf/open/auto_turf/snow/layer2,
+/area/shiva/exterior/junkyard/cp_bar)
+"xa" = (
+/obj/item/shard{
+ icon_state = "large"
+ },
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"xg" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/turf/open/floor/wood,
+/area/shiva/interior/colony/s_admin)
+"xD" = (
+/obj/structure/bed/chair/comfy/orange{
+ dir = 1
+ },
+/obj/item/paper_bin,
+/obj/structure/machinery/light/double,
+/obj/effect/decal/cleanable/blood{
+ layer = 3
+ },
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"xZ" = (
+/obj/item/storage/belt/marine,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"yd" = (
+/obj/item/weapon/gun/rifle/ar10,
+/obj/item/ammo_magazine/rifle/ar10,
+/obj/structure/closet/secure_closet/guncabinet/wy,
+/turf/open/floor/shiva{
+ dir = 8;
+ icon_state = "redfull"
+ },
+/area/shiva/interior/colony/s_admin)
+"ye" = (
+/obj/structure/bed/chair/office/light{
+ dir = 1
+ },
+/obj/effect/landmark/survivor_spawner/shivas_panic_room_cl,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"yi" = (
+/obj/item/trash/wy_chips_pepper,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"yo" = (
+/obj/structure/machinery/disposal,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"yq" = (
+/obj/effect/decal/cleanable/blood{
+ layer = 3
+ },
+/obj/effect/decal/remains/human,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"yz" = (
+/obj/structure/flora/bush/snow{
+ icon_state = "snowgrassall_3"
+ },
+/turf/open/auto_turf/snow/layer3,
+/area/shiva/exterior/junkyard)
+"yQ" = (
+/obj/effect/landmark/survivor_spawner/shivas_panic_room_sci,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"yS" = (
+/obj/structure/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/obj/item/weapon/gun/boltaction,
+/obj/structure/closet/secure_closet/guncabinet/wy,
+/turf/open/floor/shiva{
+ dir = 8;
+ icon_state = "redfull"
+ },
+/area/shiva/interior/colony/s_admin)
+"zc" = (
+/obj/structure/machinery/vending/snack,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"zi" = (
+/obj/structure/window/reinforced/tinted{
+ dir = 4
+ },
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/paper_bin,
+/obj/item/tool/pen/blue,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"zp" = (
+/obj/effect/decal/cleanable/blood/oil/streak,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"zu" = (
+/obj/structure/machinery/light/double,
+/turf/open/floor/shiva{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/shiva/interior/colony/botany)
+"zw" = (
+/obj/item/ammo_casing,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"zA" = (
+/obj/structure/window_frame/colony/reinforced,
+/turf/open/floor/plating,
+/area/shiva/interior/colony/s_admin)
+"Ad" = (
+/obj/structure/bed/chair/office/light{
+ dir = 4
+ },
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"Av" = (
+/obj/structure/machinery/light/double{
+ dir = 8;
+ pixel_y = -5
+ },
+/obj/structure/closet/secure_closet/guncabinet/wy,
+/turf/open/floor/shiva{
+ dir = 8;
+ icon_state = "redfull"
+ },
+/area/shiva/interior/colony/s_admin)
+"AC" = (
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"AY" = (
+/obj/structure/flora/pottedplant,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"AZ" = (
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/shiva/interior/colony/s_admin)
+"Bg" = (
+/obj/structure/machinery/light_construct{
+ dir = 1
+ },
+/obj/item/light_bulb/tube/prison,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"Bq" = (
+/obj/structure/window/reinforced/tinted{
+ dir = 4
+ },
+/obj/structure/machinery/computer/cameras{
+ dir = 8
+ },
+/obj/structure/surface/table/reinforced/prison,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"Bv" = (
+/obj/structure/machinery/door_control{
+ id = "south_panicroom";
+ pixel_x = 30
+ },
+/obj/structure/surface/table,
+/obj/item/ammo_magazine/shotgun/slugs,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"BD" = (
+/obj/item/lightstick/red/spoke/planted{
+ pixel_x = -11;
+ pixel_y = 20
+ },
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/bar)
+"BQ" = (
+/obj/effect/decal/cleanable/blood{
+ icon_state = "gib6"
+ },
+/turf/open/floor/shiva{
+ dir = 6;
+ icon_state = "multi_tiles"
+ },
+/area/shiva/interior/bar)
+"BU" = (
+/obj/effect/landmark/survivor_spawner/shivas_panic_room_civ,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"Cc" = (
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/shiva/interior/colony/s_admin)
+"Cd" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/effect/landmark/good_item,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"Cu" = (
+/obj/structure/window/reinforced/tinted{
+ dir = 8
+ },
+/obj/structure/window/reinforced/tinted,
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/clipboard,
+/obj/item/tool/stamp,
+/obj/effect/landmark/crap_item,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"Cx" = (
+/obj/item/stack/sheet/metal,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"CZ" = (
+/obj/item/ammo_casing,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"Dg" = (
+/obj/effect/decal/cleanable/vomit,
+/obj/item/reagent_container/food/drinks/bottle/sake{
+ pixel_x = -3;
+ pixel_y = 6
+ },
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"Dl" = (
+/obj/structure/bed/chair{
+ dir = 4
+ },
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"Dx" = (
+/obj/structure/machinery/light/double,
+/obj/item/shard{
+ icon_state = "medium"
+ },
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"DB" = (
+/obj/effect/decal/cleanable/blood/drip,
+/turf/open/floor/shiva{
+ dir = 8;
+ icon_state = "multi_tiles"
+ },
+/area/shiva/interior/colony/s_admin)
+"DU" = (
+/obj/structure/machinery/firealarm{
+ dir = 8;
+ pixel_x = -24
+ },
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"DW" = (
+/obj/structure/machinery/vending/cigarette/colony,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"DY" = (
+/obj/item/trash/burger,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"EX" = (
+/obj/structure/machinery/light/double{
+ dir = 1;
+ pixel_y = 9
+ },
+/obj/item/shard{
+ icon_state = "large"
+ },
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"Fa" = (
+/obj/effect/spawner/gibspawner/human,
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/shiva/interior/colony/s_admin)
+"Fc" = (
+/obj/structure/surface/table,
+/obj/item/ammo_magazine/rifle/ar10,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"Ff" = (
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/shiva/interior/colony/s_admin)
+"Fg" = (
+/obj/structure/largecrate/random/case/double,
+/turf/open/auto_turf/snow/layer2,
+/area/shiva/exterior/junkyard/cp_bar)
+"Fn" = (
+/turf/open/floor/shiva{
+ icon_state = "radiator_tile"
+ },
+/area/shiva/interior/bar)
+"Fp" = (
+/obj/structure/bed/chair/office/dark,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"Fx" = (
+/obj/structure/surface/table,
+/obj/structure/prop/ice_colony/hula_girl,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"FH" = (
+/obj/effect/decal/cleanable/blood/oil,
+/obj/item/stack/rods,
+/turf/open/floor/wood,
+/area/shiva/interior/colony/s_admin)
+"FK" = (
+/obj/structure/machinery/photocopier,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"FY" = (
+/turf/template_noop,
+/area/template_noop)
+"GC" = (
+/turf/closed/wall/shiva/prefabricated,
+/area/shiva/interior/colony/s_admin)
+"GJ" = (
+/obj/structure/surface/table,
+/obj/effect/landmark/objective_landmark/close,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"GQ" = (
+/obj/effect/decal/cleanable/blood/xeno{
+ icon_state = "xgibhead"
+ },
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"He" = (
+/obj/item/stool,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"Hf" = (
+/obj/structure/closet/secure_closet/security,
+/obj/effect/landmark/objective_landmark/close,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"Hp" = (
+/obj/effect/decal/cleanable/blood,
+/turf/open/floor/shiva{
+ dir = 6;
+ icon_state = "multi_tiles"
+ },
+/area/shiva/interior/colony/s_admin)
+"Hx" = (
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"HA" = (
+/obj/structure/window/reinforced/tinted{
+ dir = 8
+ },
+/obj/structure/machinery/computer/station_alert{
+ dir = 4
+ },
+/obj/structure/surface/table/reinforced/prison,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"Ik" = (
+/turf/open/auto_turf/snow/layer3,
+/area/shiva/exterior/junkyard)
+"Iy" = (
+/obj/effect/decal/cleanable/blood{
+ layer = 3
+ },
+/obj/effect/landmark/corpsespawner/wysec,
+/turf/open/floor/wood,
+/area/shiva/interior/colony/s_admin)
+"IB" = (
+/obj/effect/decal/cleanable/blood{
+ icon_state = "gib6"
+ },
+/turf/open/floor/wood,
+/area/shiva/interior/colony/s_admin)
+"IQ" = (
+/obj/structure/machinery/vending/cigarette/colony,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"Jp" = (
+/obj/item/ammo_magazine/rifle/extended{
+ current_rounds = 0
+ },
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"Jv" = (
+/obj/structure/machinery/light/double{
+ dir = 4;
+ pixel_y = -5
+ },
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"Jx" = (
+/turf/open/floor/shiva{
+ dir = 8;
+ icon_state = "multi_tiles"
+ },
+/area/shiva/interior/colony/botany)
+"JF" = (
+/obj/structure/machinery/blackbox_recorder,
+/obj/item/prop/almayer/flight_recorder/colony{
+ pixel_x = -6;
+ pixel_y = 10
+ },
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"JQ" = (
+/obj/item/ammo_magazine/rifle/boltaction,
+/obj/structure/machinery/alarm{
+ dir = 4;
+ pixel_x = -24
+ },
+/obj/structure/closet/secure_closet/guncabinet/wy,
+/turf/open/floor/shiva{
+ dir = 8;
+ icon_state = "redfull"
+ },
+/area/shiva/interior/colony/s_admin)
+"Kb" = (
+/obj/structure/machinery/light/double,
+/turf/open/floor/shiva{
+ dir = 8;
+ icon_state = "multi_tiles"
+ },
+/area/shiva/interior/colony/botany)
+"Ko" = (
+/obj/structure/bed/chair,
+/obj/item/ammo_casing,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"Kp" = (
+/obj/structure/machinery/computer/cameras{
+ dir = 8
+ },
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/shard{
+ icon_state = "large"
+ },
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"KO" = (
+/obj/structure/largecrate/random/case/small,
+/turf/open/auto_turf/snow/layer2,
+/area/shiva/exterior/junkyard/cp_bar)
+"KR" = (
+/obj/item/shard{
+ icon_state = "medium"
+ },
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"Ld" = (
+/obj/effect/decal/cleanable/blood/xeno,
+/turf/open/floor/shiva{
+ icon_state = "green"
+ },
+/area/shiva/interior/colony/botany)
+"Lh" = (
+/obj/structure/machinery/firealarm{
+ dir = 4;
+ pixel_x = 24
+ },
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"Lk" = (
+/obj/structure/largecrate/random/case,
+/turf/open/auto_turf/snow/layer3,
+/area/shiva/exterior/junkyard/cp_bar)
+"Lr" = (
+/obj/structure/prop/ice_colony/tiger_rug{
+ icon_state = "White"
+ },
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"Lu" = (
+/obj/structure/machinery/vending/cigarette/colony,
+/turf/open/floor/shiva{
+ dir = 8;
+ icon_state = "multi_tiles"
+ },
+/area/shiva/interior/colony/s_admin)
+"LE" = (
+/turf/open/floor/shiva{
+ dir = 6;
+ icon_state = "multi_tiles"
+ },
+/area/shiva/interior/bar)
+"LF" = (
+/obj/effect/decal/cleanable/blood{
+ layer = 3
+ },
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"LU" = (
+/turf/open/floor/shiva{
+ icon_state = "snow_mat"
+ },
+/area/shiva/interior/colony/botany)
+"Mi" = (
+/obj/structure/surface/table,
+/obj/effect/landmark/objective_landmark/close,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"MG" = (
+/obj/structure/machinery/door/poddoor/shutters/almayer{
+ name = "\improper Panic Room Shutters";
+ id = "south_panicroom"
+ },
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"ML" = (
+/obj/item/stack/sheet/wood,
+/turf/open/floor/plating{
+ icon_state = "platingdmg3"
+ },
+/area/shiva/interior/colony/s_admin)
+"MR" = (
+/obj/structure/safe,
+/obj/item/spacecash/c1000{
+ pixel_x = -2;
+ pixel_y = -1
+ },
+/obj/item/spacecash/c1000,
+/obj/item/spacecash/c500,
+/obj/effect/landmark/good_item,
+/turf/open/floor/shiva{
+ dir = 8;
+ icon_state = "redfull"
+ },
+/area/shiva/interior/colony/s_admin)
+"Nq" = (
+/turf/open/floor/shiva{
+ icon_state = "green"
+ },
+/area/shiva/interior/colony/botany)
+"Nt" = (
+/obj/effect/decal/cleanable/blood/xeno{
+ icon_state = "xgib6"
+ },
+/turf/open/floor/shiva{
+ dir = 6;
+ icon_state = "multi_tiles"
+ },
+/area/shiva/interior/colony/s_admin)
+"Nu" = (
+/obj/effect/landmark/survivor_spawner/shivas_panic_room_doc,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"NC" = (
+/obj/item/lightstick/variant/planted,
+/turf/open/auto_turf/snow/layer2,
+/area/shiva/exterior/junkyard)
+"On" = (
+/obj/item/stack/rods,
+/obj/structure/window_frame/colony/reinforced,
+/turf/open/floor/plating,
+/area/shiva/interior/colony/s_admin)
+"ON" = (
+/obj/item/lightstick/red/variant/planted,
+/turf/open/auto_turf/snow/layer2,
+/area/shiva/exterior/junkyard/cp_bar)
+"OV" = (
+/obj/structure/machinery/light/double{
+ dir = 4;
+ pixel_y = -5
+ },
+/turf/open/floor/wood,
+/area/shiva/interior/colony/s_admin)
+"Pb" = (
+/obj/structure/filingcabinet,
+/obj/item/paper/research_notes,
+/obj/effect/landmark/objective_landmark/science,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"Py" = (
+/obj/item/trash/kepler,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"PG" = (
+/turf/open/floor/shiva{
+ dir = 4;
+ icon_state = "snow_mat"
+ },
+/area/shiva/interior/colony/botany)
+"PI" = (
+/obj/structure/window/reinforced/tinted{
+ dir = 8
+ },
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/clipboard,
+/obj/item/tool/stamp,
+/obj/effect/landmark/crap_item,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"PV" = (
+/obj/structure/bed/bedroll,
+/obj/effect/landmark/survivor_spawner/shivas_panic_room_sci,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"Qh" = (
+/obj/structure/stairs/perspective{
+ icon_state = "p_stair_sn_full_cap"
+ },
+/turf/open/floor/shiva{
+ dir = 6;
+ icon_state = "multi_tiles"
+ },
+/area/shiva/interior/bar)
+"QS" = (
+/turf/open/auto_turf/snow/layer2,
+/area/shiva/exterior/junkyard)
+"Rs" = (
+/obj/structure/surface/table,
+/obj/item/tool/pen/blue{
+ pixel_x = -6
+ },
+/obj/item/paper_bin{
+ pixel_y = 7
+ },
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"Ru" = (
+/obj/structure/reagent_dispensers/water_cooler,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"Ry" = (
+/obj/item/tool/mop{
+ pixel_x = -10
+ },
+/turf/open/floor/shiva{
+ icon_state = "green"
+ },
+/area/shiva/interior/colony/botany)
+"RD" = (
+/obj/structure/bed/chair/wood/normal,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"RH" = (
+/obj/structure/window/reinforced/tinted{
+ dir = 8
+ },
+/obj/structure/window/reinforced/tinted{
+ dir = 1
+ },
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/paper_bin,
+/obj/item/tool/pen/blue,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"RP" = (
+/turf/open/floor/shiva{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/shiva/interior/colony/botany)
+"RQ" = (
+/obj/structure/machinery/vending/snack,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"RS" = (
+/obj/structure/bed/chair/office/light{
+ dir = 8
+ },
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"Se" = (
+/obj/effect/decal/cleanable/vomit{
+ icon_state = "vomit_4"
+ },
+/obj/item/reagent_container/food/drinks/bottle/sake{
+ pixel_x = 5;
+ pixel_y = 10
+ },
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"Sl" = (
+/obj/structure/machinery/disposal/broken,
+/turf/open/floor/plating,
+/area/shiva/interior/colony/s_admin)
+"Sq" = (
+/obj/item/tool/wet_sign,
+/turf/open/floor/shiva{
+ dir = 6;
+ icon_state = "green"
+ },
+/area/shiva/interior/colony/botany)
+"SB" = (
+/obj/item/stack/sheet/metal,
+/turf/open/floor/plating,
+/area/shiva/interior/colony/s_admin)
+"SU" = (
+/obj/item/device/flashlight/lamp{
+ pixel_y = 7
+ },
+/obj/item/frame/table/wood,
+/obj/effect/decal/cleanable/blood{
+ icon_state = "gib6"
+ },
+/turf/open/floor/wood,
+/area/shiva/interior/colony/s_admin)
+"Tc" = (
+/obj/item/frame/table/reinforced,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"Td" = (
+/obj/item/reagent_container/food/drinks/cans/waterbottle,
+/obj/item/ammo_casing,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"Tj" = (
+/obj/structure/machinery/disposal/broken,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"Tr" = (
+/obj/structure/machinery/computer/station_alert{
+ dir = 4
+ },
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/shard{
+ icon_state = "medium"
+ },
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"TG" = (
+/obj/item/prop/colony/folded_bedroll,
+/turf/open/floor/shiva{
+ dir = 8;
+ icon_state = "redfull"
+ },
+/area/shiva/interior/colony/s_admin)
+"TI" = (
+/obj/item/ammo_casing,
+/turf/open/floor/shiva{
+ dir = 8;
+ icon_state = "multi_tiles"
+ },
+/area/shiva/interior/colony/s_admin)
+"TL" = (
+/obj/item/weapon/gun/energy/taser,
+/obj/structure/machinery/light/double{
+ dir = 8;
+ pixel_y = -5
+ },
+/turf/open/floor/wood,
+/area/shiva/interior/colony/s_admin)
+"Ub" = (
+/obj/item/trash/kepler/flamehot,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"Ue" = (
+/obj/structure/stairs/perspective{
+ icon_state = "p_stair_full"
+ },
+/obj/item/ammo_casing,
+/turf/open/floor/shiva{
+ dir = 6;
+ icon_state = "multi_tiles"
+ },
+/area/shiva/interior/bar)
+"UD" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/comdoor/colony{
+ name = "\improper Colony Administration";
+ locked = 1
+ },
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"UW" = (
+/obj/structure/machinery/light/double,
+/turf/open/floor/shiva{
+ dir = 10;
+ icon_state = "green"
+ },
+/area/shiva/interior/colony/botany)
+"Vb" = (
+/obj/item/bodybag,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"Vi" = (
+/obj/structure/window_frame/colony/reinforced,
+/obj/item/shard,
+/turf/open/floor/plating,
+/area/shiva/interior/colony/s_admin)
+"Vl" = (
+/obj/effect/acid_hole,
+/turf/closed/wall/shiva/prefabricated,
+/area/shiva/interior/colony/s_admin)
+"Vy" = (
+/obj/structure/surface/table,
+/obj/item/storage/toolbox/emergency,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"VC" = (
+/obj/structure/machinery/light/double{
+ dir = 4;
+ pixel_y = -5
+ },
+/obj/structure/surface/table/reinforced/prison,
+/obj/effect/landmark/crap_item,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"VE" = (
+/obj/structure/machinery/door/airlock/almayer/security/glass/colony{
+ name = "\improper Colony Security Checkpoint"
+ },
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"VX" = (
+/obj/structure/closet/secure_closet/personal,
+/obj/effect/landmark/objective_landmark/medium,
+/obj/effect/landmark/good_item,
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"Wj" = (
+/obj/structure/bed/chair{
+ dir = 8
+ },
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"Wm" = (
+/turf/open/auto_turf/snow/layer2,
+/area/shiva/exterior/junkyard/cp_bar)
+"WA" = (
+/obj/structure/stairs/perspective{
+ dir = 4;
+ icon_state = "p_stair_sn_full_cap"
+ },
+/turf/open/floor/shiva{
+ dir = 6;
+ icon_state = "multi_tiles"
+ },
+/area/shiva/interior/bar)
+"WT" = (
+/obj/item/frame/table/wood,
+/turf/open/floor/plating{
+ icon_state = "platingdmg2"
+ },
+/area/shiva/interior/colony/s_admin)
+"Xt" = (
+/obj/structure/flora/pottedplant,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+"Xu" = (
+/obj/effect/spawner/gibspawner/xeno,
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/shiva/interior/colony/s_admin)
+"XP" = (
+/obj/structure/window/reinforced/tinted{
+ dir = 4
+ },
+/obj/structure/window/reinforced/tinted,
+/obj/structure/surface/table/reinforced/prison,
+/obj/item/paper_bin,
+/obj/item/tool/pen/blue,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"YD" = (
+/obj/structure/surface/table/reinforced/prison,
+/obj/structure/machinery/computer/cameras{
+ dir = 1
+ },
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"YS" = (
+/obj/item/shard{
+ icon_state = "medium"
+ },
+/turf/open/floor/shiva{
+ icon_state = "floor3"
+ },
+/area/shiva/interior/colony/s_admin)
+"YT" = (
+/obj/structure/window/reinforced/tinted{
+ dir = 4
+ },
+/obj/structure/machinery/computer/atmos_alert{
+ dir = 8
+ },
+/obj/structure/surface/table/reinforced/prison,
+/turf/open/floor/shiva{
+ dir = 1
+ },
+/area/shiva/interior/colony/s_admin)
+"Zi" = (
+/obj/item/weapon/gun/pistol/holdout,
+/obj/item/ammo_magazine/pistol/holdout,
+/turf/open/floor/shiva{
+ dir = 6;
+ icon_state = "multi_tiles"
+ },
+/area/shiva/interior/bar)
+"Zl" = (
+/obj/item/stack/cable_coil,
+/turf/open/floor/plating{
+ icon_state = "platingdmg1"
+ },
+/area/shiva/interior/colony/s_admin)
+"ZD" = (
+/obj/item/ammo_magazine/rifle/m16,
+/turf/open/floor/shiva{
+ icon_state = "bluefull"
+ },
+/area/shiva/interior/colony/s_admin)
+
+(1,1,1) = {"
+PG
+ce
+FY
+FY
+FY
+FY
+FY
+FY
+FY
+FY
+FY
+FY
+ce
+ce
+ce
+ce
+ce
+ce
+pQ
+pQ
+Ik
+FY
+FY
+"}
+(2,1,1) = {"
+PG
+ce
+FY
+FY
+FY
+FY
+FY
+FY
+FY
+FY
+FY
+ce
+ce
+JQ
+yS
+Av
+yd
+ce
+QS
+NC
+QS
+FY
+FY
+"}
+(3,1,1) = {"
+Kb
+ce
+FY
+FY
+FY
+FY
+FY
+FY
+FY
+FY
+FY
+ce
+MR
+wM
+fj
+rQ
+iZ
+ce
+Ik
+jK
+pQ
+FY
+FY
+"}
+(4,1,1) = {"
+RP
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+ce
+fj
+xZ
+fj
+dv
+ce
+yz
+Ik
+Ik
+FY
+FY
+"}
+(5,1,1) = {"
+RP
+GC
+iS
+pG
+tu
+ba
+Cd
+mC
+dF
+dF
+qT
+JF
+ce
+pz
+TG
+eZ
+ce
+ce
+ce
+ce
+Ik
+FY
+FY
+"}
+(6,1,1) = {"
+RP
+Vl
+dF
+Hx
+Ad
+Hx
+dF
+CZ
+Hx
+Ad
+zw
+dF
+ce
+Nu
+Ub
+xZ
+Pb
+vq
+pS
+ce
+QS
+FY
+FY
+"}
+(7,1,1) = {"
+Ld
+nh
+rM
+tk
+YT
+zi
+xa
+dF
+tk
+Kp
+rB
+qU
+ce
+ul
+dF
+dF
+ov
+yQ
+kB
+ce
+Ik
+FY
+FY
+"}
+(8,1,1) = {"
+RP
+Vi
+CZ
+lQ
+gO
+uM
+dF
+dF
+RH
+Tr
+PI
+Dx
+ce
+uE
+CZ
+tl
+Dl
+dF
+iF
+ce
+NC
+FY
+FY
+"}
+(9,1,1) = {"
+UW
+GC
+mI
+Hx
+RS
+Hx
+CZ
+dF
+Hx
+RS
+Jp
+dF
+of
+Td
+RD
+Rs
+sq
+ye
+fj
+ce
+QS
+FY
+FY
+"}
+(10,1,1) = {"
+js
+zA
+do
+Hx
+Hx
+lP
+dF
+Lr
+Hx
+Hx
+Hx
+yq
+of
+Vy
+Fp
+Tj
+Fx
+tY
+oY
+ce
+QS
+FY
+FY
+"}
+(11,1,1) = {"
+Nq
+tW
+dg
+uh
+lq
+Hx
+dF
+dF
+Hx
+Hx
+Hx
+CZ
+of
+ns
+PV
+He
+Wj
+dF
+gf
+ce
+QS
+FY
+FY
+"}
+(12,1,1) = {"
+oH
+GC
+Bg
+oT
+Cx
+Hx
+dF
+CZ
+LF
+Ad
+Hx
+dF
+of
+Fc
+CZ
+DY
+dF
+BU
+ce
+ce
+cS
+ch
+Fn
+"}
+(13,1,1) = {"
+Nq
+aq
+rM
+tk
+Bq
+XP
+dF
+dF
+tk
+Bq
+XP
+sy
+ce
+YS
+dF
+dF
+cL
+bi
+Mi
+MG
+Qh
+LE
+LE
+"}
+(14,1,1) = {"
+Nq
+SB
+FK
+RH
+HA
+Cu
+dF
+dF
+cY
+HA
+Cu
+dF
+ce
+yi
+BU
+dF
+dF
+Ko
+gB
+fM
+Ue
+Zi
+LE
+"}
+(15,1,1) = {"
+Sq
+GC
+dF
+Hx
+RS
+Hx
+CZ
+dF
+zw
+RS
+Hx
+dF
+ce
+fj
+Vb
+ky
+CZ
+ZD
+GJ
+fM
+fx
+BQ
+BQ
+"}
+(16,1,1) = {"
+vL
+GC
+dF
+Tc
+VC
+dF
+Lh
+dF
+gR
+dF
+vn
+Xt
+ce
+Se
+Dg
+dF
+yQ
+CZ
+Py
+fM
+uA
+LE
+LE
+"}
+(17,1,1) = {"
+fT
+ce
+GC
+GC
+GC
+jE
+GC
+ce
+oT
+cO
+cO
+uh
+ce
+tD
+RQ
+uP
+IQ
+gL
+Bv
+MG
+WA
+LE
+LE
+"}
+(18,1,1) = {"
+Ry
+GC
+DU
+jL
+TL
+fR
+ob
+GC
+AY
+vs
+vs
+AY
+ce
+GC
+GC
+GC
+GC
+ce
+ce
+ce
+cS
+BD
+Fn
+"}
+(19,1,1) = {"
+tG
+GC
+gn
+fR
+fR
+Iy
+jP
+GC
+Ru
+Hp
+cO
+Hx
+GC
+VX
+cv
+kP
+lb
+GC
+ai
+Wm
+FY
+FY
+FY
+"}
+(20,1,1) = {"
+Sq
+GC
+Hf
+ff
+OV
+xg
+YD
+GC
+gh
+cO
+cO
+Hx
+FH
+IB
+aH
+SU
+xD
+GC
+ne
+Wm
+FY
+FY
+FY
+"}
+(21,1,1) = {"
+zu
+ce
+ce
+VE
+ce
+wO
+bI
+ce
+EX
+cO
+hN
+Hx
+GC
+pC
+fj
+kT
+fj
+GC
+KO
+ON
+FY
+FY
+FY
+"}
+(22,1,1) = {"
+Jx
+On
+KR
+GQ
+uR
+Hx
+Hx
+On
+Cx
+Nt
+cO
+AC
+ce
+GC
+GC
+AZ
+GC
+ce
+Fg
+Wm
+FY
+FY
+FY
+"}
+(23,1,1) = {"
+PG
+UD
+Lu
+wX
+TI
+wX
+ug
+UD
+eO
+wW
+vs
+Hx
+GC
+Ff
+wH
+AZ
+WT
+GC
+Lk
+Wm
+FY
+FY
+FY
+"}
+(24,1,1) = {"
+LU
+Hx
+eO
+wX
+DB
+wX
+wX
+Hx
+sZ
+vs
+vs
+zw
+Zl
+ML
+AZ
+ti
+wH
+pV
+ne
+Wm
+FY
+FY
+FY
+"}
+(25,1,1) = {"
+PG
+nh
+zc
+zw
+Hx
+Hx
+Hx
+nh
+DW
+Hx
+Hx
+uJ
+gk
+ng
+wH
+Cc
+Fa
+GC
+ne
+ON
+FY
+FY
+FY
+"}
+(26,1,1) = {"
+PG
+GC
+Hx
+Hx
+Jv
+Hx
+AY
+GC
+yo
+Hx
+Jv
+zp
+GC
+Sl
+Xu
+wH
+AZ
+GC
+wY
+Wm
+FY
+FY
+FY
+"}
+(27,1,1) = {"
+PG
+GC
+GC
+GC
+GC
+GC
+GC
+GC
+GC
+GC
+GC
+ce
+ce
+ce
+ce
+GC
+GC
+ce
+ne
+Wm
+FY
+FY
+FY
+"}
diff --git a/maps/map_files/USS_Almayer/USS_Almayer.dmm b/maps/map_files/USS_Almayer/USS_Almayer.dmm
index 2fe911c0a67b..31386f1bfeb3 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)
@@ -549,9 +585,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
@@ -617,9 +650,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";
@@ -719,6 +756,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
@@ -819,6 +863,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,
@@ -1028,6 +1080,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
@@ -1191,6 +1251,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)
@@ -1222,27 +1291,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{
@@ -1417,14 +1465,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,
@@ -1544,6 +1584,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";
@@ -1623,6 +1671,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
@@ -1737,18 +1791,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
@@ -1915,10 +1957,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;
@@ -1931,6 +1969,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;
@@ -2005,6 +2049,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"
@@ -2024,14 +2074,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;
@@ -2041,6 +2083,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)
@@ -2082,14 +2133,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;
@@ -2180,19 +2223,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"
@@ -2281,6 +2311,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,
@@ -2300,18 +2342,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{
@@ -2333,12 +2363,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{
@@ -2477,12 +2507,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;
@@ -2526,6 +2550,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,
@@ -2609,6 +2642,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{
@@ -2901,13 +2937,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;
@@ -2926,19 +2955,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"
@@ -2992,9 +3008,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)
@@ -3284,12 +3297,6 @@
},
/turf/open/floor/almayer/aicore/no_build,
/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;
@@ -3388,6 +3395,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{
@@ -3541,11 +3554,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;
@@ -3594,12 +3602,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
@@ -3679,6 +3681,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";
@@ -3825,17 +3836,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)
@@ -4199,9 +4199,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)
@@ -4506,6 +4503,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{
@@ -4531,17 +4532,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;
@@ -4833,19 +4823,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{
@@ -4870,12 +4847,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{
@@ -5247,6 +5218,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
@@ -5274,15 +5254,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
@@ -5531,6 +5502,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;
@@ -5541,15 +5523,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,
@@ -5681,32 +5654,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"
@@ -5743,14 +5720,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,
@@ -5789,6 +5758,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,
@@ -5929,6 +5908,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
@@ -6019,6 +6009,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
@@ -6063,15 +6068,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{
@@ -6102,6 +6098,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
@@ -6153,6 +6157,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)
@@ -6303,6 +6323,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
@@ -6343,15 +6377,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{
@@ -6374,13 +6405,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;
@@ -6403,6 +6427,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;
@@ -6413,12 +6442,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{
@@ -6676,6 +6699,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";
@@ -6719,6 +6755,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"
@@ -6754,11 +6797,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{
@@ -6829,13 +6867,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,
@@ -7062,6 +7093,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;
@@ -7356,36 +7397,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
@@ -7456,11 +7467,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;
@@ -7598,10 +7604,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
@@ -7686,6 +7688,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{
@@ -7779,18 +7793,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
@@ -7950,14 +7952,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,
@@ -8034,15 +8040,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{
@@ -8092,19 +8089,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{
@@ -8311,14 +8302,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,
@@ -8343,15 +8334,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;
@@ -8458,22 +8440,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;
@@ -8533,6 +8499,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{
@@ -8542,18 +8516,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
@@ -8684,6 +8646,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{
@@ -8692,6 +8672,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
@@ -8753,6 +8736,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;
@@ -9111,6 +9100,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{
@@ -9156,13 +9152,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;
@@ -9266,6 +9255,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
@@ -9349,6 +9347,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{
@@ -9398,11 +9416,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
@@ -9422,6 +9457,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;
@@ -9468,12 +9509,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;
@@ -9534,6 +9603,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
@@ -9551,12 +9624,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
@@ -9588,14 +9655,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
@@ -9623,12 +9682,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
@@ -9720,6 +9786,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";
@@ -9780,14 +9860,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
@@ -9799,17 +9871,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
@@ -9870,6 +9931,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)
@@ -10067,6 +10138,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
@@ -10399,6 +10483,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
@@ -10484,31 +10574,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;
@@ -10533,9 +10598,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
@@ -10628,6 +10690,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,
@@ -10647,9 +10714,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
@@ -10671,12 +10746,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
@@ -10891,6 +10960,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
@@ -10935,14 +11010,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{
@@ -10986,35 +11053,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,
@@ -11045,6 +11101,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{
@@ -11062,22 +11125,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,
@@ -11135,10 +11182,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";
@@ -11161,14 +11209,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;
@@ -11193,6 +11233,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
@@ -11212,12 +11258,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
@@ -11284,6 +11324,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{
@@ -11322,17 +11370,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"
@@ -11419,22 +11456,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,
@@ -11475,6 +11496,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;
@@ -11637,18 +11661,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;
@@ -11806,14 +11818,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
@@ -11831,6 +11835,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;
@@ -11907,25 +11917,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"
@@ -11968,11 +11965,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{
@@ -12156,24 +12148,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{
@@ -12214,6 +12188,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
@@ -12314,12 +12292,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{
@@ -12330,11 +12302,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{
@@ -12380,6 +12347,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
@@ -12591,22 +12569,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,
@@ -12648,6 +12610,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{
@@ -12667,15 +12632,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
@@ -12815,21 +12771,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
@@ -12855,6 +12814,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{
@@ -12875,19 +12840,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;
@@ -13004,32 +12956,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{
@@ -13040,21 +12966,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{
@@ -13128,14 +13045,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{
@@ -13180,29 +13095,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{
@@ -13270,15 +13180,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{
@@ -13306,15 +13207,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;
@@ -13415,13 +13324,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{
@@ -13516,12 +13418,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
@@ -13554,6 +13450,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{
@@ -13637,6 +13537,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{
@@ -13648,18 +13563,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{
@@ -13697,10 +13600,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
@@ -13732,18 +13631,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
@@ -13795,6 +13682,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{
@@ -13816,12 +13713,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
@@ -13846,11 +13737,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,
@@ -13866,6 +13752,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
@@ -13902,6 +13798,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"
@@ -14036,6 +13936,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{
@@ -14061,16 +13965,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,
@@ -14109,6 +14011,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;
@@ -14295,12 +14207,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
@@ -14309,6 +14225,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
@@ -14324,21 +14253,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"
@@ -14382,15 +14296,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
@@ -14413,14 +14318,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{
@@ -14617,13 +14514,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
@@ -14668,6 +14558,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{
@@ -14692,6 +14592,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
@@ -14710,11 +14617,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,
@@ -14818,19 +14720,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{
@@ -14847,13 +14736,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,
@@ -14897,6 +14779,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)
@@ -14935,6 +14823,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,
@@ -15002,14 +14909,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{
@@ -15095,23 +15001,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
@@ -15126,39 +15026,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
@@ -15381,18 +15248,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" = (
@@ -15462,16 +15327,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,
@@ -15544,22 +15402,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,
@@ -15574,12 +15416,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;
@@ -15670,14 +15506,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
@@ -15761,16 +15589,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,
@@ -15813,15 +15638,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{
@@ -15837,21 +15658,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;
@@ -16193,6 +16016,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{
@@ -16238,6 +16080,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,
@@ -16342,20 +16187,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{
@@ -16566,6 +16402,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;
@@ -16596,14 +16439,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)
@@ -16616,12 +16451,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;
@@ -16652,6 +16481,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;
@@ -16730,12 +16565,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{
@@ -16850,17 +16685,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{
@@ -16875,11 +16714,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
@@ -16913,6 +16747,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
@@ -16937,14 +16784,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
@@ -16993,6 +16832,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;
@@ -17029,12 +16874,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;
@@ -17045,6 +16884,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
@@ -17084,6 +16929,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
@@ -17123,14 +16977,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;
@@ -17185,6 +17031,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)
@@ -17241,9 +17094,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,
@@ -17285,18 +17135,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{
@@ -17317,22 +17155,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)
@@ -17363,13 +17197,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";
@@ -17450,19 +17277,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
@@ -17491,6 +17305,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{
@@ -17544,17 +17365,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;
@@ -17593,6 +17411,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
@@ -17607,25 +17434,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{
@@ -17705,12 +17525,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;
@@ -17829,12 +17643,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,
@@ -17852,17 +17686,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{
@@ -17880,24 +17725,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)
@@ -17938,6 +17765,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{
@@ -17950,6 +17838,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{
@@ -18024,15 +17919,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{
@@ -18061,6 +17952,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{
@@ -18102,15 +17999,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
@@ -18233,16 +18121,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{
@@ -18294,21 +18179,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
@@ -18317,21 +18187,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;
@@ -18339,6 +18219,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,
@@ -18472,34 +18375,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,
@@ -18507,6 +18389,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
@@ -18516,6 +18401,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{
@@ -18565,15 +18459,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;
@@ -18783,13 +18668,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{
@@ -18821,17 +18699,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";
@@ -18872,9 +18750,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
@@ -18951,29 +18826,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{
@@ -19046,6 +18898,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;
@@ -19071,15 +18933,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;
@@ -19110,13 +18963,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{
@@ -19218,20 +19069,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)
@@ -19282,6 +19119,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
@@ -19325,12 +19169,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{
@@ -19352,22 +19200,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{
@@ -19379,23 +19261,17 @@
},
/turf/open/floor/almayer/aicore/no_build,
/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
@@ -19422,24 +19298,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
@@ -19449,15 +19321,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{
@@ -19468,22 +19331,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
@@ -19509,29 +19391,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"
@@ -19561,11 +19424,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;
@@ -19578,15 +19436,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,
@@ -19612,19 +19515,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"
@@ -19645,39 +19535,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
@@ -19690,10 +19564,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
@@ -19703,16 +19579,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
@@ -19723,14 +19596,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/aicore/no_build,
@@ -19749,6 +19636,10 @@
},
/turf/open/floor/almayer/aicore/glowing/no_build,
/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,
@@ -19759,15 +19650,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{
@@ -19775,39 +19657,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
@@ -19822,37 +19671,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{
@@ -19871,15 +19699,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;
@@ -19892,6 +19711,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
@@ -19939,6 +19771,12 @@
},
/turf/open/floor/almayer/aicore/no_build,
/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{
@@ -19955,27 +19793,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{
@@ -20035,22 +19889,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{
@@ -20078,15 +19925,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
@@ -20140,21 +19978,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
@@ -20177,6 +20000,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
@@ -20205,18 +20057,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;
@@ -20226,42 +20083,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{
@@ -20284,12 +20146,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)
@@ -20320,14 +20190,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
@@ -20349,11 +20231,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"
@@ -20362,6 +20239,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{
@@ -20371,20 +20259,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"
@@ -20397,19 +20271,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;
@@ -20452,46 +20324,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{
@@ -20522,6 +20366,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
@@ -20546,6 +20407,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{
@@ -20557,6 +20428,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
@@ -20602,12 +20482,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";
@@ -20623,6 +20508,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
@@ -20655,26 +20556,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!";
@@ -20688,57 +20586,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;
@@ -20753,10 +20600,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"
@@ -20769,23 +20620,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;
@@ -20824,6 +20667,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";
@@ -20880,6 +20728,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{
@@ -20887,6 +20744,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;
@@ -20908,30 +20777,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
@@ -20949,6 +20794,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;
@@ -20958,6 +20815,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{
@@ -20965,59 +20828,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
@@ -21038,47 +20866,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;
@@ -21131,6 +20924,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;
@@ -21156,17 +20959,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;
@@ -21182,12 +21046,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"
@@ -21227,26 +21091,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
@@ -21279,9 +21135,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{
@@ -21306,35 +21159,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,
@@ -21370,15 +21208,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/aicore/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";
@@ -21402,6 +21256,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{
@@ -21461,12 +21322,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
@@ -21494,28 +21361,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{
@@ -21528,12 +21385,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{
@@ -21543,39 +21394,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
@@ -21584,28 +21427,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)
-"deB" = (
-/turf/open/floor/almayer/aicore/no_build{
- icon_state = "ai_plates"
- },
-/area/almayer/command/airoom)
+/area/almayer/shipboard/panic)
"deD" = (
/obj/structure/machinery/prop/almayer/CICmap{
pixel_x = -5
@@ -21613,10 +21454,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
@@ -21629,6 +21466,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,
@@ -21656,12 +21499,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
@@ -21704,12 +21573,17 @@
icon_state = "red"
},
/area/almayer/shipboard/brig/chief_mp_office)
-"dgP" = (
+"dgL" = (
+/obj/structure/pipes/standard/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
+ icon_state = "test_floor4"
},
-/area/almayer/hallways/upper/aft_hallway)
+/area/almayer/hallways/lower/starboard_midship_hallway)
"dha" = (
/turf/open/floor/almayer{
icon_state = "plate"
@@ -21727,7 +21601,12 @@
icon_state = "plating_striped"
},
/area/almayer/shipboard/brig/execution)
-"dho" = (
+"dhe" = (
+/turf/open/floor/almayer{
+ icon_state = "plate"
+ },
+/area/almayer/maint/hull/upper/u_m_p)
+"dho" = (
/obj/structure/machinery/alarm/almayer{
dir = 1
},
@@ -21740,19 +21619,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;
@@ -21763,19 +21638,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";
@@ -21786,6 +21657,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;
@@ -21811,13 +21688,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;
@@ -21837,21 +21707,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";
@@ -21869,36 +21741,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";
@@ -21915,12 +21761,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,
@@ -21928,18 +21778,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{
@@ -21957,6 +21820,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)
@@ -21968,17 +21846,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{
@@ -22016,12 +21883,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,
@@ -22056,13 +21928,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{
@@ -22070,23 +21935,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"
@@ -22116,6 +21971,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;
@@ -22137,6 +21998,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
@@ -22152,27 +22019,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;
@@ -22183,12 +22043,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
@@ -22256,16 +22119,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;
@@ -22286,6 +22151,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{
@@ -22293,11 +22172,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
@@ -22386,14 +22260,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{
@@ -22414,6 +22292,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{
@@ -22424,6 +22316,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
@@ -22443,31 +22343,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{
@@ -22495,15 +22424,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;
@@ -22529,17 +22463,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
@@ -22608,15 +22541,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;
@@ -22634,9 +22558,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" = (
@@ -22657,20 +22582,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{
@@ -22683,24 +22652,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{
@@ -22723,20 +22674,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";
@@ -22808,21 +22745,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";
@@ -22833,25 +22755,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
@@ -22868,6 +22788,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
@@ -22889,13 +22818,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
@@ -22913,29 +22835,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";
@@ -22957,12 +22867,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{
@@ -22989,12 +22893,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{
@@ -23016,16 +22932,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;
@@ -23052,23 +22958,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,
@@ -23076,6 +22965,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,
@@ -23086,40 +22981,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;
@@ -23133,21 +23021,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";
@@ -23182,19 +23067,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
@@ -23236,6 +23108,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
@@ -23266,6 +23145,15 @@
},
/turf/open/floor/almayer/aicore/no_build,
/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";
@@ -23297,42 +23185,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
@@ -23350,12 +23225,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"
@@ -23370,26 +23251,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,
@@ -23420,6 +23304,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{
@@ -23473,6 +23378,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{
@@ -23483,13 +23403,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
@@ -23521,53 +23434,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
@@ -23576,14 +23473,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
@@ -23600,11 +23489,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,
@@ -23672,12 +23566,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
@@ -23688,19 +23583,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{
@@ -23716,6 +23604,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{
@@ -23728,6 +23630,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{
@@ -23745,18 +23661,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"
@@ -23767,6 +23689,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;
@@ -23789,16 +23734,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"
@@ -23829,6 +23777,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{
@@ -23894,21 +23851,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{
@@ -23918,59 +23860,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
@@ -23979,12 +23901,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,
@@ -23995,6 +23923,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,
@@ -24020,14 +23952,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";
@@ -24037,6 +23961,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
@@ -24056,19 +23991,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
@@ -24086,6 +24017,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{
@@ -24093,30 +24031,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
@@ -24147,28 +24061,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;
@@ -24199,12 +24108,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
@@ -24221,33 +24124,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;
@@ -24282,35 +24162,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/aicore/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;
@@ -24324,24 +24205,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;
@@ -24351,12 +24214,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{
@@ -24369,16 +24244,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"
@@ -24440,44 +24314,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
@@ -24487,11 +24367,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
@@ -24503,20 +24384,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
@@ -24545,6 +24417,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,
@@ -24564,34 +24446,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;
@@ -24642,14 +24507,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;
@@ -24692,6 +24549,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
@@ -24746,15 +24610,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"
@@ -24782,17 +24647,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{
@@ -24803,7 +24657,7 @@
/turf/open/floor/almayer,
/area/almayer/command/lifeboat)
"ekz" = (
-/obj/structure/girder/displaced,
+/obj/structure/platform,
/turf/open/floor/almayer{
icon_state = "plate"
},
@@ -24817,22 +24671,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"
@@ -24876,26 +24714,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
@@ -24904,14 +24739,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,
@@ -24931,19 +24758,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{
@@ -24951,6 +24765,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;
@@ -24965,72 +24806,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
@@ -25038,19 +24843,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{
@@ -25071,6 +24891,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{
@@ -25097,27 +24924,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
@@ -25171,6 +24983,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;
@@ -25180,12 +25005,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,
@@ -25213,14 +25032,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{
@@ -25241,43 +25052,30 @@
/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
+"erN" = (
+/turf/open/floor/almayer/aicore/no_build{
+ icon_state = "ai_plates"
},
-/obj/item/ashtray/plastic{
- pixel_x = 5;
- pixel_y = -10
+/area/almayer/command/airoom)
+"erR" = (
+/obj/structure/machinery/light/small{
+ dir = 4
},
/turf/open/floor/almayer{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_m_s)
-"esd" = (
-/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/maint/hull/lower/l_a_p)
+"esl" = (
+/obj/structure/reagent_dispensers/water_cooler/stacks{
+ density = 0;
+ pixel_y = 17
},
-/area/almayer/hallways/lower/port_midship_hallway)
-"esm" = (
-/obj/structure/sign/safety/storage{
- pixel_x = 8;
- pixel_y = -32
+/obj/effect/decal/warning_stripes{
+ icon_state = "W";
+ pixel_x = -1
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_f_s)
+/turf/open/floor/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
"esC" = (
/obj/structure/toilet{
pixel_y = 13
@@ -25322,6 +25120,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;
@@ -25364,11 +25167,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{
@@ -25383,10 +25186,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{
@@ -25401,18 +25208,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"
@@ -25482,6 +25293,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{
@@ -25496,13 +25325,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
@@ -25543,30 +25365,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"
@@ -25578,30 +25390,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
@@ -25635,6 +25476,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
@@ -25652,10 +25499,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.";
@@ -25668,12 +25524,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
@@ -25691,21 +25541,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{
@@ -25716,6 +25566,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
@@ -25749,24 +25609,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{
@@ -25851,13 +25704,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";
@@ -25868,12 +25728,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{
@@ -25890,6 +25744,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{
@@ -25914,27 +25786,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{
@@ -25964,16 +25846,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"
@@ -26067,13 +25944,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;
@@ -26119,22 +25989,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,
@@ -26142,45 +26002,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!";
@@ -26197,10 +26035,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;
@@ -26212,6 +26046,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
@@ -26223,6 +26068,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,
@@ -26261,67 +26112,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"
@@ -26330,18 +26126,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;
@@ -26352,6 +26157,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;
@@ -26368,20 +26181,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;
@@ -26393,11 +26220,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{
@@ -26405,14 +26242,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;
@@ -26433,15 +26265,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
@@ -26483,55 +26319,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{
@@ -26544,6 +26388,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
@@ -26572,14 +26431,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)
@@ -26599,6 +26450,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"
@@ -26624,11 +26482,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"
@@ -26637,9 +26518,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{
@@ -26650,36 +26534,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
@@ -26700,6 +26574,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{
@@ -26725,6 +26608,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
@@ -26759,6 +26652,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
@@ -26796,6 +26699,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{
@@ -26805,20 +26726,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
@@ -26827,12 +26734,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
@@ -26846,6 +26756,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,
@@ -26862,17 +26780,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
@@ -26888,15 +26802,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"
@@ -26924,6 +26829,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
@@ -26934,6 +26853,18 @@
},
/turf/open/floor/almayer/aicore/no_build,
/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"
@@ -26963,6 +26894,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
@@ -26979,9 +26916,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
@@ -27009,26 +26950,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{
@@ -27037,15 +26970,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";
@@ -27069,18 +27019,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;
@@ -27113,15 +27051,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";
@@ -27161,13 +27090,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";
@@ -27181,41 +27103,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
@@ -27237,6 +27153,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"
@@ -27260,6 +27184,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/platform_decoration{
@@ -27270,12 +27197,6 @@
dir = 8
},
/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
@@ -27285,6 +27206,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{
@@ -27306,31 +27236,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
@@ -27353,10 +27267,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,
@@ -27381,55 +27291,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
@@ -27456,6 +27343,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
@@ -27477,6 +27384,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";
@@ -27494,14 +27417,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,
@@ -27513,25 +27435,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;
@@ -27542,15 +27469,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
@@ -27559,36 +27477,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{
@@ -27600,18 +27558,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";
@@ -27631,20 +27586,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
@@ -27698,6 +27648,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{
@@ -27744,26 +27724,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"
@@ -27776,21 +27751,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,
@@ -27818,21 +27778,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,
@@ -27840,38 +27785,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
@@ -27879,22 +27822,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;
@@ -27906,6 +27851,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,
@@ -27929,6 +27882,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";
@@ -27946,13 +27904,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";
@@ -27964,12 +27915,16 @@
},
/turf/open/floor/almayer/aicore/glowing/no_build,
/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{
@@ -27981,16 +27936,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;
@@ -28001,18 +27946,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;
@@ -28035,33 +27968,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{
@@ -28088,13 +28018,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
@@ -28123,36 +28046,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,
@@ -28163,19 +28061,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
@@ -28186,18 +28071,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{
@@ -28209,9 +28093,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,
@@ -28223,13 +28104,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
@@ -28257,6 +28147,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;
@@ -28278,6 +28184,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;
@@ -28287,6 +28205,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{
@@ -28295,35 +28235,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"
@@ -28336,18 +28256,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,
@@ -28364,30 +28272,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,
@@ -28398,41 +28292,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
@@ -28445,21 +28320,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
@@ -28467,32 +28344,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";
@@ -28515,14 +28392,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{
@@ -28545,6 +28435,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
@@ -28571,6 +28467,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{
@@ -28588,12 +28499,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
@@ -28645,6 +28550,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
@@ -28656,23 +28565,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{
@@ -28683,26 +28575,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;
@@ -28730,24 +28606,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;
@@ -28770,10 +28647,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,
@@ -28811,25 +28704,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{
@@ -28838,6 +28712,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,
@@ -28893,6 +28777,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{
@@ -28909,6 +28803,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
@@ -28928,6 +28829,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{
@@ -28957,13 +28872,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{
@@ -28974,26 +28882,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
@@ -29023,6 +28915,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{
@@ -29050,6 +28954,12 @@
dir = 4
},
/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";
@@ -29078,28 +28988,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
@@ -29115,12 +29028,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
@@ -29152,15 +29077,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"
@@ -29170,6 +29086,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
@@ -29226,26 +29155,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";
@@ -29267,14 +29176,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{
@@ -29285,25 +29186,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
@@ -29319,13 +29201,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{
@@ -29334,6 +29221,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";
@@ -29360,6 +29253,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{
@@ -29371,9 +29278,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,
@@ -29395,16 +29299,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)
@@ -29423,22 +29321,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{
@@ -29446,6 +29355,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";
@@ -29475,14 +29387,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
@@ -29495,15 +29432,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;
@@ -29518,6 +29462,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
@@ -29539,6 +29493,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,
@@ -29573,17 +29538,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"
@@ -29614,15 +29575,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
@@ -29636,9 +29601,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
@@ -29647,22 +29609,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";
@@ -29670,6 +29616,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,
@@ -29686,12 +29637,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
@@ -29718,6 +29663,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{
@@ -29778,16 +29732,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"
@@ -29811,6 +29765,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;
@@ -29853,6 +29836,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,
@@ -29883,20 +29882,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{
@@ -29916,15 +29901,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;
@@ -29938,15 +29926,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";
@@ -29958,9 +29937,6 @@
},
/turf/open/floor/almayer/aicore/glowing/no_build,
/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,
@@ -30000,30 +29976,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;
@@ -30041,33 +30036,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{
@@ -30102,20 +30113,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";
@@ -30186,20 +30183,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,
@@ -30210,21 +30202,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,
@@ -30237,6 +30224,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;
@@ -30247,6 +30245,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;
@@ -30260,6 +30264,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
@@ -30287,12 +30295,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,
@@ -30304,21 +30322,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
@@ -30328,12 +30364,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;
@@ -30355,19 +30395,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{
@@ -30386,23 +30413,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{
@@ -30427,26 +30457,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" = (
@@ -30459,34 +30496,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,
@@ -30507,21 +30531,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{
@@ -30578,28 +30590,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{
@@ -30625,6 +30629,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{
@@ -30636,25 +30650,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
@@ -30677,24 +30713,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{
@@ -30721,6 +30746,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
@@ -30729,10 +30769,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{
@@ -30772,6 +30814,15 @@
icon_state = "plate"
},
/area/almayer/living/gym)
+"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{
@@ -30804,6 +30855,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,
@@ -30819,18 +30879,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;
@@ -30846,59 +30900,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...";
@@ -30918,6 +30949,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";
@@ -30960,6 +31007,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{
@@ -30978,23 +31035,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;
@@ -31047,12 +31087,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,
@@ -31068,43 +31150,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,
-/turf/open/floor/almayer{
- icon_state = "test_floor4"
- },
-/area/almayer/maint/hull/upper/u_m_p)
"gBO" = (
-/turf/open/floor/almayer/aicore/no_build,
-/area/almayer/command/airoom)
-"gBU" = (
-/obj/structure/surface/table/almayer,
-/obj/item/storage/bag/trash{
- pixel_x = -3
- },
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
+/turf/open/floor/almayer{
+ 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"
@@ -31113,27 +31173,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
@@ -31161,12 +31217,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
@@ -31196,11 +31256,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
@@ -31213,19 +31268,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{
@@ -31249,12 +31307,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{
@@ -31264,24 +31357,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)
@@ -31292,14 +31367,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
@@ -31353,14 +31420,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;
@@ -31391,6 +31450,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";
@@ -31398,12 +31460,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,
@@ -31417,6 +31473,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{
@@ -31430,22 +31492,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;
@@ -31458,12 +31535,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
@@ -31475,13 +31546,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{
@@ -31500,24 +31572,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{
@@ -31537,20 +31591,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"
@@ -31561,25 +31601,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{
@@ -31599,11 +31646,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{
@@ -31638,11 +31693,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;
@@ -31717,17 +31773,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";
@@ -31759,18 +31818,6 @@
},
/turf/open/floor/almayer/aicore/no_build,
/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
@@ -31779,18 +31826,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;
@@ -31808,22 +31862,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
@@ -31833,22 +31871,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";
@@ -31876,6 +31905,15 @@
dir = 4
},
/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{
@@ -31890,12 +31928,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
@@ -31916,25 +31948,20 @@
},
/turf/open/floor/almayer/aicore/no_build,
/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{
@@ -31943,16 +31970,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;
@@ -31969,18 +31992,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{
@@ -31989,17 +32000,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
@@ -32008,6 +32044,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";
@@ -32040,36 +32097,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{
@@ -32085,28 +32142,16 @@
},
/turf/open/floor/almayer/aicore/no_build,
/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{
@@ -32122,38 +32167,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
@@ -32239,30 +32267,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,
@@ -32281,6 +32298,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"
@@ -32328,34 +32355,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
@@ -32375,23 +32374,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,
@@ -32399,6 +32387,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";
@@ -32409,22 +32403,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
@@ -32477,11 +32470,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
@@ -32495,30 +32483,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,
@@ -32536,26 +32500,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;
@@ -32566,6 +32522,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
@@ -32612,6 +32583,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
@@ -32620,21 +32601,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"
@@ -32644,13 +32622,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{
@@ -32660,16 +32638,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;
@@ -32697,6 +32669,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;
@@ -32706,10 +32686,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{
@@ -32746,36 +32730,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{
@@ -32791,12 +32755,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
@@ -32806,37 +32764,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,
@@ -32870,17 +32797,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;
@@ -32893,31 +32818,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{
@@ -32932,6 +32832,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{
@@ -32957,16 +32869,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
@@ -32982,22 +32884,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
@@ -33051,36 +32949,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;
@@ -33088,12 +32978,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
@@ -33130,6 +33024,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{
@@ -33154,6 +33063,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{
@@ -33164,6 +33084,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";
@@ -33192,6 +33119,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;
@@ -33224,12 +33161,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
@@ -33251,19 +33182,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;
@@ -33276,6 +33194,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;
@@ -33302,36 +33223,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,
@@ -33347,18 +33250,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
@@ -33372,46 +33263,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;
@@ -33428,6 +33325,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";
@@ -33447,15 +33357,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";
@@ -33469,34 +33384,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;
@@ -33520,6 +33423,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,
@@ -33544,15 +33460,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
@@ -33562,19 +33469,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
@@ -33584,18 +33478,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
@@ -33606,21 +33491,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
@@ -33638,19 +33508,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";
@@ -33667,55 +33527,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{
@@ -33744,26 +33582,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"
@@ -33779,12 +33613,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;
@@ -33800,15 +33628,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{
@@ -33838,26 +33684,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";
@@ -33867,19 +33712,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
@@ -33902,6 +33741,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{
@@ -33926,17 +33773,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";
@@ -33961,17 +33835,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;
@@ -33986,16 +33860,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,
@@ -34031,10 +33898,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,
@@ -34043,9 +33912,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
@@ -34054,19 +33927,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,
@@ -34101,14 +33961,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
@@ -34117,30 +33969,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{
@@ -34152,50 +33980,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;
@@ -34208,12 +34019,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{
@@ -34248,6 +34058,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{
@@ -34263,16 +34093,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,
@@ -34296,53 +34116,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
@@ -34352,10 +34133,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{
@@ -34381,15 +34207,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{
@@ -34461,15 +34296,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";
@@ -34480,16 +34360,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;
@@ -34504,12 +34374,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;
@@ -34529,27 +34401,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{
@@ -34573,52 +34435,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"
@@ -34636,6 +34531,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
@@ -34646,39 +34549,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";
@@ -34690,15 +34580,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
@@ -34706,17 +34598,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{
@@ -34743,25 +34632,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,
@@ -34774,6 +34656,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{
@@ -34781,31 +34669,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)
@@ -34833,10 +34713,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{
@@ -34844,10 +34732,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{
@@ -34929,17 +34813,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";
@@ -34965,26 +34838,6 @@
},
/turf/open/floor/almayer/aicore/glowing/no_build,
/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)
@@ -34997,18 +34850,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,
@@ -35045,6 +34886,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;
@@ -35107,34 +34954,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.";
@@ -35171,6 +35013,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
@@ -35180,12 +35031,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
@@ -35234,27 +35094,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{
@@ -35270,11 +35109,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;
@@ -35312,12 +35154,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
@@ -35356,12 +35203,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
@@ -35374,14 +35221,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
@@ -35408,12 +35275,14 @@
},
/turf/open/floor/almayer/aicore/no_build,
/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";
@@ -35458,16 +35327,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,
@@ -35500,6 +35372,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{
@@ -35512,6 +35392,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
@@ -35520,6 +35404,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
@@ -35529,6 +35425,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"
@@ -35538,24 +35441,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;
@@ -35582,6 +35471,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{
@@ -35589,6 +35490,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;
@@ -35601,7 +35536,7 @@
icon_state = "kitchen"
},
/area/almayer/living/grunt_rnr)
-"idL" = (
+"idV" = (
/obj/structure/disposalpipe/segment{
dir = 4
},
@@ -35619,28 +35554,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;
@@ -35709,6 +35622,21 @@
},
/turf/open/floor/almayer/aicore/no_build,
/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{
@@ -35733,31 +35661,12 @@
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"
},
/turf/open/floor/almayer/aicore/glowing/no_build,
/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
@@ -35769,39 +35678,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{
@@ -35809,12 +35685,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{
@@ -35828,15 +35712,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
@@ -35851,6 +35726,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{
@@ -35901,14 +35782,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
@@ -35917,6 +35790,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{
@@ -35936,11 +35817,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
@@ -35961,19 +35837,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{
@@ -35995,9 +35876,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;
@@ -36029,6 +35907,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{
@@ -36043,26 +35929,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
@@ -36076,6 +35967,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";
@@ -36086,6 +35988,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;
@@ -36106,9 +36011,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"
@@ -36122,6 +36024,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)
@@ -36147,39 +36055,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
@@ -36188,6 +36063,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{
@@ -36214,21 +36099,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;
@@ -36250,6 +36149,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
@@ -36268,23 +36174,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{
@@ -36317,15 +36219,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";
@@ -36399,6 +36301,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
@@ -36420,17 +36335,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,
@@ -36471,12 +36375,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,
@@ -36491,28 +36389,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"
@@ -36528,18 +36443,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{
@@ -36553,6 +36483,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{
@@ -36605,6 +36546,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,
@@ -36612,14 +36561,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
@@ -36628,6 +36576,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{
@@ -36654,27 +36610,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
@@ -36694,6 +36629,15 @@
},
/turf/open/floor/almayer/aicore/no_build,
/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
@@ -36730,6 +36674,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{
@@ -36737,6 +36684,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
@@ -36758,6 +36718,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
@@ -36766,6 +36742,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
@@ -36776,14 +36765,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{
@@ -36791,6 +36793,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;
@@ -36811,14 +36819,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
@@ -36831,24 +36831,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;
@@ -36892,17 +36908,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,
@@ -36912,29 +36921,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,
@@ -36962,6 +36948,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
@@ -36974,29 +36968,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{
@@ -37007,12 +36998,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
@@ -37024,15 +37035,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)
@@ -37044,6 +37046,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;
@@ -37065,20 +37071,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
@@ -37094,14 +37102,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{
@@ -37113,6 +37117,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;
@@ -37133,13 +37152,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{
@@ -37169,6 +37187,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,
@@ -37196,15 +37223,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
@@ -37237,15 +37262,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;
@@ -37281,6 +37297,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;
@@ -37289,6 +37312,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;
@@ -37323,35 +37355,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;
@@ -37359,51 +37362,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,
@@ -37415,6 +37407,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
@@ -37431,47 +37433,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;
@@ -37535,6 +37512,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{
@@ -37555,25 +37541,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,
@@ -37594,6 +37578,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{
@@ -37640,34 +37627,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
@@ -37698,16 +37684,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
@@ -37725,21 +37715,10 @@
dir = 4
},
/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
- },
+/area/almayer/shipboard/brig/cells)
+"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
@@ -37781,11 +37760,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
@@ -37796,6 +37790,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;
@@ -37808,15 +37823,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;
@@ -37828,13 +37834,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{
@@ -37855,37 +37859,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
@@ -37894,28 +37883,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,
@@ -37962,12 +37935,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
@@ -37993,12 +37960,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
@@ -38008,6 +37983,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";
@@ -38022,6 +38013,9 @@
},
/turf/open/floor/almayer/aicore/no_build,
/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{
@@ -38035,6 +38029,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
@@ -38068,12 +38071,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
@@ -38090,51 +38087,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{
@@ -38145,13 +38113,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
@@ -38178,10 +38139,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,
@@ -38241,31 +38226,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"
@@ -38285,21 +38265,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;
@@ -38310,20 +38275,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{
@@ -38339,27 +38311,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{
@@ -38381,6 +38344,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
@@ -38397,15 +38369,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";
@@ -38416,13 +38402,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,
@@ -38510,6 +38489,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
@@ -38528,20 +38515,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;
@@ -38549,27 +38533,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;
@@ -38592,10 +38561,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
@@ -38609,29 +38574,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{
@@ -38650,17 +38607,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;
@@ -38680,13 +38635,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"
@@ -38715,6 +38663,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";
@@ -38728,6 +38683,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{
@@ -38744,17 +38703,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{
@@ -38814,40 +38776,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";
@@ -38859,11 +38801,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";
@@ -38909,6 +38846,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{
@@ -38922,15 +38865,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"
@@ -38957,45 +38891,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;
@@ -39018,6 +38919,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{
@@ -39068,12 +38978,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";
@@ -39108,10 +39046,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";
@@ -39122,38 +39056,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
@@ -39163,17 +39071,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
@@ -39182,14 +39095,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";
@@ -39201,17 +39106,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
@@ -39221,51 +39115,66 @@
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/effect/step_trigger/clone_cleaner,
/turf/open/floor/almayer/aicore/glowing/no_build{
icon_state = "ai_floor3"
},
/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
@@ -39273,17 +39182,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
@@ -39329,41 +39244,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/aicore/no_build{
icon_state = "ai_plates"
},
/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
@@ -39374,6 +39269,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
@@ -39406,35 +39305,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{
@@ -39442,19 +39326,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{
@@ -39462,12 +39333,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
@@ -39483,15 +39348,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;
@@ -39502,20 +39358,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"
@@ -39524,6 +39366,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";
@@ -39542,13 +39412,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{
@@ -39562,16 +39425,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" = (
@@ -39615,6 +39484,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;
@@ -39638,10 +39513,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,
@@ -39653,18 +39524,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";
@@ -39675,6 +39541,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
@@ -39692,15 +39574,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
@@ -39739,28 +39612,45 @@
},
/turf/open/floor/almayer/aicore/no_build,
/area/almayer/command/airoom)
-"jEA" = (
-/obj/structure/disposalpipe/segment{
- dir = 4
+"jEj" = (
+/obj/structure/machinery/cm_vending/sorted/tech/comp_storage,
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "orange"
},
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12
+/area/almayer/maint/hull/lower/l_m_s)
+"jEm" = (
+/obj/structure/bed/sofa/south/white/right{
+ pixel_y = 16
},
-/obj/structure/prop/invuln/overhead_pipe{
- pixel_x = 12;
- pixel_y = 12
+/turf/open/floor/almayer{
+ dir = 5;
+ icon_state = "silver"
},
-/obj/structure/sign/safety/water{
- pixel_x = 8;
- pixel_y = 32
+/area/almayer/maint/hull/upper/u_m_p)
+"jEo" = (
+/obj/structure/machinery/light{
+ dir = 1
+ },
+/turf/open/floor/almayer,
+/area/almayer/hallways/upper/stern_hallway)
+"jEt" = (
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/turf/open/floor/plating/plating_catwalk,
-/area/almayer/maint/hull/lower/l_a_p)
-"jEM" = (
/turf/open/floor/almayer{
- icon_state = "plate"
+ icon_state = "orangecorner"
},
-/area/almayer/maint/hull/lower/l_a_s)
+/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
@@ -39781,14 +39671,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{
@@ -39815,16 +39717,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,
@@ -39832,14 +39724,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{
@@ -39863,18 +39747,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";
@@ -39884,6 +39756,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
@@ -39893,15 +39771,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;
@@ -39924,13 +39825,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;
@@ -39938,16 +39832,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,
@@ -39961,17 +39845,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"
@@ -39990,6 +39897,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;
@@ -40037,12 +39972,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
@@ -40058,12 +39996,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;
@@ -40081,18 +40026,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
@@ -40149,15 +40092,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;
@@ -40206,33 +40140,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{
@@ -40240,11 +40147,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)
@@ -40303,16 +40205,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"
@@ -40365,24 +40257,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
@@ -40395,19 +40291,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{
@@ -40417,27 +40324,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;
@@ -40460,6 +40346,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{
@@ -40513,6 +40408,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;
@@ -40541,6 +40458,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"
@@ -40550,41 +40481,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{
@@ -40609,10 +40511,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"
@@ -40650,6 +40552,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
@@ -40659,16 +40573,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"
@@ -40686,6 +40590,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;
@@ -40713,6 +40627,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;
@@ -40732,6 +40657,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
@@ -40755,26 +40689,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
@@ -40817,24 +40744,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";
@@ -40849,6 +40785,15 @@
},
/turf/open/floor/almayer/aicore/glowing/no_build,
/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;
@@ -40858,30 +40803,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
@@ -40917,6 +40838,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"
@@ -40929,36 +40859,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;
@@ -40972,17 +40909,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;
@@ -41025,6 +40966,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)
@@ -41050,6 +41004,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";
@@ -41075,16 +41046,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
@@ -41101,17 +41075,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
@@ -41122,12 +41085,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
@@ -41137,18 +41094,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)
@@ -41173,20 +41128,26 @@
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"
},
/turf/open/floor/almayer{
- icon_state = "orange"
+ 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/engineering/upper_engineering/starboard)
+/area/almayer/hallways/upper/aft_hallway)
"kdB" = (
/obj/structure/disposalpipe/segment,
/obj/structure/pipes/standard/simple/hidden/supply,
@@ -41194,26 +41155,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
@@ -41231,13 +41218,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{
@@ -41259,6 +41239,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
@@ -41290,20 +41288,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{
@@ -41315,15 +41299,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
@@ -41345,6 +41320,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"
@@ -41356,15 +41361,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";
@@ -41380,12 +41376,23 @@
/turf/open/floor/almayer/aicore/glowing/no_build,
/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
@@ -41398,24 +41405,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{
@@ -41439,14 +41428,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
@@ -41483,6 +41464,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{
@@ -41492,22 +41485,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;
@@ -41521,24 +41498,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"
@@ -41551,6 +41564,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,
@@ -41578,17 +41611,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,
@@ -41598,12 +41630,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
@@ -41612,10 +41658,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
@@ -41638,22 +41680,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
@@ -41662,19 +41721,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{
@@ -41697,6 +41753,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
@@ -41706,13 +41776,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
@@ -41746,11 +41826,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"
@@ -41759,6 +41840,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";
@@ -41771,20 +41869,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;
@@ -41795,6 +41879,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
@@ -41821,32 +41921,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;
@@ -41868,6 +41949,21 @@
icon_state = "bluecorner"
},
/area/almayer/living/basketball)
+"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,
@@ -41878,6 +41974,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";
@@ -41887,17 +42000,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"
@@ -41967,49 +42076,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" = (
-/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" = (
+"ktH" = (
/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;
@@ -42027,12 +42112,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{
@@ -42046,6 +42146,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{
@@ -42053,14 +42156,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;
@@ -42085,6 +42189,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,
@@ -42109,21 +42222,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,
@@ -42147,6 +42245,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";
@@ -42160,14 +42265,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{
@@ -42209,9 +42306,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{
@@ -42222,9 +42323,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,
@@ -42254,16 +42365,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,
@@ -42282,13 +42389,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{
@@ -42347,15 +42447,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";
@@ -42378,80 +42469,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
@@ -42461,6 +42521,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"
@@ -42509,14 +42585,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)
@@ -42539,14 +42607,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";
@@ -42562,13 +42627,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";
@@ -42591,6 +42677,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;
@@ -42604,6 +42697,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
@@ -42657,15 +42768,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{
@@ -42676,6 +42788,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
@@ -42690,6 +42808,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;
@@ -42701,22 +42832,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;
@@ -42729,12 +42872,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;
@@ -42753,14 +42898,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{
@@ -42772,6 +42933,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
@@ -42790,25 +42976,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
@@ -42817,25 +43014,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{
@@ -42848,6 +43031,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"
@@ -42882,12 +43080,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,
@@ -42913,24 +43114,12 @@
},
/turf/open/floor/almayer/aicore/no_build,
/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;
@@ -42949,57 +43138,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"
@@ -43012,17 +43158,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";
@@ -43046,37 +43181,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
@@ -43089,9 +43201,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;
@@ -43167,6 +43281,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
@@ -43179,40 +43303,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,
@@ -43291,14 +43381,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
@@ -43310,6 +43397,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
@@ -43325,21 +43428,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{
@@ -43357,13 +43445,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,
@@ -43373,28 +43454,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{
@@ -43416,16 +43475,11 @@
/turf/open/floor/almayer/aicore/glowing/no_build,
/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
@@ -43450,6 +43504,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
@@ -43459,6 +43533,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{
@@ -43487,55 +43578,15 @@
icon_state = "test_floor4"
},
/area/almayer/living/pilotbunks)
-"kUs" = (
-/obj/structure/machinery/firealarm{
- pixel_y = 28
- },
-/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
- },
-/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
+"kUr" = (
+/obj/structure/sign/poster{
+ pixel_y = -32
},
-/obj/structure/closet/emcloset,
-/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/almayer,
+/area/almayer/maint/hull/upper/u_f_s)
"kUQ" = (
/obj/effect/decal/cleanable/blood/oil/streak,
/obj/structure/machinery/constructable_frame,
@@ -43574,13 +43625,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
@@ -43603,14 +43654,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.";
@@ -43655,6 +43707,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;
@@ -43684,6 +43753,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;
@@ -43705,12 +43780,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{
@@ -43790,12 +43901,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";
@@ -43817,13 +43946,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
@@ -43858,23 +43980,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
@@ -43920,6 +44025,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
@@ -43931,6 +44045,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
@@ -43946,23 +44082,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
@@ -43971,16 +44101,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;
@@ -44003,16 +44123,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;
@@ -44059,12 +44169,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{
@@ -44072,6 +44206,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,
@@ -44080,13 +44240,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
@@ -44096,12 +44249,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;
@@ -44151,20 +44311,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;
@@ -44206,6 +44363,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";
@@ -44214,23 +44377,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
@@ -44239,6 +44394,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";
@@ -44255,17 +44438,9 @@
/turf/open/floor/almayer/aicore/no_build,
/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
@@ -44308,29 +44483,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,
@@ -44375,16 +44564,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{
@@ -44411,6 +44590,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{
@@ -44443,6 +44630,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
@@ -44461,6 +44656,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
@@ -44476,19 +44695,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;
@@ -44496,13 +44711,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{
@@ -44514,6 +44722,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/aicore/hull,
/area/space)
@@ -44528,6 +44743,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{
@@ -44557,10 +44787,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,
@@ -44661,9 +44905,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,
@@ -44678,6 +44919,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
@@ -44723,15 +44977,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"
@@ -44745,11 +44996,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;
@@ -44767,6 +45037,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{
@@ -44777,31 +45051,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,
@@ -44825,15 +45089,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{
@@ -44845,12 +45100,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"
@@ -44878,6 +45127,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{
@@ -44903,47 +45158,34 @@
/obj/effect/landmark/start/working_joe,
/turf/open/floor/plating/plating_catwalk/aicore,
/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,
@@ -44976,12 +45218,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{
@@ -45064,6 +45303,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";
@@ -45077,12 +45322,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
@@ -45097,20 +45336,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;
@@ -45124,6 +45357,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
@@ -45138,6 +45378,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{
@@ -45152,6 +45397,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
@@ -45161,37 +45423,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{
@@ -45199,14 +45436,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{
@@ -45249,32 +45500,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;
@@ -45311,25 +45549,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
@@ -45342,46 +45583,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
@@ -45416,28 +45633,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";
@@ -45445,26 +45648,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";
@@ -45483,15 +45666,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,
@@ -45527,6 +45701,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"
@@ -45537,6 +45723,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;
@@ -45544,11 +45739,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
@@ -45585,16 +45784,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{
@@ -45606,17 +45795,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,
@@ -45658,18 +45840,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{
@@ -45677,25 +45858,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;
@@ -45710,9 +45937,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
@@ -45722,20 +45958,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
@@ -45744,18 +45966,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
@@ -45819,12 +46044,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
@@ -45871,29 +46090,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
@@ -45927,33 +46161,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;
@@ -45963,12 +46176,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,
@@ -45984,6 +46191,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{
@@ -45995,14 +46211,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,
@@ -46014,6 +46234,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
@@ -46064,6 +46288,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,
@@ -46089,6 +46331,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{
@@ -46096,10 +46346,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
@@ -46112,32 +46362,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,
@@ -46166,6 +46402,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{
@@ -46179,10 +46423,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"
@@ -46192,11 +46432,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,
@@ -46229,21 +46479,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
@@ -46263,6 +46515,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";
@@ -46275,24 +46539,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,
@@ -46301,17 +46553,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;
@@ -46322,17 +46585,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{
@@ -46354,12 +46606,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{
@@ -46367,25 +46619,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
@@ -46421,8 +46663,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;
@@ -46432,14 +46675,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";
@@ -46457,18 +46695,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{
@@ -46491,41 +46736,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,
@@ -46534,10 +46776,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,
@@ -46567,15 +46805,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"
@@ -46585,10 +46850,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{
@@ -46606,28 +46903,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{
@@ -46642,19 +46978,6 @@
/obj/item/folder/white,
/turf/open/floor/almayer/aicore/glowing/no_build,
/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
@@ -46669,50 +46992,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,
@@ -46732,19 +47074,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{
@@ -46790,14 +47119,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";
@@ -46868,6 +47204,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;
@@ -46882,29 +47224,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
@@ -46914,6 +47276,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;
@@ -46970,6 +47338,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
@@ -46989,30 +47365,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{
@@ -47069,6 +47434,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";
@@ -47128,50 +47503,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{
@@ -47197,21 +47577,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
@@ -47222,6 +47596,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
@@ -47237,27 +47622,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{
@@ -47269,18 +47633,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,
@@ -47288,6 +47652,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{
@@ -47295,26 +47669,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
@@ -47337,18 +47702,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{
@@ -47362,18 +47720,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;
@@ -47383,12 +47729,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
@@ -47413,6 +47765,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{
@@ -47461,16 +47825,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{
@@ -47485,6 +47839,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)
@@ -47525,6 +47887,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"
@@ -47534,12 +47922,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
@@ -47548,6 +47930,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{
@@ -47574,6 +47960,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,
@@ -47594,19 +47988,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
@@ -47620,6 +48001,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
@@ -47672,12 +48061,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;
@@ -47699,11 +48082,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
@@ -47724,14 +48108,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,
@@ -47740,13 +48136,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;
@@ -47768,6 +48157,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
@@ -47779,6 +48203,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{
@@ -47789,38 +48220,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
@@ -47845,10 +48255,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,
@@ -47857,15 +48263,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;
@@ -47897,6 +48294,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{
@@ -47904,14 +48310,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
@@ -47932,6 +48336,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
@@ -47977,6 +48384,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{
@@ -47984,15 +48433,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;
@@ -48000,6 +48440,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{
@@ -48016,13 +48468,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)
@@ -48071,13 +48516,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;
@@ -48089,6 +48545,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
@@ -48114,16 +48604,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{
@@ -48169,26 +48649,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
@@ -48213,6 +48694,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{
@@ -48226,6 +48715,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
@@ -48275,17 +48778,6 @@
dir = 8
},
/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,
@@ -48293,17 +48785,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;
@@ -48337,6 +48818,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,
@@ -48374,15 +48875,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)
@@ -48399,9 +48891,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;
@@ -48443,17 +48932,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
@@ -48519,6 +48997,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
@@ -48532,9 +49021,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";
@@ -48567,17 +49069,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
@@ -48587,6 +49078,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,
@@ -48618,25 +49115,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
@@ -48654,20 +49137,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;
@@ -48698,35 +49167,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
@@ -48759,32 +49204,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
@@ -48794,6 +49222,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
@@ -48803,14 +49239,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
@@ -48820,34 +49248,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{
@@ -48896,26 +49302,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"
@@ -48932,22 +49325,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
@@ -48957,6 +49361,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,
@@ -48964,6 +49371,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{
@@ -48974,19 +49387,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{
@@ -49014,16 +49433,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;
@@ -49038,15 +49447,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,
@@ -49076,34 +49482,12 @@
/turf/open/floor/almayer/aicore/no_build,
/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";
@@ -49114,17 +49498,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";
@@ -49147,21 +49520,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"
@@ -49224,55 +49606,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{
@@ -49282,6 +49620,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";
@@ -49296,24 +49645,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,
@@ -49331,6 +49662,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
@@ -49367,18 +49705,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,
@@ -49390,15 +49716,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;
@@ -49409,12 +49726,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
@@ -49452,6 +49763,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{
@@ -49479,24 +49810,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;
@@ -49509,9 +49845,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"
@@ -49526,6 +49859,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
@@ -49553,31 +49895,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,
@@ -49598,15 +49981,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{
@@ -49638,12 +50024,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
@@ -49668,6 +50048,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{
@@ -49678,6 +50065,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
@@ -49723,6 +50132,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,
@@ -49771,20 +50184,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
@@ -49814,6 +50213,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,
@@ -49831,10 +50238,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{
@@ -49851,16 +50254,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"
@@ -49888,22 +50281,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"
@@ -49951,15 +50354,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
@@ -49969,6 +50398,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"
@@ -49977,6 +50409,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"
@@ -50017,9 +50459,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{
@@ -50039,35 +50491,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
@@ -50079,6 +50518,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
@@ -50102,6 +50551,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/sign/safety/terminal{
@@ -50117,12 +50584,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;
@@ -50162,28 +50629,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{
@@ -50196,6 +50664,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;
@@ -50214,18 +50688,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;
@@ -50244,24 +50709,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{
@@ -50303,27 +50769,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
@@ -50341,6 +50786,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";
@@ -50356,12 +50804,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";
@@ -50392,10 +50834,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{
@@ -50407,6 +50858,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{
@@ -50431,17 +50888,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{
@@ -50460,6 +50937,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{
@@ -50481,22 +50970,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;
@@ -50587,6 +51096,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{
@@ -50608,19 +51124,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
@@ -50639,14 +51164,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{
@@ -50666,18 +51183,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
@@ -50687,6 +51192,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
@@ -50695,56 +51204,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,
@@ -50752,10 +51223,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
@@ -50793,28 +51260,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"
@@ -50837,9 +51310,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{
@@ -50847,12 +51332,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,
@@ -50864,6 +51343,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,
@@ -50885,10 +51367,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
@@ -50927,15 +51425,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;
@@ -50948,36 +51437,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,
@@ -51030,12 +51495,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;
@@ -51071,13 +51542,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{
@@ -51090,36 +51554,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{
@@ -51158,16 +51597,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,
@@ -51256,48 +51685,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
@@ -51321,16 +51745,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"
@@ -51376,13 +51798,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
@@ -51392,9 +51807,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
@@ -51409,6 +51830,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{
@@ -51434,6 +51862,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;
@@ -51454,6 +51887,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{
@@ -51464,9 +51911,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;
@@ -51497,15 +51941,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"
@@ -51525,6 +51983,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
@@ -51570,22 +52039,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;
@@ -51632,22 +52108,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
@@ -51687,6 +52158,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
@@ -51723,13 +52197,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.";
@@ -51753,18 +52226,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
@@ -51774,30 +52251,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)
@@ -51808,13 +52288,7 @@
/turf/open/floor/almayer{
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)
+/area/almayer/shipboard/brig/cic_hallway)
"nRR" = (
/turf/open/floor/almayer{
dir = 1;
@@ -51825,29 +52299,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";
@@ -51856,6 +52315,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";
@@ -51868,39 +52339,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
@@ -51915,6 +52373,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;
@@ -51926,6 +52391,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;
@@ -51978,16 +52449,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{
@@ -51996,6 +52457,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
@@ -52004,9 +52473,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"
@@ -52017,13 +52486,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;
@@ -52038,29 +52500,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
@@ -52069,17 +52526,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)
@@ -52093,13 +52539,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"
},
@@ -52166,12 +52653,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
@@ -52190,6 +52671,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{
@@ -52201,14 +52692,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{
@@ -52217,29 +52712,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{
@@ -52247,34 +52734,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;
@@ -52282,6 +52772,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{
@@ -52292,6 +52793,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;
@@ -52307,20 +52814,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,
@@ -52380,53 +52885,22 @@
},
/turf/open/floor/almayer/aicore/glowing/no_build,
/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
@@ -52455,22 +52929,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,
@@ -52481,6 +52939,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
@@ -52508,17 +52974,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,
@@ -52532,20 +52998,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
@@ -52563,6 +53040,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{
@@ -52577,18 +53060,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.";
@@ -52603,25 +53091,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"
@@ -52659,19 +53150,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,
@@ -52694,17 +53172,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"
@@ -52734,16 +53201,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
@@ -52753,6 +53232,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
@@ -52762,12 +53247,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
@@ -52786,10 +53265,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";
@@ -52806,6 +53289,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
@@ -52813,6 +53323,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;
@@ -52853,16 +53375,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;
@@ -52872,19 +53384,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"
@@ -52893,20 +53392,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;
@@ -52943,12 +53448,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{
@@ -52956,12 +53455,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
@@ -52971,47 +53464,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;
@@ -53022,6 +53489,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,
@@ -53038,36 +53509,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{
@@ -53131,19 +53591,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"
@@ -53193,46 +53643,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
@@ -53271,10 +53705,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
@@ -53289,6 +53719,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"
@@ -53335,14 +53779,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
@@ -53365,23 +53811,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"
@@ -53441,12 +53880,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{
@@ -53465,55 +53907,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;
@@ -53559,6 +53969,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,
@@ -53572,18 +53992,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;
@@ -53598,10 +54006,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;
@@ -53619,6 +54023,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";
@@ -53632,26 +54046,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
@@ -53675,69 +54088,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{
@@ -53750,25 +54156,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{
@@ -53778,6 +54174,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,
@@ -53785,18 +54197,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";
@@ -53807,6 +54207,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
@@ -53825,15 +54234,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;
@@ -53843,43 +54260,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{
@@ -53891,9 +54277,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;
@@ -53908,30 +54291,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;
@@ -53959,13 +54341,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;
@@ -54018,23 +54415,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;
@@ -54055,15 +54443,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,
@@ -54141,6 +54520,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{
@@ -54149,64 +54547,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
@@ -54231,28 +54629,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
@@ -54302,21 +54682,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,
@@ -54325,23 +54690,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
@@ -54350,6 +54698,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";
@@ -54400,15 +54752,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)
@@ -54423,22 +54766,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";
@@ -54460,6 +54787,18 @@
},
/turf/open/floor/almayer/aicore/no_build,
/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
@@ -54468,6 +54807,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
@@ -54484,31 +54832,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";
@@ -54583,6 +54950,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
@@ -54604,10 +54977,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{
@@ -54644,12 +55013,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;
@@ -54670,22 +55033,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{
@@ -54716,6 +55081,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
@@ -54752,6 +55122,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";
@@ -54790,26 +55190,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{
@@ -54819,30 +55219,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
@@ -54866,20 +55255,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
@@ -54922,6 +55309,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;
@@ -54949,6 +55346,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,
@@ -54958,14 +55364,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
@@ -54989,26 +55387,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{
@@ -55038,6 +55420,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{
@@ -55047,15 +55444,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;
@@ -55069,35 +55468,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
@@ -55107,21 +55492,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{
@@ -55139,28 +55527,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,
@@ -55189,10 +55561,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";
@@ -55209,41 +55577,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,
@@ -55284,12 +55636,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
@@ -55299,55 +55645,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,
@@ -55364,12 +55690,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
@@ -55399,6 +55755,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,
@@ -55439,6 +55804,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;
@@ -55448,26 +55817,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{
@@ -55495,22 +55861,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;
@@ -55526,6 +55876,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
@@ -55555,6 +55910,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{
@@ -55565,18 +55926,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";
@@ -55602,28 +55976,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;
@@ -55666,27 +56024,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
@@ -55702,6 +56061,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";
@@ -55711,9 +56100,24 @@
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)
+"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";
@@ -55729,13 +56133,6 @@
},
/turf/open/floor/almayer/aicore/no_build,
/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;
@@ -55794,15 +56191,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;
@@ -55813,19 +56216,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{
@@ -55840,12 +56230,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"
@@ -55855,15 +56239,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,
@@ -55883,18 +56267,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;
@@ -55905,15 +56277,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"
@@ -55929,9 +56304,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{
@@ -55939,15 +56311,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";
@@ -55978,6 +56341,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/pipes/standard/simple/hidden/supply/no_boom,
/obj/structure/machinery/computer/tech_control{
@@ -55987,16 +56358,6 @@
/obj/structure/pipes/standard/simple/hidden/supply/no_boom,
/turf/open/floor/almayer/aicore/no_build,
/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
@@ -56007,12 +56368,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"
@@ -56030,21 +56395,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,
@@ -56083,21 +56448,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"
@@ -56122,19 +56472,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,
@@ -56152,22 +56489,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{
@@ -56177,39 +56508,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
@@ -56234,19 +56551,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,
@@ -56262,6 +56582,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
@@ -56290,6 +56616,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,
@@ -56322,6 +56654,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{
@@ -56349,14 +56693,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;
@@ -56370,16 +56706,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,
@@ -56429,34 +56755,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{
@@ -56466,31 +56776,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
@@ -56530,29 +56831,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,
@@ -56595,6 +56901,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{
@@ -56602,6 +56914,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"
@@ -56636,12 +56961,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;
@@ -56698,15 +57017,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";
@@ -56717,16 +57027,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{
@@ -56746,36 +57070,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";
@@ -56793,17 +57121,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"
@@ -56822,6 +57139,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"
@@ -56835,6 +57170,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,
@@ -56882,12 +57229,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;
@@ -56906,12 +57279,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;
@@ -56939,55 +57335,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
@@ -56999,6 +57412,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,
@@ -57009,20 +57434,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)
@@ -57032,23 +57449,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
@@ -57067,40 +57467,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
@@ -57115,6 +57490,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{
@@ -57124,16 +57506,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
@@ -57174,6 +57550,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";
@@ -57187,36 +57574,65 @@
icon_state = "ai_floor3"
},
/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;
@@ -57249,6 +57665,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;
@@ -57269,6 +57692,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{
@@ -57293,19 +57725,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
@@ -57355,6 +57795,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
@@ -57377,32 +57822,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{
@@ -57413,27 +57844,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{
@@ -57444,16 +57873,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,
@@ -57478,14 +57905,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.";
@@ -57502,15 +57931,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{
@@ -57525,19 +57945,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" = (
@@ -57605,10 +58019,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
@@ -57652,24 +58062,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
@@ -57703,16 +58109,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{
@@ -57781,23 +58195,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{
@@ -57836,26 +58239,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{
@@ -57883,22 +58309,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"
@@ -57935,23 +58383,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/pipes/vents/pump/no_boom/gas{
vent_tag = "Access Corridor";
@@ -57981,24 +58424,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
@@ -58014,18 +58439,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
@@ -58067,28 +58495,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;
@@ -58103,6 +58522,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
@@ -58153,6 +58575,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;
@@ -58162,13 +58590,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{
@@ -58219,6 +58646,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;
@@ -58242,12 +58672,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{
@@ -58290,6 +58714,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;
@@ -58315,6 +58749,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,
@@ -58336,12 +58777,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";
@@ -58377,21 +58819,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
@@ -58417,16 +58844,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
@@ -58485,31 +58910,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
@@ -58525,22 +58940,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;
@@ -58560,6 +58959,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/item/paper_bin/uscm,
@@ -58574,6 +58983,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,
@@ -58590,28 +59007,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
@@ -58623,6 +59023,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,
@@ -58638,6 +59055,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;
@@ -58691,12 +59117,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,
@@ -58714,12 +59146,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;
@@ -58735,10 +59161,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{
@@ -58753,27 +59197,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{
@@ -58836,19 +59259,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,
@@ -58886,15 +59296,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
@@ -58919,14 +59320,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{
@@ -58942,6 +59344,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{
@@ -58966,6 +59390,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.";
@@ -58987,11 +59417,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"
@@ -59018,13 +59443,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,
@@ -59032,29 +59450,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";
@@ -59112,12 +59516,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,
@@ -59146,10 +59544,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,
@@ -59158,6 +59582,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,
@@ -59183,6 +59644,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
@@ -59262,12 +59734,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
@@ -59289,13 +59782,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{
@@ -59329,6 +59815,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";
@@ -59342,12 +59831,22 @@
dir = 8
},
/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
@@ -59428,21 +59927,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{
@@ -59462,6 +59946,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
@@ -59474,6 +59963,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;
@@ -59486,6 +59981,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,
@@ -59493,13 +60003,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"
@@ -59507,21 +60010,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
@@ -59530,13 +60028,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,
@@ -59560,12 +60051,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
@@ -59575,16 +60096,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"
@@ -59605,29 +60116,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,
@@ -59650,12 +60138,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;
@@ -59668,6 +60150,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;
@@ -59679,18 +60167,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;
@@ -59718,16 +60194,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
@@ -59762,12 +60228,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
@@ -59786,19 +60246,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"
@@ -59812,15 +60263,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{
@@ -59835,6 +60277,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{
@@ -59842,25 +60291,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{
@@ -59885,34 +60315,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{
@@ -59950,16 +60391,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;
@@ -59983,39 +60414,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;
@@ -60032,20 +60451,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{
@@ -60056,23 +60485,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;
@@ -60084,6 +60506,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{
@@ -60104,6 +60538,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
@@ -60133,6 +60576,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{
@@ -60196,19 +60651,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"
@@ -60221,15 +60663,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{
@@ -60237,15 +60670,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";
@@ -60256,6 +60689,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{
@@ -60311,6 +60754,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/aicore/glowing/no_build{
@@ -60325,13 +60778,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,
@@ -60373,6 +60819,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"
@@ -60382,20 +60834,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{
@@ -60430,43 +60868,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)
@@ -60495,10 +60907,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{
@@ -60532,26 +60940,15 @@
/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)
-"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"
+"qQS" = (
+/turf/open/floor/almayer/aicore/no_build,
+/area/almayer/command/airoom)
+"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;
@@ -60568,6 +60965,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{
@@ -60581,24 +60984,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,
@@ -60606,14 +61006,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;
@@ -60635,14 +61027,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
@@ -60713,11 +61112,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{
@@ -60740,12 +61143,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"
@@ -60783,34 +61180,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
@@ -60825,43 +61213,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{
@@ -60882,6 +61259,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
@@ -60919,6 +61305,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";
@@ -60975,17 +61365,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;
@@ -61009,20 +61388,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
@@ -61060,21 +61442,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
@@ -61089,12 +61456,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
@@ -61107,24 +61479,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{
@@ -61141,13 +61510,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";
@@ -61163,6 +61525,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,
@@ -61207,6 +61581,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;
@@ -61220,13 +61602,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
@@ -61247,18 +61622,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"
@@ -61298,12 +61661,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
@@ -61318,12 +61675,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
@@ -61344,21 +61703,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{
@@ -61372,24 +61731,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,
@@ -61403,11 +61744,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
@@ -61420,10 +61756,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.";
@@ -61454,23 +61786,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
@@ -61491,13 +61828,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
@@ -61509,18 +61855,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{
@@ -61535,12 +61869,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
@@ -61555,16 +61883,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;
@@ -61575,41 +61893,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{
@@ -61622,18 +61925,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{
@@ -61652,6 +61968,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,
@@ -61659,17 +61981,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{
@@ -61736,10 +62047,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,
@@ -61776,21 +62116,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"
@@ -61836,18 +62191,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{
@@ -61872,18 +62247,28 @@
},
/turf/open/floor/almayer/aicore/no_build,
/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;
@@ -61918,25 +62303,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
@@ -61948,6 +62327,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
@@ -61970,6 +62353,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;
@@ -61977,15 +62371,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,
@@ -61999,14 +62384,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{
@@ -62016,6 +62393,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
@@ -62032,38 +62421,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,
@@ -62075,13 +62436,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{
@@ -62097,15 +62461,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
@@ -62136,13 +62503,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;
@@ -62168,25 +62528,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
@@ -62200,31 +62561,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
@@ -62234,12 +62570,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{
@@ -62327,57 +62657,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;
@@ -62413,26 +62748,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,
@@ -62443,11 +62778,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{
@@ -62474,20 +62815,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"
@@ -62507,28 +62856,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
@@ -62604,6 +62945,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,
@@ -62625,12 +62975,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"
@@ -62646,15 +62990,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
@@ -62707,6 +63042,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;
@@ -62723,6 +63064,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
@@ -62755,15 +63109,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{
@@ -62800,34 +63159,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
@@ -62849,17 +63194,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;
@@ -62885,16 +63228,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";
@@ -62908,19 +63248,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{
@@ -62992,32 +63326,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"
@@ -63042,15 +63373,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"
@@ -63058,6 +63380,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)
@@ -63068,13 +63397,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
@@ -63094,19 +63436,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
@@ -63118,17 +63447,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,
@@ -63161,27 +63490,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;
@@ -63199,27 +63527,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,
@@ -63228,11 +63535,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!";
@@ -63287,6 +63594,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,
@@ -63324,14 +63646,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
@@ -63361,6 +63675,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
@@ -63376,11 +63703,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
@@ -63393,30 +63747,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
@@ -63429,25 +63759,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
@@ -63516,6 +63862,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";
@@ -63534,14 +63912,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
@@ -63550,6 +63920,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;
@@ -63564,14 +63943,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)
@@ -63611,14 +63997,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
@@ -63626,20 +64004,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)
@@ -63649,6 +64013,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
@@ -63674,21 +64044,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)
@@ -63713,6 +64089,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
@@ -63751,30 +64146,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
@@ -63789,35 +64172,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" = (
@@ -63826,6 +64212,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
@@ -63841,14 +64233,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
@@ -63856,10 +64240,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
@@ -63868,20 +64253,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;
@@ -63892,38 +64263,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{
@@ -63943,15 +64296,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;
@@ -63968,12 +64316,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{
@@ -63981,12 +64323,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
@@ -64004,6 +64364,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{
@@ -64013,28 +64388,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{
@@ -64047,23 +64412,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
@@ -64086,6 +64434,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{
@@ -64098,52 +64456,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
@@ -64152,15 +64512,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,
@@ -64169,18 +64520,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"
@@ -64189,13 +64534,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";
@@ -64205,30 +64552,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/aicore/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{
@@ -64237,6 +64587,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
@@ -64247,19 +64630,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;
@@ -64315,15 +64685,12 @@
icon_state = "orangefull"
},
/area/almayer/living/briefing)
-"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{
@@ -64373,6 +64740,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
@@ -64381,6 +64751,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;
@@ -64390,13 +64768,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)
@@ -64503,16 +64902,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{
@@ -64529,12 +64927,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,
@@ -64574,6 +64966,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,
@@ -64585,36 +64985,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{
@@ -64631,12 +65007,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
@@ -64652,23 +65028,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{
@@ -64685,9 +65059,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;
@@ -64717,16 +65088,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";
@@ -64736,6 +65097,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;
@@ -64783,6 +65157,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"
@@ -64820,91 +65201,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"
@@ -64962,10 +65314,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{
@@ -65001,25 +65358,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{
@@ -65057,6 +65395,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,
@@ -65072,34 +65413,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{
@@ -65125,6 +65455,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
@@ -65134,39 +65470,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";
@@ -65202,16 +65505,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,
@@ -65220,39 +65513,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
@@ -65264,28 +65546,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
@@ -65296,19 +65564,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{
@@ -65340,13 +65613,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" = (
@@ -65368,12 +65638,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,
@@ -65385,25 +65649,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{
@@ -65429,18 +65674,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"
@@ -65453,18 +65686,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{
@@ -65486,43 +65707,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{
@@ -65545,12 +65729,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{
@@ -65586,15 +65764,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"
@@ -65608,10 +65777,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
@@ -65623,12 +65788,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
@@ -65638,13 +65821,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;
@@ -65659,6 +65835,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";
@@ -65696,6 +65878,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
@@ -65725,32 +65915,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,
@@ -65758,20 +65934,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,
+"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{
icon_state = "plate"
},
-/area/almayer/maint/hull/lower/l_m_s)
-"sCg" = (
-/turf/open/floor/almayer{
- dir = 8;
- icon_state = "red"
+/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
},
-/area/almayer/hallways/lower/starboard_midship_hallway)
+/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
@@ -65809,12 +65995,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"
@@ -65828,47 +66008,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{
@@ -65885,6 +66038,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;
@@ -65911,15 +66069,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;
@@ -65965,6 +66114,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,
@@ -65973,13 +66130,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"
@@ -66005,15 +66186,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
@@ -66035,6 +66214,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{
@@ -66044,15 +66229,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;
@@ -66069,12 +66283,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,
@@ -66085,10 +66304,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"
@@ -66152,10 +66367,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.";
@@ -66174,30 +66390,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{
@@ -66265,13 +66472,6 @@
},
/turf/open/floor/almayer/aicore/no_build,
/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;
@@ -66282,15 +66482,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
@@ -66298,12 +66498,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{
@@ -66313,6 +66520,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"
@@ -66331,6 +66547,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"
@@ -66339,22 +66567,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"
@@ -66365,12 +66590,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)
@@ -66384,22 +66603,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{
@@ -66443,22 +66649,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
@@ -66487,6 +66688,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;
@@ -66497,23 +66706,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"
@@ -66525,20 +66717,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;
@@ -66566,6 +66752,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;
@@ -66596,6 +66795,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;
@@ -66621,13 +66826,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;
@@ -66635,6 +66836,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{
@@ -66645,12 +66855,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";
@@ -66662,14 +66866,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
@@ -66680,12 +66890,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
@@ -66709,15 +66943,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,
@@ -66738,23 +66979,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
@@ -66794,12 +67043,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;
@@ -66815,6 +67066,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";
@@ -66828,15 +67095,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"
@@ -66845,6 +67103,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,
@@ -66856,6 +67129,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;
@@ -66881,28 +67165,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
@@ -66959,18 +67221,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;
@@ -67031,6 +67281,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{
@@ -67087,9 +67364,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";
@@ -67118,6 +67392,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";
@@ -67129,43 +67408,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"
@@ -67202,14 +67504,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{
@@ -67250,27 +67544,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
@@ -67288,14 +67590,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{
@@ -67303,10 +67604,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,
@@ -67321,6 +67618,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
@@ -67342,6 +67642,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{
@@ -67351,10 +67661,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
@@ -67366,37 +67672,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
@@ -67406,6 +67691,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,
@@ -67439,6 +67733,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;
@@ -67461,6 +67761,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)
@@ -67489,12 +67795,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;
@@ -67576,31 +67876,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{
@@ -67626,40 +67909,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,
@@ -67696,6 +67945,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;
@@ -67751,6 +68010,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,
@@ -67762,22 +68028,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{
@@ -67811,38 +68082,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
@@ -67854,9 +68131,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
@@ -67868,12 +68155,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
@@ -67889,17 +68170,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,
@@ -67920,20 +68199,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{
@@ -67950,37 +68215,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";
@@ -67991,29 +68240,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
@@ -68024,6 +68289,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"
@@ -68036,47 +68304,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,
@@ -68153,9 +68380,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{
@@ -68196,10 +68431,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";
@@ -68232,24 +68469,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{
@@ -68330,45 +68549,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"
@@ -68381,26 +68564,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
@@ -68409,13 +68589,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
@@ -68447,21 +68620,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{
@@ -68506,13 +68674,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
@@ -68527,47 +68710,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
@@ -68582,17 +68724,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
@@ -68607,6 +68738,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{
@@ -68617,6 +68751,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{
@@ -68624,28 +68765,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;
@@ -68662,14 +68809,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{
@@ -68684,6 +68827,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{
@@ -68713,13 +68862,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,
@@ -68731,42 +68885,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
- },
+"tCi" = (
/turf/open/floor/almayer{
- icon_state = "plate"
- },
-/area/almayer/maint/hull/upper/u_a_s)
-"tBY" = (
-/obj/structure/machinery/power/apc/almayer{
- dir = 1
- },
-/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{
@@ -68785,23 +68915,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" = (
@@ -68812,6 +68929,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
@@ -68845,15 +68973,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{
@@ -68895,11 +69035,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{
@@ -68964,47 +69109,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{
@@ -69031,12 +69135,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";
@@ -69064,15 +69183,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"
@@ -69088,12 +69198,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";
@@ -69106,13 +69216,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";
@@ -69128,17 +69240,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,
@@ -69147,24 +69252,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
@@ -69226,6 +69340,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
@@ -69277,17 +69410,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";
@@ -69310,22 +69467,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";
@@ -69335,19 +69476,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;
@@ -69366,6 +69519,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";
@@ -69394,52 +69553,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
@@ -69453,20 +69572,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
@@ -69482,16 +69587,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{
@@ -69509,30 +69604,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,
@@ -69553,14 +69662,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;
@@ -69583,15 +69689,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
@@ -69614,9 +69720,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,
@@ -69630,13 +69733,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;
@@ -69689,12 +69785,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";
@@ -69704,84 +69801,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
@@ -69838,11 +69889,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
@@ -69886,6 +69946,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
@@ -69897,15 +69973,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";
@@ -69927,12 +69997,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"
@@ -69961,23 +70025,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{
@@ -70000,12 +70057,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
@@ -70016,6 +70067,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
@@ -70039,15 +70097,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{
@@ -70058,6 +70107,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{
@@ -70081,6 +70133,19 @@
},
/turf/open/floor/almayer/aicore/no_build,
/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{
@@ -70094,27 +70159,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,
@@ -70125,14 +70169,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{
@@ -70155,23 +70191,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"
@@ -70205,6 +70230,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,
@@ -70260,12 +70292,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{
@@ -70279,6 +70311,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";
@@ -70290,6 +70328,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{
@@ -70330,12 +70377,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,
@@ -70356,21 +70429,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";
@@ -70381,22 +70439,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,
@@ -70415,6 +70475,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;
@@ -70442,12 +70509,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!";
@@ -70476,12 +70537,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,
@@ -70500,19 +70572,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{
@@ -70559,22 +70627,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
@@ -70584,15 +70691,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,
@@ -70600,6 +70698,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
@@ -70609,22 +70715,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
@@ -70658,6 +70748,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,
@@ -70677,13 +70773,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,
@@ -70695,16 +70808,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
@@ -70726,18 +70829,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;
@@ -70747,13 +70862,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
@@ -70768,6 +70904,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
@@ -70781,10 +70924,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{
@@ -70815,13 +70954,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
@@ -70861,60 +70993,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
@@ -70929,6 +71043,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{
@@ -70939,19 +71066,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"
@@ -70963,6 +71077,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
@@ -71013,15 +71134,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
@@ -71096,12 +71208,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";
@@ -71125,46 +71231,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{
@@ -71183,6 +71264,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;
@@ -71217,10 +71315,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
@@ -71241,6 +71359,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
@@ -71285,18 +71409,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
@@ -71313,12 +71425,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
@@ -71352,6 +71473,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;
@@ -71381,13 +71511,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,
@@ -71408,15 +71544,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,
@@ -71435,6 +71562,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
@@ -71479,6 +71612,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;
@@ -71497,37 +71634,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
@@ -71556,6 +71676,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{
@@ -71567,27 +71702,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,
@@ -71606,12 +71720,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
@@ -71619,9 +71734,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;
@@ -71639,6 +71765,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;
@@ -71648,36 +71787,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";
@@ -71708,12 +71826,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{
@@ -71724,11 +71836,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{
@@ -71746,18 +71874,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,
@@ -71768,54 +71897,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"
@@ -71836,19 +71965,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"
@@ -71857,6 +71991,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
@@ -71866,13 +72019,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
@@ -71907,11 +72065,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{
@@ -71922,12 +72082,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;
@@ -71943,26 +72097,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,
@@ -71999,24 +72142,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{
@@ -72031,10 +72168,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,
@@ -72056,17 +72189,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"
@@ -72076,14 +72206,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{
@@ -72096,15 +72218,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;
@@ -72115,13 +72240,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
@@ -72130,15 +72248,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" = (
@@ -72159,6 +72281,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{
@@ -72191,12 +72338,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
@@ -72224,14 +72365,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";
@@ -72265,16 +72398,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;
@@ -72289,31 +72422,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{
@@ -72322,13 +72437,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,
@@ -72336,16 +72444,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
@@ -72376,6 +72478,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;
@@ -72392,28 +72498,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
@@ -72466,6 +72550,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
@@ -72480,36 +72568,34 @@
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
},
/turf/open/floor/almayer/aicore/no_build,
/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;
@@ -72541,29 +72627,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
@@ -72613,16 +72685,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"
@@ -72632,13 +72694,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
@@ -72671,22 +72726,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{
@@ -72712,12 +72765,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
@@ -72741,49 +72788,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"
@@ -72805,16 +72833,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)
@@ -72834,6 +72869,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.";
@@ -72877,18 +72918,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
@@ -72919,22 +72967,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
@@ -72947,6 +73014,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;
@@ -72982,26 +73065,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{
@@ -73012,27 +73089,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
@@ -73045,6 +73111,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;
@@ -73085,16 +73178,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,
@@ -73176,6 +73259,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)
@@ -73192,6 +73281,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;
@@ -73215,10 +73329,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.";
@@ -73264,6 +73383,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
@@ -73339,6 +73467,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
@@ -73367,29 +73514,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{
@@ -73413,45 +73550,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
@@ -73486,27 +73598,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;
@@ -73520,26 +73611,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
@@ -73550,9 +73629,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,
@@ -73628,13 +73725,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{
@@ -73657,15 +73747,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"
@@ -73704,12 +73785,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;
@@ -73719,35 +73823,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{
@@ -73759,10 +73873,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;
@@ -73780,22 +73895,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;
@@ -73821,19 +73929,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
@@ -73864,6 +73959,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
@@ -73903,6 +74009,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;
@@ -73910,6 +74020,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;
@@ -73959,19 +74080,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
@@ -73981,32 +74093,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;
@@ -74014,6 +74104,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"
@@ -74024,6 +74127,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{
@@ -74044,6 +74161,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"
@@ -74067,6 +74193,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"
@@ -74092,12 +74231,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)
@@ -74106,6 +74266,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,
@@ -74119,16 +74300,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;
@@ -74162,15 +74333,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
@@ -74180,6 +74342,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{
@@ -74226,25 +74392,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;
@@ -74299,16 +74452,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
@@ -74371,17 +74530,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,
@@ -74389,14 +74537,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{
@@ -74418,12 +74558,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{
@@ -74431,9 +74565,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
@@ -74443,13 +74574,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
@@ -74479,24 +74624,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,
@@ -74516,17 +74646,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
@@ -74536,20 +74655,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;
@@ -74601,6 +74724,12 @@
dir = 8
},
/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)
@@ -74616,10 +74745,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,
@@ -74680,14 +74805,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
@@ -74696,53 +74860,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
@@ -74758,6 +74904,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";
@@ -74769,15 +74919,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
@@ -74801,10 +74956,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";
@@ -74815,6 +74988,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{
@@ -74822,15 +75007,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{
@@ -74846,38 +75026,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{
@@ -74885,6 +75073,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{
@@ -74900,6 +75096,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{
@@ -74922,33 +75125,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{
@@ -75023,6 +75199,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";
@@ -75046,6 +75236,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;
@@ -75055,26 +75254,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{
@@ -75092,10 +75293,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
@@ -75138,6 +75370,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{
@@ -75145,12 +75387,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,
@@ -75173,15 +75464,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";
@@ -75196,13 +75478,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)
@@ -75210,15 +75502,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;
@@ -75258,20 +75574,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
@@ -75289,39 +75591,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"
@@ -75340,38 +75638,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{
@@ -75445,15 +75711,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";
@@ -75473,6 +75730,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,
@@ -75509,6 +75775,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
@@ -75523,16 +75801,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{
@@ -75546,6 +75830,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,
@@ -75559,6 +75849,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
@@ -75581,21 +75877,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{
@@ -75661,13 +75948,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
@@ -75698,16 +75978,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,
@@ -75727,33 +75997,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;
@@ -75789,14 +76054,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;
@@ -75816,40 +76079,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,
@@ -75973,12 +76225,6 @@
},
/turf/open/floor/almayer/aicore/glowing/no_build,
/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;
@@ -75989,33 +76235,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,
@@ -76101,6 +76339,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{
@@ -76120,15 +76366,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,
@@ -76137,11 +76408,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"
@@ -76151,17 +76452,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{
@@ -76172,18 +76484,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
@@ -76237,15 +76537,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
@@ -76265,6 +76565,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{
@@ -76272,20 +76578,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
@@ -76365,19 +76670,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;
@@ -76392,18 +76699,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,
@@ -76430,24 +76734,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;
@@ -76480,6 +76766,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{
@@ -76516,6 +76821,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
@@ -76563,13 +76875,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,
@@ -76580,14 +76891,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)
@@ -76606,9 +76945,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
@@ -76650,27 +76995,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
@@ -76727,38 +77051,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,
@@ -76786,6 +77081,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
@@ -76815,6 +77114,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";
@@ -76839,6 +77145,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
@@ -76876,32 +77201,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
@@ -76928,6 +77239,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
@@ -76937,6 +77254,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
@@ -76945,12 +77273,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,
@@ -76984,6 +77306,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,
@@ -76997,6 +77327,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
@@ -77045,9 +77383,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{
@@ -77064,20 +77423,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
@@ -77116,12 +77461,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
@@ -77150,15 +77489,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{
@@ -77169,55 +77526,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;
@@ -77275,64 +77604,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"
@@ -77342,14 +77645,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;
@@ -77357,6 +77652,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{
@@ -77375,14 +77679,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";
@@ -77408,26 +77704,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,
@@ -77450,6 +77726,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
@@ -77482,6 +77783,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{
@@ -77508,6 +77813,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{
@@ -77526,18 +77837,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,
@@ -77546,6 +77845,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;
@@ -77577,11 +77884,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"
@@ -77590,20 +77901,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;
@@ -77638,32 +77935,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{
@@ -77676,46 +77947,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
@@ -77729,17 +77980,32 @@
dir = 6;
icon_state = "red"
},
-/area/almayer/shipboard/brig/lobby)
-"wBw" = (
-/obj/structure/pipes/vents/pump,
-/obj/structure/machinery/status_display{
- pixel_y = 30
+/area/almayer/shipboard/brig/lobby)
+"wBg" = (
+/obj/structure/sign/safety/distribution_pipes{
+ pixel_x = 32
+ },
+/turf/open/floor/almayer{
+ dir = 4;
+ icon_state = "orange"
+ },
+/area/almayer/hallways/lower/port_aft_hallway)
+"wBl" = (
+/obj/structure/machinery/power/apc/almayer{
+ dir = 8
},
/turf/open/floor/almayer{
- dir = 1;
- icon_state = "green"
+ dir = 5;
+ icon_state = "plating"
},
-/area/almayer/hallways/lower/starboard_midship_hallway)
+/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{
@@ -77763,12 +78029,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";
@@ -77793,25 +78068,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{
@@ -77849,15 +78105,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{
@@ -77885,14 +78132,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,
@@ -77917,6 +78164,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,
@@ -77930,12 +78194,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
@@ -77951,6 +78209,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,
@@ -77978,34 +78245,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
@@ -78021,12 +78287,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,
@@ -78059,13 +78319,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"
@@ -78089,6 +78342,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();
@@ -78102,12 +78362,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)
@@ -78132,35 +78392,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
@@ -78180,16 +78436,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/aicore/no_build{
icon_state = "ai_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;
@@ -78211,23 +78469,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;
@@ -78246,15 +78515,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";
@@ -78270,6 +78530,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";
@@ -78285,6 +78550,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;
@@ -78347,6 +78621,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
@@ -78355,24 +78643,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"
@@ -78381,21 +78651,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
@@ -78404,17 +78659,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
@@ -78454,27 +78698,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"
@@ -78487,18 +78716,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
@@ -78508,18 +78753,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;
@@ -78529,27 +78762,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"
@@ -78577,25 +78789,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
@@ -78609,19 +78813,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,
@@ -78661,6 +78889,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
@@ -78685,15 +78917,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,
@@ -78701,12 +78924,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
@@ -78746,6 +78963,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
@@ -78763,23 +78984,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;
@@ -78797,28 +79001,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)
@@ -78830,6 +79018,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{
@@ -78839,12 +79031,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;
@@ -78880,13 +79069,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,
@@ -78914,6 +79096,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
@@ -78933,14 +79121,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)
@@ -78969,14 +79156,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)
@@ -78986,6 +79165,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,
@@ -79009,6 +79192,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"
@@ -79017,12 +79223,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
@@ -79035,12 +79251,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"
@@ -79055,35 +79274,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
@@ -79096,6 +79318,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{
@@ -79107,30 +79339,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!";
@@ -79144,6 +79368,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,
@@ -79155,6 +79388,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,
@@ -79177,6 +79417,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;
@@ -79188,12 +79433,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{
@@ -79247,6 +79486,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)
@@ -79259,24 +79506,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;
@@ -79292,60 +79550,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,
@@ -79369,6 +79604,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,
@@ -79385,80 +79628,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
@@ -79502,17 +79725,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
@@ -79521,40 +79733,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
@@ -79564,16 +79742,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
@@ -79587,44 +79755,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{
@@ -79638,24 +79781,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
@@ -79670,18 +79801,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{
@@ -79696,9 +79829,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;
@@ -79709,6 +79846,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{
@@ -79768,12 +79911,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
@@ -79786,6 +79923,9 @@
icon_state = "plate"
},
/area/almayer/hallways/hangar)
+"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";
@@ -79797,34 +79937,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
@@ -79834,20 +79949,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,
@@ -79884,21 +80013,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{
@@ -79925,6 +80054,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";
@@ -79947,6 +80092,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,
@@ -79978,28 +80130,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
@@ -80014,15 +80153,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;
@@ -80040,24 +80179,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.";
@@ -80075,12 +80196,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
@@ -80101,6 +80230,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;
@@ -80160,19 +80306,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,
@@ -80207,17 +80340,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
@@ -80226,20 +80348,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
@@ -80249,28 +80377,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"
@@ -80280,27 +80399,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{
@@ -80308,26 +80449,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;
@@ -80335,23 +80467,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;
@@ -80398,6 +80520,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{
@@ -80421,16 +80550,6 @@
dir = 4
},
/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{
@@ -80447,15 +80566,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;
@@ -80469,18 +80579,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;
@@ -80511,15 +80609,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;
@@ -80564,6 +80673,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
@@ -80601,19 +80716,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{
@@ -80712,12 +80824,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{
@@ -80729,11 +80835,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{
@@ -80744,21 +80845,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"
@@ -80791,13 +80888,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,
@@ -80807,6 +80903,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
@@ -80842,12 +80948,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;
@@ -80855,14 +80955,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{
@@ -80892,17 +80990,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";
@@ -80919,6 +81016,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/aicore/no_build,
@@ -80930,15 +81031,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{
@@ -80949,14 +81041,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,
@@ -80968,6 +81066,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"
@@ -80979,21 +81086,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{
@@ -81011,18 +81109,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{
@@ -81044,15 +81142,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";
@@ -81063,78 +81152,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,
@@ -81151,6 +81200,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;
@@ -81175,15 +81232,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
@@ -81218,17 +81284,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";
@@ -81245,18 +81333,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;
@@ -81303,28 +81414,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
@@ -81353,15 +81451,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)
@@ -81390,26 +81479,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;
@@ -81477,12 +81546,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
@@ -81516,24 +81579,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,
@@ -81563,26 +81616,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,
@@ -81591,12 +81624,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
@@ -81612,24 +81645,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
@@ -81639,38 +81654,25 @@
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/aicore/no_build,
/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;
@@ -81704,17 +81706,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
@@ -81735,16 +81737,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
@@ -81755,12 +81755,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{
@@ -81788,6 +81782,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
@@ -81807,17 +81805,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,
@@ -81837,6 +81824,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{
@@ -81882,13 +81883,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,
@@ -81905,25 +81911,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{
@@ -81935,6 +81939,16 @@
},
/turf/open/floor/almayer/aicore/no_build,
/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";
@@ -81947,6 +81961,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)
@@ -81984,28 +82004,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)
@@ -82015,6 +82038,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
@@ -82038,6 +82072,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;
@@ -82071,6 +82114,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,
@@ -82078,6 +82133,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";
@@ -82093,6 +82174,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{
@@ -82100,12 +82188,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;
@@ -82113,12 +82219,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)
@@ -82147,12 +82247,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;
@@ -82180,10 +82274,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
@@ -82192,28 +82291,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
@@ -82225,6 +82302,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
@@ -82234,18 +82317,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"
@@ -82278,31 +82365,16 @@
},
/turf/open/floor/almayer/aicore/no_build,
/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";
@@ -82310,26 +82382,16 @@
},
/turf/open/floor/almayer/aicore/no_build,
/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;
@@ -82337,14 +82399,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{
@@ -82368,6 +82422,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;
@@ -82383,9 +82444,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
@@ -82417,14 +82475,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
@@ -82434,15 +82491,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
@@ -82453,6 +82514,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
@@ -82461,19 +82533,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";
@@ -82513,6 +82572,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
@@ -82521,6 +82586,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
@@ -82558,6 +82652,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;
@@ -82566,12 +82670,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;
@@ -82584,13 +82682,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,
@@ -82598,13 +82689,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"
@@ -82617,19 +82701,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{
@@ -82637,6 +82708,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{
@@ -82646,44 +82721,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;
@@ -82692,42 +82735,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/pipes/vents/pump/no_boom/gas{
vent_tag = "Operations - Records";
@@ -82735,6 +82765,18 @@
},
/turf/open/floor/almayer/aicore/no_build,
/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;
@@ -82766,6 +82808,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";
@@ -82775,15 +82829,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
@@ -82802,11 +82847,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
@@ -82818,33 +82873,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;
@@ -82861,61 +82916,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";
@@ -82950,23 +82950,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
@@ -90722,8 +90712,8 @@ aaa
aaa
aaa
aad
-uDg
-uDg
+sOq
+sOq
hPI
pQr
rib
@@ -90741,8 +90731,8 @@ jNT
jNT
wSK
feb
-xiV
-xiV
+lFL
+lFL
ajZ
aaa
aaa
@@ -90924,9 +90914,9 @@ aaf
aaf
aaf
aaf
-uDg
-uDg
-lHk
+sOq
+sOq
+ryg
naB
wnw
pHp
@@ -90944,9 +90934,9 @@ xzO
pNk
jIH
mtl
-igS
-xiV
-xiV
+ktH
+lFL
+lFL
aaf
aaf
aaf
@@ -91120,19 +91110,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
@@ -91147,16 +91137,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
@@ -91323,16 +91313,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
@@ -91348,18 +91338,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
@@ -91526,19 +91516,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
@@ -91554,15 +91544,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
@@ -91728,10 +91718,10 @@ bdH
bdH
aad
aag
-uDg
-uDg
-gkr
-xkc
+sOq
+sOq
+sjC
+pjr
vBm
vBm
vBm
@@ -91763,10 +91753,10 @@ xkd
xkd
xkd
xkd
-pdp
-oDh
-xiV
-xiV
+xXu
+tyH
+lFL
+lFL
aag
ajZ
bdH
@@ -91931,10 +91921,10 @@ bdH
bdH
aad
aag
-uDg
-pOp
-gkr
-cth
+sOq
+pnI
+sjC
+hNh
vBm
rBV
oPk
@@ -91966,10 +91956,10 @@ uns
vCy
eyV
xkd
-mkF
-oDh
-pdp
-xiV
+nWt
+tyH
+xXu
+lFL
aag
ajZ
bdH
@@ -92134,10 +92124,10 @@ bdH
bdH
aad
aag
-uDg
-lDT
-xkc
-xyZ
+sOq
+naN
+pjr
+lHE
vBm
ldu
wgi
@@ -92169,10 +92159,10 @@ xGh
jVa
wDs
xkd
-oHf
-oDh
-pdp
-xiV
+abN
+tyH
+xXu
+lFL
aag
ajZ
bdH
@@ -92337,9 +92327,9 @@ bdH
bdH
aad
aag
-uDg
-xkc
-gkr
+sOq
+pjr
+sjC
vBm
vBm
sFC
@@ -92349,10 +92339,10 @@ vBm
lOI
pJv
jLM
-btn
+sXy
cMb
rbi
-wDp
+kwU
xys
nkX
iQB
@@ -92373,9 +92363,9 @@ tUx
wRN
xkd
xkd
-pdp
-oDh
-xiV
+xXu
+tyH
+lFL
aag
ajZ
bdH
@@ -92443,10 +92433,10 @@ aaa
bdH
aad
aag
-nBJ
-nBJ
-nBJ
-nBJ
+tNf
+tNf
+tNf
+tNf
aag
dqw
uwv
@@ -92468,10 +92458,10 @@ dqw
aag
aag
aag
-wid
-wid
-wid
-wid
+tQN
+tQN
+tQN
+tQN
aag
ajZ
bdH
@@ -92540,9 +92530,9 @@ bdH
bdH
aad
aag
-lrE
-xkc
-gkr
+ocS
+pjr
+sjC
vBm
ykP
xAj
@@ -92576,9 +92566,9 @@ tUx
xJe
qLt
xkd
-pdp
-oDh
-cPj
+xXu
+tyH
+pqG
aag
etE
bdH
@@ -92646,9 +92636,9 @@ aaa
bdH
aad
aag
-nBJ
-kJc
-jFt
+tNf
+sOH
+dRN
bAs
bAs
bAs
@@ -92672,9 +92662,9 @@ bTT
bTT
bTT
bAs
-kOR
-jYM
-wid
+oFb
+obx
+tQN
aag
ajZ
bdH
@@ -92743,9 +92733,9 @@ bdH
bdH
aad
aag
-lrE
-gkr
-xkc
+ocS
+sjC
+pjr
vBm
ykP
xjG
@@ -92779,9 +92769,9 @@ ycm
qCo
pWr
xkd
-aGa
-oDh
-cPj
+xXX
+tyH
+pqG
aag
ajZ
bdH
@@ -92849,9 +92839,9 @@ aaa
bdH
aad
aag
-nBJ
-rUi
-grv
+tNf
+jln
+vXr
bBA
bAK
bCY
@@ -92875,9 +92865,9 @@ acr
bPG
acN
bBA
-gTK
-fWg
-wid
+nHN
+sjZ
+tQN
aag
ajZ
bdH
@@ -92946,9 +92936,9 @@ bdH
bdH
aad
aag
-lrE
-vDh
-xkc
+ocS
+lYZ
+pjr
lrq
lrq
lrq
@@ -92982,9 +92972,9 @@ cyZ
jVa
fJT
xkd
-rfB
-pdp
-cPj
+mPQ
+xXu
+pqG
aag
eSU
bdH
@@ -93052,9 +93042,9 @@ aaa
bdH
aad
aag
-nBJ
-uRR
-mFQ
+tNf
+pDk
+wjN
bBA
hWJ
bCY
@@ -93078,9 +93068,9 @@ bHP
bPG
hpk
bBA
-yhZ
-wtD
-wid
+rAk
+szS
+tQN
aag
ajZ
bdH
@@ -93149,9 +93139,9 @@ bdH
bdH
aad
aag
-uDg
-cth
-qsp
+sOq
+hNh
+vtH
lrq
kEc
chv
@@ -93185,9 +93175,9 @@ dfk
vzz
moB
xkd
-gNZ
-pdp
-xiV
+pVg
+xXu
+lFL
aag
ajZ
bdH
@@ -93255,9 +93245,9 @@ aaa
bdH
aad
aag
-nBJ
-ecS
-eQR
+tNf
+qqi
+fvs
gol
akb
bCY
@@ -93281,9 +93271,9 @@ bPn
bPG
ald
gol
-sGK
-hLu
-wid
+kuI
+lGZ
+tQN
aag
ajZ
bdH
@@ -93352,9 +93342,9 @@ bdH
bdH
aad
aag
-uDg
-cUl
-gkr
+sOq
+tnD
+sjC
lrq
heo
nqe
@@ -93388,9 +93378,9 @@ eZH
tUx
cXi
xkd
-ttB
-pdp
-xiV
+vFr
+xXu
+lFL
aag
twB
bdH
@@ -93458,9 +93448,9 @@ aaa
bdH
aad
aag
-nBJ
-eQR
-xAu
+tNf
+fvs
+neX
bBA
bAN
bCY
@@ -93484,9 +93474,9 @@ bPo
bPG
acs
bBA
-xHX
-sGK
-wid
+edx
+kuI
+tQN
aag
ajZ
bdH
@@ -93555,9 +93545,9 @@ bdH
bdH
aad
aag
-lrE
-vOM
-gkr
+ocS
+nMT
+sjC
lrq
kui
uqo
@@ -93591,9 +93581,9 @@ nYd
thL
jVa
fgR
-nEc
-oDh
-cPj
+pwx
+tyH
+pqG
aag
ajZ
bdH
@@ -93661,9 +93651,9 @@ aaa
bdH
aad
aag
-nBJ
-ldF
-eox
+tNf
+cCG
+iWW
bBA
bAO
bCZ
@@ -93687,9 +93677,9 @@ bDW
bPJ
iuz
bBA
-mVh
-uMf
-wid
+aGh
+bjh
+tQN
aag
ajZ
bdH
@@ -93758,16 +93748,16 @@ bdH
bdH
aad
aag
-lrE
-etN
-xkc
+ocS
+lFv
+pjr
lrq
sEZ
nqe
nqe
nqe
nqe
-mza
+vcL
eRL
wfB
tpn
@@ -93794,9 +93784,9 @@ liZ
rUk
jVa
fgR
-azg
-gKv
-cPj
+xGv
+tht
+pqG
aag
rEr
bdH
@@ -93864,9 +93854,9 @@ aaa
bdH
aad
aag
-nBJ
-ldF
-eQR
+tNf
+cCG
+fvs
bBA
bAP
aqu
@@ -93890,9 +93880,9 @@ aqu
aqu
bQz
bBA
-sGK
-vOG
-wid
+kuI
+tDw
+tQN
aag
ajZ
bdH
@@ -93961,9 +93951,9 @@ bdH
bdH
aad
aag
-lrE
-gkr
-xkc
+ocS
+sjC
+pjr
lrq
dEX
fxJ
@@ -93997,9 +93987,9 @@ uaU
rUk
xaM
fgR
-hIG
-pdp
-cPj
+tDq
+xXu
+pqG
aag
ajZ
bdH
@@ -94067,9 +94057,9 @@ aaa
bdH
aad
aag
-nBJ
-vCE
-ldF
+tNf
+uAN
+cCG
bBA
bBu
amg
@@ -94093,9 +94083,9 @@ amg
amg
rAD
bBA
-sGK
-mVh
-wid
+kuI
+aGh
+tQN
aag
ajZ
bdH
@@ -94164,9 +94154,9 @@ bdH
bdH
aad
aag
-uDg
-xkc
-xkc
+sOq
+pjr
+pjr
lrq
iwV
iwV
@@ -94200,9 +94190,9 @@ uxa
iZU
nhG
xkd
-oDh
-uqg
-xiV
+tyH
+qnN
+lFL
aag
uJk
bdH
@@ -94270,9 +94260,9 @@ aaa
bdH
aad
aag
-nBJ
-amu
-eQR
+tNf
+pTQ
+fvs
bBA
bBu
amg
@@ -94296,9 +94286,9 @@ amg
amg
rAD
bBA
-ozH
-flr
-wid
+oac
+eEq
+tQN
aag
ajZ
bdH
@@ -94367,9 +94357,9 @@ bdH
bdH
aad
aag
-uDg
-gkr
-old
+sOq
+sjC
+lgM
cQv
oVf
rmx
@@ -94403,9 +94393,9 @@ tov
thL
sUs
xkd
-gNZ
-pdp
-xiV
+pVg
+xXu
+lFL
aag
ajZ
bdH
@@ -94473,9 +94463,9 @@ aaa
bdH
aad
aag
-nBJ
-kMW
-eQR
+tNf
+bHC
+fvs
bBA
bBv
aqu
@@ -94499,9 +94489,9 @@ tkq
aqu
bQG
bBA
-uoO
-mVh
-wid
+irA
+aGh
+tQN
aag
ajZ
bdH
@@ -94570,9 +94560,9 @@ bdH
bdH
aad
aag
-lrE
-gkr
-wJC
+ocS
+sjC
+ogi
cQv
cBw
kde
@@ -94606,9 +94596,9 @@ tov
thL
xhx
fgR
-oDh
-pdp
-cPj
+tyH
+xXu
+pqG
aag
scz
bdH
@@ -94676,9 +94666,9 @@ aaa
bdH
aad
aag
-nBJ
-iWJ
-eQR
+tNf
+eYN
+fvs
bBA
bBx
amg
@@ -94702,9 +94692,9 @@ bPq
amg
rAD
bBA
-sGK
-nhV
-wid
+kuI
+ucU
+tQN
aag
ajZ
bdH
@@ -94773,9 +94763,9 @@ bdH
bdH
aad
aag
-lrE
-gkr
-wMF
+ocS
+sjC
+eDN
cQv
eaf
bEv
@@ -94809,9 +94799,9 @@ iFc
thL
tUx
fgR
-pdp
-hIG
-cPj
+xXu
+tDq
+pqG
aag
ajZ
bdH
@@ -94879,9 +94869,9 @@ aaa
aac
aag
aag
-nBJ
-dKS
-ffN
+tNf
+tzw
+pcY
bBA
bBy
amg
@@ -94905,9 +94895,9 @@ aoa
amg
bQE
bBA
-bME
-sGK
-wid
+dkR
+kuI
+tQN
aag
aag
ajY
@@ -94976,9 +94966,9 @@ bdH
bdH
aad
aag
-lrE
-xkc
-vDh
+ocS
+pjr
+lYZ
cQv
eaf
bEv
@@ -95012,9 +95002,9 @@ thL
thL
tUx
fgR
-pdp
-aCA
-cPj
+xXu
+rlY
+pqG
aag
okD
bdH
@@ -95081,10 +95071,10 @@ aaa
aaa
aad
aag
-nBJ
-nBJ
-eQR
-bTW
+tNf
+tNf
+fvs
+phn
bBA
bBz
aqu
@@ -95108,10 +95098,10 @@ bEx
aqu
bQI
bBA
-gsy
-sGK
-wid
-wid
+xTQ
+kuI
+tQN
+tQN
aag
ajZ
aaa
@@ -95179,9 +95169,9 @@ bdH
bdH
aad
aag
-uDg
-xkc
-xkc
+sOq
+pjr
+pjr
cQv
eaf
bEv
@@ -95215,9 +95205,9 @@ thL
thL
tUx
xkd
-pdp
-vhA
-xiV
+xXu
+xNY
+lFL
aag
ajZ
bdH
@@ -95284,10 +95274,10 @@ aaa
aaa
aad
aag
-nBJ
-ldF
-ldF
-xiP
+tNf
+cCG
+cCG
+oVn
bBA
lsV
amg
@@ -95311,10 +95301,10 @@ bPC
amg
pyL
bBA
-cDb
-sGK
-nhV
-wid
+nrG
+kuI
+ucU
+tQN
aag
ajZ
bdH
@@ -95382,9 +95372,9 @@ bdH
bdH
aad
aag
-uDg
-lDT
-xkc
+sOq
+naN
+pjr
cQv
eaf
bEv
@@ -95418,9 +95408,9 @@ thL
thL
tUx
xkd
-pdp
-oDh
-xiV
+xXu
+tyH
+lFL
aag
ajZ
bdH
@@ -95486,11 +95476,11 @@ aaf
aaf
aaf
aag
-nBJ
-nBJ
-ldF
-eQR
-uFp
+tNf
+tNf
+cCG
+fvs
+grf
bBA
bBA
tiR
@@ -95507,18 +95497,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
@@ -95585,9 +95575,9 @@ bdH
bdH
aad
aag
-uDg
-gkr
-qsp
+sOq
+sjC
+vtH
cQv
xLl
bEv
@@ -95621,9 +95611,9 @@ tUx
vsz
oEE
xkd
-gNZ
-pdp
-xiV
+pVg
+xXu
+lFL
aag
ajZ
bdH
@@ -95686,18 +95676,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
@@ -95710,21 +95700,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
@@ -95787,10 +95777,10 @@ aaa
bdH
bdH
aad
-uDg
-uDg
-xkc
-eeA
+sOq
+sOq
+pjr
+vnU
cQv
dzG
kde
@@ -95824,10 +95814,10 @@ smZ
wIC
tMH
wIC
-pRs
-pdp
-xiV
-xiV
+cBQ
+xXu
+lFL
+lFL
ajZ
bdH
bdH
@@ -95889,18 +95879,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
@@ -95913,21 +95903,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
@@ -95990,10 +95980,10 @@ aaa
bdH
bdH
aad
-uDg
-hzN
-gkr
-krG
+sOq
+vvj
+sjC
+mzk
cQv
rdM
gUg
@@ -96027,10 +96017,10 @@ crp
dco
dqZ
wIC
-uxb
-oDh
-pdp
-xiV
+fGB
+tyH
+xXu
+lFL
ajZ
bdH
bdH
@@ -96092,14 +96082,14 @@ aaa
aaa
aad
aag
-nBJ
-lJM
-ldF
-eQR
-ldF
-lyP
-bos
-gpO
+tNf
+cvL
+cCG
+fvs
+cCG
+sep
+oZF
+luJ
kcp
kcp
iqp
@@ -96116,21 +96106,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
@@ -96193,9 +96183,9 @@ aaa
bdH
bdH
aad
-uDg
-fHb
-gkr
+sOq
+vEq
+sjC
vxM
vxM
vxM
@@ -96231,9 +96221,9 @@ vAG
jIo
wIC
wIC
-oDh
-pdp
-xiV
+tyH
+xXu
+lFL
ajZ
bdH
bdH
@@ -96295,14 +96285,14 @@ aaa
aaa
aad
aag
-nBJ
-eQR
-eQR
-ldF
-eQR
-sxS
-bos
-gpO
+tNf
+fvs
+fvs
+cCG
+fvs
+hdO
+oZF
+luJ
kcp
bBD
bTS
@@ -96310,30 +96300,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
@@ -96396,9 +96386,9 @@ aaa
bdH
bdH
aad
-uDg
-xkc
-gkr
+sOq
+pjr
+sjC
vxM
rfY
kGu
@@ -96434,9 +96424,9 @@ sJm
dqZ
rDY
wIC
-pdp
-kIf
-xiV
+xXu
+wkw
+lFL
ajZ
bdH
bdH
@@ -96498,14 +96488,14 @@ aaa
aaa
aad
aag
-nBJ
-ldF
-ldF
-wcJ
-jCr
-nQn
-bos
-uHT
+tNf
+cCG
+cCG
+dzU
+vAB
+gsA
+oZF
+bOy
kcp
bTR
iEg
@@ -96513,30 +96503,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
@@ -96599,9 +96589,9 @@ aaa
bdH
aac
aag
-uDg
-kac
-xkc
+sOq
+oAr
+pjr
vxM
tQi
wee
@@ -96637,9 +96627,9 @@ rWF
uSB
lzY
wIC
-pdp
-ome
-xiV
+xXu
+xjh
+lFL
aag
ajY
bdH
@@ -96701,14 +96691,14 @@ aaa
aaa
aad
aag
-nBJ
-ecS
-ldF
-bos
-bos
-bos
-bos
-uHT
+tNf
+qqi
+cCG
+oZF
+oZF
+oZF
+oZF
+bOy
kcp
lxW
hPh
@@ -96716,30 +96706,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
@@ -96802,9 +96792,9 @@ bdH
bdH
aad
aag
-uDg
-fco
-qsp
+sOq
+eUe
+vtH
vxM
jvP
rDQ
@@ -96840,9 +96830,9 @@ wIC
wIC
wHM
wIC
-dJy
-aCA
-xiV
+pEp
+rlY
+lFL
aag
ajZ
bdH
@@ -96904,14 +96894,14 @@ aaa
aaa
aad
aag
-nBJ
-eQR
-ldF
-bos
-vkO
-ibf
-bos
-rIw
+tNf
+fvs
+cCG
+oZF
+uDl
+eZK
+oZF
+gzE
kcp
wTN
kZN
@@ -96919,30 +96909,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
@@ -97005,9 +96995,9 @@ bdH
bdH
aad
aag
-uDg
-lDT
-xkc
+sOq
+naN
+pjr
vxM
sbP
sbP
@@ -97031,7 +97021,7 @@ xuZ
xuZ
xuZ
rEY
-gxU
+lfa
giR
vUP
wIC
@@ -97043,9 +97033,9 @@ wIC
xgI
dBQ
wIC
-oLf
-hIG
-xiV
+gOu
+tDq
+lFL
aag
ajZ
bdH
@@ -97107,14 +97097,14 @@ aaa
aaa
aad
aag
-nBJ
-ldF
-eQR
-bos
-lBl
-nEO
-bos
-gpO
+tNf
+cCG
+fvs
+oZF
+ueH
+oTn
+oZF
+luJ
kcp
oMi
bAZ
@@ -97122,30 +97112,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
@@ -97208,9 +97198,9 @@ bdH
bdH
aad
aag
-uDg
-xkc
-gkr
+sOq
+pjr
+sjC
vxM
pas
ncf
@@ -97246,9 +97236,9 @@ wIC
qqV
nNg
wIC
-oDh
-xas
-xiV
+tyH
+yef
+lFL
aag
ajZ
bdH
@@ -97310,14 +97300,14 @@ aaa
aaa
aad
aag
-nBJ
-ldF
-eQR
-rqv
-gpO
-gpO
-bos
-gpO
+tNf
+cCG
+fvs
+jtv
+luJ
+luJ
+oZF
+luJ
kcp
kcp
kcp
@@ -97325,30 +97315,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
@@ -97411,9 +97401,9 @@ bdH
bdH
aad
aag
-uDg
-xkc
-gkr
+sOq
+pjr
+sjC
vxM
vxM
vxM
@@ -97449,9 +97439,9 @@ wIC
wIC
wIC
wIC
-oDh
-nEc
-xiV
+tyH
+pwx
+lFL
aag
ajZ
bdH
@@ -97513,45 +97503,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
@@ -97614,12 +97604,12 @@ aaf
aaf
aag
aag
-uDg
-cUl
-xkc
-ode
-xkc
-gNg
+sOq
+tnD
+pjr
+ugt
+pjr
+ixl
vBm
tJM
viH
@@ -97649,12 +97639,12 @@ jhI
jfY
bra
wIC
-eQm
-rXQ
-vky
-oDh
-pdp
-xiV
+ssx
+sdP
+htn
+tyH
+xXu
+lFL
aag
aag
aaf
@@ -97712,53 +97702,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
@@ -97818,11 +97808,11 @@ adG
adG
adG
adG
-rvI
-cYo
-ode
-gkr
-gkr
+xKo
+pfy
+ugt
+sjC
+sjC
vBm
vBm
vBm
@@ -97852,11 +97842,11 @@ jES
vBJ
qTQ
wIC
-oDh
-pdp
-vky
-pdp
-paJ
+tyH
+xXu
+htn
+xXu
+xZs
tuA
tuA
tuA
@@ -97915,53 +97905,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
@@ -98024,8 +98014,8 @@ akC
akC
akC
akC
-uvp
-gkr
+sLs
+sjC
vBm
mvE
tak
@@ -98055,8 +98045,8 @@ vAG
opF
pDW
wIC
-oDh
-lhj
+tyH
+iJb
kCi
kCi
kCi
@@ -98118,16 +98108,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
@@ -98137,34 +98127,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
@@ -98227,8 +98217,8 @@ sFf
bbV
bzz
akC
-pzc
-gkr
+qoj
+sjC
vBm
qkn
eRL
@@ -98258,8 +98248,8 @@ vzj
wIC
wIC
wIC
-oDh
-nYi
+tyH
+mWh
kCi
sDD
kOv
@@ -98321,16 +98311,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
@@ -98358,16 +98348,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
@@ -98430,8 +98420,8 @@ nIt
adu
aHZ
akC
-lDT
-gkr
+naN
+sjC
vBm
rJN
nJz
@@ -98461,8 +98451,8 @@ aTg
rFg
kkv
wIC
-pdp
-pdp
+xXu
+xXu
kCi
uAj
qfa
@@ -98524,16 +98514,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
@@ -98561,16 +98551,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
@@ -98633,8 +98623,8 @@ nkx
bbZ
btv
akC
-lCm
-gkr
+isz
+sjC
vBm
vBm
knO
@@ -98664,8 +98654,8 @@ aTg
wIC
wIC
wIC
-pdp
-iEa
+xXu
+vcl
kCi
eqI
ssZ
@@ -98727,16 +98717,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
@@ -98764,16 +98754,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
@@ -98836,9 +98826,9 @@ pvP
adu
aHZ
akC
-jdn
-lgk
-hMM
+myy
+dwX
+sBD
vBm
rRr
dFU
@@ -98866,9 +98856,9 @@ wtY
aTg
jIT
wIC
-aCA
-pdp
-pdp
+rlY
+xXu
+xXu
kCi
nwW
btD
@@ -98930,16 +98920,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
@@ -98967,16 +98957,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
@@ -99039,9 +99029,9 @@ adu
adu
aHZ
akC
-pek
-rir
-pek
+soC
+xkE
+soC
vBm
hqU
gcT
@@ -99069,9 +99059,9 @@ yeR
aTg
nNg
wIC
-pjz
-uTs
-pjz
+apx
+wfd
+apx
kCi
nRR
btD
@@ -99133,16 +99123,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
@@ -99170,16 +99160,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
@@ -99242,9 +99232,9 @@ nIt
adu
hxG
akC
-ibP
-loE
-cmr
+sUI
+ihF
+xLp
vBm
vBm
vBm
@@ -99272,9 +99262,9 @@ wIC
wIC
wIC
wIC
-hrI
-ioM
-xCy
+pVK
+tqG
+mGE
kCi
nNt
vqC
@@ -99336,16 +99326,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
@@ -99373,16 +99363,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
@@ -99445,10 +99435,10 @@ wmg
adu
cqQ
afT
-txy
-rbp
-cri
-euL
+gRB
+jfn
+oyg
+rRg
hiM
hiM
qRj
@@ -99474,10 +99464,10 @@ xuZ
pcj
hXm
fZq
-iFA
-sLx
-twQ
-twQ
+kXV
+wbT
+xJK
+xJK
bpd
bqT
vZv
@@ -99539,16 +99529,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
@@ -99577,15 +99567,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
@@ -99648,10 +99638,10 @@ pvP
adu
frF
akC
-oUt
-cmr
-iPq
-aMf
+skO
+xLp
+lAX
+tCi
vka
vka
mPj
@@ -99673,14 +99663,14 @@ awz
vSN
mPj
rWs
-inh
+hIh
ewr
lPC
mgy
-qoN
-tVx
-feG
-pPy
+hCv
+asV
+cxi
+hLD
kCi
nRR
btM
@@ -99742,16 +99732,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
@@ -99780,15 +99770,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
@@ -99852,10 +99842,10 @@ tyK
iKI
akC
akC
-aMf
-hSv
-xoB
-xoB
+tCi
+fwT
+hAd
+hAd
kzy
wIQ
jHh
@@ -99879,11 +99869,11 @@ vka
jHh
lnt
ckP
-xTx
-xTx
-cyv
-eKZ
-xTx
+izT
+izT
+aWY
+uFb
+izT
kCi
cfk
uws
@@ -99945,16 +99935,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
@@ -99983,15 +99973,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
@@ -100054,12 +100044,12 @@ akC
akC
akC
akC
-ehM
-cmr
-iPq
-oQJ
-xoB
-xoB
+paN
+xLp
+lAX
+qEa
+hAd
+hAd
vSN
jHh
lnt
@@ -100081,12 +100071,12 @@ sTo
wIQ
jHh
jUY
-xTx
-xTx
-hrI
-tVx
-feG
-bxY
+izT
+izT
+pVK
+asV
+cxi
+sCs
kCi
kCi
kCi
@@ -100148,16 +100138,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
@@ -100186,15 +100176,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
@@ -100254,15 +100244,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
@@ -100284,15 +100274,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
@@ -100351,16 +100341,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
@@ -100389,15 +100379,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
@@ -100456,16 +100446,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
@@ -100487,16 +100477,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
@@ -100554,16 +100544,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
@@ -100592,15 +100582,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
@@ -100659,9 +100649,9 @@ aag
aag
aag
aag
-cZe
-cCL
-vDz
+btL
+lZD
+vIE
kcH
kcH
kcH
@@ -100697,9 +100687,9 @@ aES
aES
aES
aES
-lIQ
-xZH
-nLp
+mSG
+pep
+teI
aag
aag
aag
@@ -100757,16 +100747,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
@@ -100795,15 +100785,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
@@ -100859,12 +100849,12 @@ aaa
aad
aag
aag
-cZe
-cZe
-cZe
-cZe
-iPq
-cmr
+btL
+btL
+btL
+btL
+lAX
+xLp
kcH
kcH
kcH
@@ -100900,12 +100890,12 @@ tKr
uNg
cLN
aES
-hrI
-tVx
-nLp
-nLp
-nLp
-nLp
+pVK
+asV
+teI
+teI
+teI
+teI
aag
aag
ajZ
@@ -100960,16 +100950,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
@@ -100998,15 +100988,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
@@ -101062,12 +101052,12 @@ aaa
aad
aag
aag
-cZe
-ivu
-gSy
-ltw
-iPq
-cmr
+btL
+fyq
+pcR
+pbd
+lAX
+xLp
kcH
rlf
soq
@@ -101103,12 +101093,12 @@ iTD
vCO
vCO
jxB
-hrI
-tVx
-hrI
-hrI
-hrI
-nLp
+pVK
+asV
+pVK
+pVK
+pVK
+teI
aag
aag
ajZ
@@ -101163,16 +101153,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
@@ -101200,16 +101190,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
@@ -101265,12 +101255,12 @@ aaa
aad
aag
aag
-cZe
-nHu
-sit
-snx
-oVY
-cGA
+btL
+hpa
+lyL
+cET
+yak
+eAa
kcH
rBa
nPs
@@ -101306,12 +101296,12 @@ vCO
vCO
vCO
jxB
-gUu
-dWc
-lVW
-kcs
-rDH
-nLp
+cBz
+tgh
+kfV
+qyw
+tcn
+teI
aag
aag
ajZ
@@ -101366,16 +101356,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
@@ -101403,16 +101393,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
@@ -101468,18 +101458,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
@@ -101509,12 +101499,12 @@ wmT
jhW
mWD
jxB
-xBK
-moc
-pYQ
-tVx
-hrI
-nLp
+rgL
+dNy
+koa
+asV
+pVK
+teI
aag
aag
ajZ
@@ -101569,16 +101559,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
@@ -101606,16 +101596,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
@@ -101669,12 +101659,12 @@ aaa
aaa
aaa
aad
-cZe
-cZe
-cZe
-vfS
-cmr
-cmr
+btL
+btL
+btL
+ouy
+xLp
+xLp
agj
agj
agj
@@ -101714,12 +101704,12 @@ aES
aES
aES
aES
-nVn
-cZO
-hrI
-nLp
-nLp
-nLp
+qFr
+fqP
+pVK
+teI
+teI
+teI
ajZ
aaa
aaa
@@ -101772,16 +101762,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
@@ -101809,16 +101799,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
@@ -101872,11 +101862,11 @@ aaa
aaa
aaa
aad
-tvt
-fRg
-peM
-jUV
-cmr
+huD
+gRq
+cmb
+yai
+xLp
agj
agj
jbN
@@ -101913,16 +101903,16 @@ aVU
aRq
bHG
ceK
-sxD
+aWj
bhJ
bHG
aES
aES
-fMU
-hrI
-dPd
-rLH
-rwZ
+jLB
+pVK
+exx
+nrg
+vYk
ajZ
aaa
aaa
@@ -101974,17 +101964,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
@@ -102012,17 +102002,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
@@ -102075,11 +102065,11 @@ aaa
aaa
aaa
aad
-tvt
-jhR
-fix
-pfL
-cmr
+huD
+esl
+wBy
+nRC
+xLp
agj
kyR
agc
@@ -102121,11 +102111,11 @@ bpe
brS
rOs
aES
-dWA
-hrI
-hrI
-dPO
-rwZ
+cGC
+pVK
+pVK
+bxw
+vYk
ajZ
aaa
aaa
@@ -102177,17 +102167,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
@@ -102216,16 +102206,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
@@ -102278,11 +102268,11 @@ aaa
aaa
aaa
aad
-tvt
-oyX
-vBC
-rhm
-she
+huD
+fcl
+dXm
+thK
+bTL
agj
ogK
qgr
@@ -102324,11 +102314,11 @@ aES
aES
aES
aES
-tPc
-jwq
-vwU
-uew
-rwZ
+vMw
+htB
+fII
+fpj
+vYk
ajZ
aaa
aaa
@@ -102380,17 +102370,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
@@ -102419,16 +102409,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
@@ -102481,11 +102471,11 @@ aaa
aaa
aaa
aad
-cZe
-kwg
-cmr
-cmr
-jkq
+btL
+wEp
+xLp
+xLp
+jQa
agj
nCx
tYM
@@ -102522,16 +102512,16 @@ ceK
lcy
iTw
ceK
-sxD
+aWj
bhJ
bHG
nis
aES
-xGF
-tVx
-jne
-rDH
-nLp
+cMk
+asV
+taM
+tcn
+teI
ajZ
aaa
aaa
@@ -102583,22 +102573,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
@@ -102622,16 +102612,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
@@ -102684,11 +102674,11 @@ bdH
aaa
aaa
aad
-tvt
-gJf
-cmr
-hYE
-vAz
+huD
+szs
+xLp
+riI
+nPF
agj
nXO
hvH
@@ -102730,11 +102720,11 @@ bpe
brS
cpj
aES
-hro
-tVx
-tNB
-ioM
-rwZ
+jLa
+asV
+whv
+tqG
+vYk
ajZ
aaa
aaa
@@ -102786,17 +102776,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
@@ -102825,16 +102815,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
@@ -102887,11 +102877,11 @@ bdH
aaa
aaa
aad
-tvt
-hsu
-cmr
-pFq
-iPq
+huD
+dlW
+xLp
+xxr
+lAX
agj
dyj
fnv
@@ -102933,11 +102923,11 @@ aES
aES
aES
aES
-uhh
-cZO
-ppG
-ioM
-rwZ
+uyK
+fqP
+psl
+tqG
+vYk
ajZ
aaa
aaa
@@ -102989,17 +102979,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
@@ -103028,16 +103018,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
@@ -103090,11 +103080,11 @@ bdH
aaa
aaa
aad
-tvt
-hJD
-cmr
-fFQ
-pMH
+huD
+gSq
+xLp
+nYu
+hYw
agj
mXj
mXj
@@ -103131,16 +103121,16 @@ ceK
wVB
psa
ceK
-sxD
+aWj
bhJ
bHG
brS
aES
-jrI
-tVx
-raO
-ioM
-rwZ
+cuk
+asV
+bwM
+tqG
+vYk
ajZ
aaa
aaa
@@ -103192,22 +103182,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
@@ -103231,16 +103221,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
@@ -103293,11 +103283,11 @@ aaa
aaa
aaa
aad
-cZe
-bLc
-fOK
-pWd
-iPq
+btL
+rXs
+qKT
+bOz
+lAX
agj
mXj
pjR
@@ -103339,11 +103329,11 @@ tJi
ivf
bpe
aES
-pok
-tVx
-kzc
-gen
-nLp
+gvj
+asV
+rDp
+rkF
+teI
ajZ
aaa
aaa
@@ -103395,22 +103385,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
@@ -103434,16 +103424,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
@@ -103496,11 +103486,11 @@ aaa
bdH
aaa
aad
-tvt
-nCM
-cmr
-wKb
-pri
+huD
+wcs
+xLp
+meQ
+eAK
agj
qlI
cdB
@@ -103542,11 +103532,11 @@ aES
aES
aES
aES
-gBd
-tVx
-fjz
-hPu
-rwZ
+vaH
+asV
+lUr
+vGV
+vYk
ajZ
aaa
aaa
@@ -103598,21 +103588,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
@@ -103641,12 +103631,12 @@ bcm
bcm
bcm
bcm
-hOV
-pIC
-hOV
-qpV
-nGk
-kyP
+vAw
+xkZ
+vAw
+iDD
+vrb
+sNF
aag
aag
aaf
@@ -103699,11 +103689,11 @@ bdH
bdH
aaa
aad
-tvt
-mPw
-cmr
-wGa
-bAy
+huD
+nWx
+xLp
+wvt
+rLl
agj
eBE
hvH
@@ -103740,16 +103730,16 @@ bFC
jUb
qjz
ceK
-sxD
+aWj
bhJ
bHG
gCP
aES
-imt
-noE
-dcT
-hrI
-rwZ
+kqI
+rJf
+kkg
+pVK
+vYk
ajZ
aaa
aaa
@@ -103801,22 +103791,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
@@ -103844,12 +103834,12 @@ lRX
rux
sEt
bcm
-qyG
-bUQ
-bUQ
-siT
-bUQ
-kyP
+uhS
+vtL
+vtL
+raT
+vtL
+sNF
aag
aag
aag
@@ -103902,11 +103892,11 @@ bdH
bdH
bdH
aad
-tvt
-qwY
-cmr
-cmr
-mVA
+huD
+ruD
+xLp
+xLp
+wax
agj
kSH
hvH
@@ -103948,11 +103938,11 @@ mhm
brS
bpe
aES
-ioM
-cZO
-pfD
-pfD
-rwZ
+tqG
+fqP
+oHy
+oHy
+vYk
ajZ
aaa
aaa
@@ -104004,22 +103994,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
@@ -104047,12 +104037,12 @@ myo
dtH
eyR
bcm
-rQs
-xFt
-bUQ
-uKH
-gsp
-kyP
+wEA
+oPu
+vtL
+cUf
+mkk
+sNF
aag
aag
aag
@@ -104105,11 +104095,11 @@ bdH
bdH
bdH
aad
-cZe
-cZe
-cZe
-tiX
-vcI
+btL
+btL
+btL
+guv
+dYM
agj
ikQ
hvH
@@ -104151,11 +104141,11 @@ aES
aES
aES
aES
-ied
-cZO
-nLp
-nLp
-nLp
+mOw
+fqP
+teI
+teI
+teI
ajZ
aaa
aaa
@@ -104207,17 +104197,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
@@ -104250,12 +104240,12 @@ mhd
aYt
tuN
fPn
-xFt
-xFt
-bUQ
-uKH
-eLC
-kyP
+oPu
+oPu
+vtL
+cUf
+vRF
+sNF
aag
aag
aag
@@ -104310,9 +104300,9 @@ aaa
aad
aag
aag
-cZe
-cmr
-iNk
+btL
+xLp
+udH
agj
muV
hvH
@@ -104349,14 +104339,14 @@ aWq
aXb
aGr
ceK
-sxD
+aWj
bhJ
bHG
cWy
aES
-hrI
-tVx
-nLp
+pVK
+asV
+teI
aag
aag
ajZ
@@ -104410,17 +104400,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
@@ -104453,12 +104443,12 @@ omP
aYt
bOC
bcm
-bUQ
-xFt
-bUQ
-uKH
-rVc
-kyP
+vtL
+oPu
+vtL
+cUf
+mod
+sNF
aag
aag
aag
@@ -104513,9 +104503,9 @@ aaa
aad
aag
aag
-cZe
-huD
-vAz
+btL
+qyj
+nPF
agj
mXj
fnv
@@ -104523,7 +104513,7 @@ hvH
hvH
iNY
hvH
-hmV
+ofp
mXj
agj
aic
@@ -104557,9 +104547,9 @@ eBd
brS
cpj
aES
-luE
-wgO
-nLp
+eqh
+hwQ
+teI
aag
aag
ajZ
@@ -104613,22 +104603,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
@@ -104656,12 +104646,12 @@ ivg
llO
kSv
bcm
-emC
-dZZ
-xmn
-uKH
-xFt
-kyP
+oyJ
+ter
+tVJ
+cUf
+oPu
+sNF
aag
aag
aag
@@ -104716,9 +104706,9 @@ aaa
aad
aag
aag
-cZe
-pcf
-vAz
+btL
+cZw
+nPF
agj
agj
agj
@@ -104760,9 +104750,9 @@ aES
aES
aES
aES
-hXD
-tYV
-nLp
+fDT
+eKi
+teI
aag
aag
ajZ
@@ -104816,10 +104806,10 @@ aad
aag
aag
aag
-sGw
-dvD
-qig
-eWs
+wZa
+gtF
+kil
+nqC
eXq
adR
eXq
@@ -104860,11 +104850,11 @@ wXT
cdA
bcm
bcm
-emC
-emC
-mTL
-xFt
-kyP
+oyJ
+oyJ
+kjE
+oPu
+sNF
aag
aag
aag
@@ -104919,9 +104909,9 @@ aaa
aad
aag
aag
-cZe
-uTE
-fZy
+btL
+egW
+kUr
gpY
uBi
wYA
@@ -104963,9 +104953,9 @@ baw
oaK
nUn
pgD
-tVx
-hrI
-nLp
+asV
+pVK
+teI
aag
aag
ajZ
@@ -105019,10 +105009,10 @@ aad
aag
aag
aag
-sGw
-dvD
-dvD
-eWs
+wZa
+gtF
+gtF
+nqC
abG
aeh
afy
@@ -105064,10 +105054,10 @@ aYt
aYt
lrX
bcm
-jGQ
-siT
-fFU
-kyP
+oin
+raT
+tdN
+sNF
aag
aag
aag
@@ -105122,9 +105112,9 @@ bdH
aad
aag
aag
-cZe
-cmr
-vAz
+btL
+xLp
+nPF
gpY
uac
vFw
@@ -105166,9 +105156,9 @@ aZz
wUP
lrF
pgD
-cZO
-hrI
-nLp
+fqP
+pVK
+teI
aag
aag
ajZ
@@ -105222,10 +105212,10 @@ aad
aag
aag
aag
-sGw
-dvD
-klT
-eWs
+wZa
+gtF
+uJT
+nqC
abH
aer
agf
@@ -105267,10 +105257,10 @@ btO
btO
uII
fPn
-htq
-siT
-nGk
-kyP
+uwi
+raT
+vrb
+sNF
aag
aag
aag
@@ -105325,9 +105315,9 @@ abs
abs
abs
abs
-cZe
-aMf
-wby
+btL
+tCi
+elF
gpY
mto
acW
@@ -105369,9 +105359,9 @@ baw
sgU
baw
pgD
-cyv
-eKZ
-nLp
+aWY
+uFb
+teI
tQV
tQV
tQV
@@ -105425,10 +105415,10 @@ aag
aag
aag
aag
-sGw
-dvD
-sZc
-dGP
+wZa
+gtF
+fgv
+loQ
acq
aeJ
azl
@@ -105470,10 +105460,10 @@ aYt
puI
iWx
bcm
-ymg
-uKH
-bUQ
-kyP
+oYP
+cUf
+vtL
+sNF
aag
aag
aag
@@ -105628,10 +105618,10 @@ aag
aag
aag
aag
-sGw
-dvD
-iQJ
-eWs
+wZa
+gtF
+pTD
+nqC
acu
aeh
afF
@@ -105673,10 +105663,10 @@ cdA
bcm
bcm
bcm
-emC
-wuh
-fgU
-kyP
+oyJ
+khh
+mPW
+sNF
aag
aag
aag
@@ -105831,10 +105821,10 @@ aag
aag
aag
aag
-sGw
-nHX
-cEA
-eWs
+wZa
+cpG
+mcs
+nqC
acM
aer
agf
@@ -105874,12 +105864,12 @@ apE
icp
fER
bcm
-emC
-hVL
-bUQ
-uKH
-hSb
-kyP
+oyJ
+ceI
+vtL
+cUf
+rhf
+sNF
aag
aag
aag
@@ -105956,9 +105946,9 @@ awY
kOB
awZ
aiX
-opN
-bDi
-vIr
+fys
+wLe
+nWK
awF
aEM
aGV
@@ -106034,10 +106024,10 @@ aag
aag
aag
aag
-sGw
-xzB
-hRA
-eWs
+wZa
+jca
+kGZ
+nqC
acZ
aeN
azl
@@ -106077,12 +106067,12 @@ uiT
aYt
jyR
bcm
-fUZ
-xFt
-bUQ
-uKH
-eyM
-kyP
+aPd
+oPu
+vtL
+cUf
+iBs
+sNF
aag
aag
aag
@@ -106159,9 +106149,9 @@ pXx
jrm
evg
aiX
-dCb
-dDc
-rdo
+eSt
+jPD
+jee
awF
aFg
aGY
@@ -106237,10 +106227,10 @@ aag
aag
aag
aag
-sGw
-xzB
-ghA
-eWs
+wZa
+jca
+fCZ
+nqC
vhw
khD
azw
@@ -106280,12 +106270,12 @@ apL
aYt
iKb
bcm
-umk
-xFt
-bUQ
-siT
-qBl
-kyP
+dUA
+oPu
+vtL
+raT
+gKl
+sNF
aag
aag
aag
@@ -106362,9 +106352,9 @@ wWC
auZ
aiX
aiX
-mJp
-bNT
-cbK
+kuj
+tje
+pQh
awF
hRk
aGY
@@ -106440,10 +106430,10 @@ aag
aag
aag
aag
-sGw
-nkj
-rjF
-eWs
+wZa
+tYh
+bQd
+nqC
eXq
eXq
eXq
@@ -106483,12 +106473,12 @@ uiT
aYt
xNj
bcm
-hSb
-xFt
-bUQ
-uKH
-pTX
-kyP
+rhf
+oPu
+vtL
+cUf
+eAP
+sNF
aag
aag
aag
@@ -106565,9 +106555,9 @@ pQV
apq
ana
aiX
-glc
-bNT
-rmB
+oFZ
+tje
+vGt
awF
xTL
lmA
@@ -106643,10 +106633,10 @@ aag
aag
aag
aag
-sGw
-xzB
-oes
-eWs
+wZa
+jca
+gzx
+nqC
aRu
aRu
aRu
@@ -106686,12 +106676,12 @@ fpW
llO
vml
bcm
-emC
-rVc
-rVc
-uKH
-nBF
-kyP
+oyJ
+mod
+mod
+cUf
+rwh
+sNF
aag
aag
aag
@@ -106768,9 +106758,9 @@ xQg
wWC
szO
aiX
-nLM
-bNT
-iPU
+gyR
+tje
+ilW
awF
awF
aEW
@@ -106846,10 +106836,10 @@ aag
aag
aag
aag
-sGw
-dvD
-oes
-eWs
+wZa
+gtF
+gzx
+nqC
aRu
aRu
aRu
@@ -106885,16 +106875,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
@@ -106971,10 +106961,10 @@ yjM
qbO
aqw
hnI
-kGS
-bNT
-gFN
-bMi
+eBy
+tje
+oQL
+jGY
awF
nvG
vGI
@@ -107049,10 +107039,10 @@ aag
aag
aag
aag
-sGw
-dvD
-iQJ
-eWs
+wZa
+gtF
+pTD
+nqC
aRu
aRu
aRu
@@ -107088,16 +107078,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
@@ -107174,10 +107164,10 @@ aqy
nBE
pOD
bZa
-nIF
-duR
-gFN
-mqd
+pIX
+wnK
+oQL
+euB
awF
aHn
szU
@@ -107252,10 +107242,10 @@ aag
aag
aag
aag
-sGw
-xzB
-oes
-eWs
+wZa
+jca
+gzx
+nqC
aRu
aRu
aRu
@@ -107291,16 +107281,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
@@ -107377,15 +107367,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
@@ -107455,10 +107445,10 @@ aag
aag
aag
aag
-sGw
-fzx
-cEA
-eWs
+wZa
+ptr
+mcs
+nqC
aRu
aRu
aRu
@@ -107494,16 +107484,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
@@ -107580,15 +107570,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
@@ -107658,10 +107648,10 @@ aag
aag
aag
aag
-sGw
-xzB
-rsP
-eWs
+wZa
+jca
+jLY
+nqC
aRu
aRu
aRu
@@ -107697,16 +107687,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
@@ -107783,15 +107773,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
@@ -107855,16 +107845,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
@@ -107906,16 +107896,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
@@ -107986,15 +107976,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
@@ -108058,16 +108048,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
@@ -108109,16 +108099,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
@@ -108189,22 +108179,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
@@ -108261,16 +108251,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
@@ -108312,16 +108302,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
@@ -108392,22 +108382,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
@@ -108464,15 +108454,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
@@ -108481,9 +108471,9 @@ wfE
wfE
wfE
wfE
-yap
-bqg
-eIO
+iwp
+uvh
+pJY
bkA
eFG
bej
@@ -108499,15 +108489,15 @@ qjN
qjN
oWf
gfW
-xgJ
+tKu
fdZ
bnS
fdZ
-tzx
+tbd
gfW
-rZt
-qyP
-tuC
+jaT
+gKs
+nQq
lFp
lGg
aId
@@ -108522,9 +108512,9 @@ nmY
nmY
nmY
nmY
-siT
-bUQ
-kyP
+raT
+vtL
+sNF
ajZ
aaa
bdH
@@ -108595,22 +108585,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
@@ -108667,9 +108657,9 @@ aaa
bdH
aaa
aad
-sGw
-dvD
-dvD
+wZa
+gtF
+gtF
wfE
wfE
rXv
@@ -108684,9 +108674,9 @@ bqm
bsD
btr
wfE
-kLE
-lIu
-kLE
+viV
+dRy
+viV
bkA
bcC
bej
@@ -108702,15 +108692,15 @@ ham
qjN
oDY
omo
-fvJ
+epW
fdZ
ixj
fdZ
-bET
+kmZ
gfW
-kSA
-tpB
-kSA
+ctV
+fSN
+ctV
lFp
xDF
eRS
@@ -108721,13 +108711,13 @@ nmY
ouw
jDP
aId
-xHS
+ctX
tEd
vjW
nmY
-siT
-bUQ
-kyP
+raT
+vtL
+sNF
ajZ
aaa
bdH
@@ -108773,12 +108763,12 @@ adq
aei
aka
aWn
-njn
-njn
-njn
-njn
-njn
-njn
+uIw
+uIw
+uIw
+uIw
+uIw
+uIw
oGC
awW
acW
@@ -108787,31 +108777,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
@@ -108820,12 +108810,12 @@ baw
sgU
baw
baw
-nIN
-nIN
-nIN
-nIN
-nIN
-nIN
+ykg
+ykg
+ykg
+ykg
+ykg
+ykg
hXV
yhI
rRz
@@ -108870,9 +108860,9 @@ aaa
bdH
aaa
aad
-sGw
-dvD
-dvD
+wZa
+gtF
+gtF
wfE
mcL
jOo
@@ -108887,9 +108877,9 @@ wFR
wFR
xbk
aWw
-cJK
-oGL
-hOu
+kmA
+oiZ
+gdO
bkA
eUn
bcD
@@ -108907,13 +108897,13 @@ qyD
omo
blZ
bqN
-nTo
+gtA
bqN
bwR
gfW
-oJL
-jMa
-cVt
+iAA
+hbH
+vpK
sHm
ddM
hZe
@@ -108928,9 +108918,9 @@ dKK
dKK
xry
nmY
-siT
-bUQ
-kyP
+raT
+vtL
+sNF
ajZ
aaa
bdH
@@ -108976,12 +108966,12 @@ adq
apr
apr
aoV
-njn
-rWz
-rWz
-rWz
-tWM
-njn
+uIw
+qZx
+qZx
+qZx
+omL
+uIw
aea
oGC
xjD
@@ -108990,31 +108980,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
@@ -109023,12 +109013,12 @@ aZz
nsc
baw
cxk
-nIN
-rgL
-rgL
-rgL
-nTc
-nIN
+ykg
+iSe
+iSe
+iSe
+wWD
+ykg
wTy
wTy
wTy
@@ -109073,9 +109063,9 @@ aaa
bdH
aaa
aad
-sGw
-xiH
-xzB
+wZa
+pxO
+jca
wfE
dgl
jOo
@@ -109090,9 +109080,9 @@ esM
uUi
xbk
aWw
-gtD
-uRD
-wru
+gLm
+rTX
+jul
bkA
nvM
bgG
@@ -109114,10 +109104,10 @@ gfW
uFo
omo
gfW
-eWx
-lLO
-juo
-otq
+mpV
+vpf
+hmD
+sDv
gJO
pwG
aId
@@ -109131,9 +109121,9 @@ vXf
qGw
uZV
nmY
-uKH
-bUQ
-kyP
+cUf
+vtL
+sNF
ajZ
aaa
bdH
@@ -109179,12 +109169,12 @@ adq
aub
akc
euO
-njn
-rWz
-rWz
-rWz
-rWz
-njn
+uIw
+qZx
+qZx
+qZx
+qZx
+uIw
oGC
sHp
oGC
@@ -109193,31 +109183,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
@@ -109226,12 +109216,12 @@ baw
mnA
baw
baw
-nIN
-rgL
-rgL
-rgL
-rgL
-nIN
+ykg
+iSe
+iSe
+iSe
+iSe
+ykg
crh
csI
nqG
@@ -109276,9 +109266,9 @@ aaa
bdH
aaa
aad
-sGw
-jOq
-xzB
+wZa
+vLO
+jca
wfE
krp
jOo
@@ -109293,9 +109283,9 @@ wFR
soA
xbk
wfE
-xos
-uRD
-qPk
+mwO
+rTX
+fVq
bCd
iey
baf
@@ -109317,10 +109307,10 @@ bPk
bsj
byb
bCd
-knm
-lLO
-knm
-yfy
+mjE
+vpf
+mjE
+lxq
ruL
qUZ
aId
@@ -109334,9 +109324,9 @@ kyh
dKK
xry
nmY
-qpV
-hNh
-kyP
+iDD
+sZQ
+sNF
ajZ
aaa
bdH
@@ -109383,22 +109373,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
@@ -109418,22 +109408,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
@@ -109479,9 +109469,9 @@ aaa
bdH
aaa
aad
-sGw
-eoE
-xzB
+wZa
+pkx
+jca
wfE
eiP
qOp
@@ -109496,9 +109486,9 @@ qtv
xFZ
btx
naV
-pij
-kJh
-qPk
+oKz
+nfQ
+fVq
bCd
tmg
qjN
@@ -109520,10 +109510,10 @@ qjN
tzP
wYK
bCd
-knm
-lLO
-knm
-yfy
+mjE
+vpf
+mjE
+lxq
ruL
gsd
aId
@@ -109537,9 +109527,9 @@ hgD
pSQ
dOe
nmY
-rEK
-bba
-kyP
+bFf
+hlm
+sNF
ajZ
aaa
bdH
@@ -109585,23 +109575,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
@@ -109621,23 +109611,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
@@ -109682,9 +109672,9 @@ aaa
bdH
aaa
aad
-sGw
-jIJ
-xzB
+wZa
+fSj
+jca
wfE
fHz
opD
@@ -109699,9 +109689,9 @@ esM
jpt
xbk
aWw
-qPk
-hKe
-uJM
+fVq
+mjz
+cXX
baZ
bep
qjN
@@ -109723,10 +109713,10 @@ qjN
qjN
imo
baZ
-sbE
-lLO
-knm
-yfy
+iaf
+vpf
+mjE
+lxq
ruL
xPq
aId
@@ -109740,9 +109730,9 @@ smW
prP
xXl
nmY
-idL
-gnM
-kyP
+idV
+aca
+sNF
ajZ
aaa
bdH
@@ -109788,23 +109778,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
@@ -109824,23 +109814,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
@@ -109885,9 +109875,9 @@ aaa
bdH
aaa
aad
-sGw
-xzB
-dvD
+wZa
+jca
+gtF
wfE
iYx
opD
@@ -109902,9 +109892,9 @@ nEF
tXi
pcE
aWw
-qPk
-hKe
-qPk
+fVq
+mjz
+fVq
hqW
qjN
qjN
@@ -109926,10 +109916,10 @@ hDX
qjN
qjN
jpp
-knm
-lLO
-knm
-hnP
+mjE
+vpf
+mjE
+cHp
lFp
xlO
aId
@@ -109943,9 +109933,9 @@ oqt
oEy
qmY
tUN
-siT
-lZb
-kyP
+raT
+urD
+sNF
ajZ
aaa
bdH
@@ -109991,23 +109981,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
@@ -110027,23 +110017,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
@@ -110088,9 +110078,9 @@ aaa
bdH
aaa
aad
-sGw
-xzB
-dvD
+wZa
+jca
+gtF
wfE
gww
opD
@@ -110105,9 +110095,9 @@ ljf
maL
uKe
aWw
-qPk
-ckh
-gyn
+fVq
+nsO
+oPb
vcq
qPS
qPS
@@ -110129,10 +110119,10 @@ iaF
bqL
bqL
ocf
-wwE
-sAD
-cIO
-tAb
+goS
+etU
+qaT
+pfu
vpe
dxT
olN
@@ -110146,9 +110136,9 @@ uxX
oZy
orN
nmY
-lQf
-tHk
-kyP
+aNz
+eDF
+sNF
ajZ
aaa
bdH
@@ -110194,23 +110184,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
@@ -110230,23 +110220,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
@@ -110291,26 +110281,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
@@ -110332,26 +110322,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
@@ -110397,23 +110387,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
@@ -110433,23 +110423,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
@@ -110494,26 +110484,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
@@ -110523,7 +110513,7 @@ tlA
nyj
vVW
vhX
-unU
+lia
rlZ
twq
vhX
@@ -110535,26 +110525,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
@@ -110600,23 +110590,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
@@ -110636,23 +110626,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
@@ -110697,26 +110687,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
@@ -110727,7 +110717,7 @@ rHo
kan
kan
kan
-jXf
+phx
kan
kan
kan
@@ -110738,26 +110728,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
@@ -110804,22 +110794,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
@@ -110839,22 +110829,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
@@ -110901,25 +110891,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
@@ -110941,25 +110931,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
@@ -111006,23 +110996,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
@@ -111042,23 +111032,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
@@ -111104,30 +111094,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
@@ -111144,25 +111134,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
@@ -111209,23 +111199,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
@@ -111233,8 +111223,8 @@ fnA
jZY
jZY
sqf
-wpu
-cGp
+jTb
+iDe
ajl
ajl
ajl
@@ -111245,23 +111235,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
@@ -111314,23 +111304,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
@@ -111343,22 +111333,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
@@ -111412,23 +111402,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
@@ -111436,8 +111426,8 @@ eDo
eDo
eDo
sqf
-vXv
-wub
+dfE
+mHv
gXl
ajl
wqW
@@ -111448,23 +111438,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
@@ -111517,18 +111507,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
@@ -111550,18 +111540,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
@@ -111616,22 +111606,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
@@ -111639,8 +111629,8 @@ xsz
jTj
jTj
sqf
-lmi
-xgP
+fYV
+uJP
dwA
wJo
cyU
@@ -111651,22 +111641,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
@@ -111720,18 +111710,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
@@ -111742,7 +111732,7 @@ bJw
rlZ
hBc
hzs
-bHg
+kDj
hzs
aZK
rlZ
@@ -111753,18 +111743,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
@@ -111818,23 +111808,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
@@ -111854,23 +111844,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
@@ -111923,18 +111913,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
@@ -111956,18 +111946,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
@@ -112021,23 +112011,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
@@ -112057,23 +112047,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
@@ -112126,18 +112116,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
@@ -112159,18 +112149,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
@@ -112224,23 +112214,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
@@ -112260,23 +112250,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
@@ -112329,18 +112319,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
@@ -112362,18 +112352,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
@@ -112432,18 +112422,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
@@ -112463,23 +112453,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
@@ -112532,18 +112522,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
@@ -112565,18 +112555,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
@@ -112635,18 +112625,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
@@ -112666,23 +112656,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
@@ -112728,25 +112718,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
@@ -112756,7 +112746,7 @@ bst
cjW
rlZ
rlZ
-hrJ
+tZO
kan
biy
boX
@@ -112768,25 +112758,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
@@ -112838,18 +112828,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
@@ -112869,23 +112859,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
@@ -112931,25 +112921,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
@@ -112959,7 +112949,7 @@ vhX
akQ
rlZ
rlZ
-pnC
+jAl
dBH
bky
ryt
@@ -112971,25 +112961,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
@@ -113050,9 +113040,9 @@ abE
abE
abE
abE
-bff
-rnd
-fdf
+wyV
+bMh
+qcr
vOy
nos
fcy
@@ -113072,27 +113062,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
@@ -113133,26 +113123,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
@@ -113174,26 +113164,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
@@ -113253,9 +113243,9 @@ gwo
aed
aeG
abE
-umI
-fsu
-umI
+tCM
+nNz
+tCM
vOy
oNp
aSn
@@ -113275,27 +113265,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
@@ -113336,10 +113326,10 @@ aaa
aaa
bdH
aad
-kyw
-xwd
-lfx
-bwG
+nnw
+sMe
+wli
+pAH
weR
aPE
weR
@@ -113353,9 +113343,9 @@ aQF
aQF
aQF
aQF
-mNG
-pSF
-eZC
+rnu
+dAn
+sDE
kan
avW
bZn
@@ -113365,7 +113355,7 @@ vhX
gDW
rlZ
rlZ
-wYr
+jmm
dBH
bky
ryt
@@ -113377,9 +113367,9 @@ xIk
cLA
xIk
kan
-hBW
-ltv
-qEz
+uBI
+naO
+uJr
bJt
bJt
bJt
@@ -113387,16 +113377,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
@@ -113456,9 +113446,9 @@ adF
aef
dWw
agA
-okx
-hgA
-xfo
+xQl
+xwT
+vaA
vOy
anz
vgx
@@ -113478,27 +113468,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
@@ -113539,14 +113529,14 @@ aaa
aaa
bdH
aad
-kyw
-deq
-cGY
-bwG
-rUq
-rUq
-sab
-sab
+nnw
+xnn
+eSH
+pAH
+xtr
+xtr
+jXC
+jXC
izk
aWD
cWr
@@ -113556,9 +113546,9 @@ eKT
wan
cTC
aQF
-syj
-wKN
-qqf
+aof
+jYZ
+hqM
xMs
xMs
xMs
@@ -113568,7 +113558,7 @@ xMs
cjW
rlZ
rlZ
-jbO
+bvm
kan
quv
rZB
@@ -113580,9 +113570,9 @@ vMo
vMo
vMo
vMo
-tzw
-sPY
-hkC
+oRh
+nMa
+mHt
bJt
xOL
gGI
@@ -113590,16 +113580,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
@@ -113659,9 +113649,9 @@ adF
aef
aef
uZZ
-kGS
-bNT
-rmB
+eBy
+tje
+vGt
vOy
awQ
oLU
@@ -113681,27 +113671,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
@@ -113742,12 +113732,12 @@ aaa
aaa
bdH
aad
-kyw
-deq
-veq
-bwG
-pKh
-sab
+nnw
+xnn
+dle
+pAH
+hys
+jXC
rDv
bmW
jWu
@@ -113759,9 +113749,9 @@ aRy
aRy
nIj
aQF
-rWv
-hKe
-qPk
+iSC
+mjz
+fVq
xMs
aSO
feY
@@ -113783,9 +113773,9 @@ wZE
iGn
byd
vMo
-knm
-sPY
-knm
+mjE
+nMa
+mjE
lhB
pOY
bDs
@@ -113793,16 +113783,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
@@ -113862,9 +113852,9 @@ adF
bls
aeH
agq
-nIF
-ijn
-rmB
+pIX
+nSE
+vGt
vOy
hng
dnC
@@ -113884,27 +113874,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
@@ -113945,10 +113935,10 @@ aaa
aaa
bdH
aad
-kyw
-deq
-deF
-bwG
+nnw
+xnn
+wbm
+pAH
mTi
lJK
kYV
@@ -113962,9 +113952,9 @@ bQU
bQU
bjD
dqE
-htl
-vaq
-vTX
+bRl
+eMK
+eNL
xMs
lOH
dUS
@@ -113986,9 +113976,9 @@ bof
vit
dxu
vMo
-knm
-sPY
-knm
+mjE
+nMa
+mjE
lhB
xCb
bDs
@@ -113996,16 +113986,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
@@ -114065,9 +114055,9 @@ adF
aef
kqN
agA
-eWN
-mxg
-hCF
+dyG
+xJr
+dFr
vOy
xyt
wiW
@@ -114087,10 +114077,10 @@ vOy
mFq
vqW
sqf
-jMP
-jao
-rmB
-mRU
+wal
+pEH
+vGt
+lYm
pBG
pBG
pBG
@@ -114099,15 +114089,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
@@ -114148,15 +114138,15 @@ aaa
aaa
bdH
aad
-kyw
-deq
-oWq
-bwG
+nnw
+xnn
+dpD
+pAH
aQF
aQF
aPH
xIQ
-tmX
+mrm
aWD
rrK
aRy
@@ -114165,9 +114155,9 @@ brb
cpp
buv
aWF
-qPk
-hKe
-qPk
+fVq
+mjz
+fVq
xMs
akE
qGF
@@ -114189,9 +114179,9 @@ ggz
dka
bye
vMo
-knm
-sPY
-knm
+mjE
+nMa
+mjE
lhB
aQW
bDs
@@ -114206,9 +114196,9 @@ bJt
bJt
bJt
bJt
-xbg
-otW
-lyW
+cER
+keN
+qbs
ajZ
avo
avo
@@ -114268,9 +114258,9 @@ aef
aef
tRD
abE
-ciI
-mxg
-rmB
+jtr
+xJr
+vGt
vOy
iYf
bIM
@@ -114290,12 +114280,12 @@ hPe
sdu
btC
vLj
-nIF
-ijn
-rmB
-dyJ
+pIX
+nSE
+vGt
+jHw
pBG
-gqQ
+hqJ
cHG
nQA
wph
@@ -114307,10 +114297,10 @@ gel
gel
gel
fkX
-mRU
-jtU
-tMU
-woU
+lYm
+iTV
+enA
+ckw
aaf
aag
aag
@@ -114351,10 +114341,10 @@ bdH
bdH
bdH
aad
-kyw
-xwd
-lfx
-bwG
+nnw
+sMe
+wli
+pAH
weR
aPE
izk
@@ -114368,9 +114358,9 @@ aTY
iCF
gJP
aQF
-uNf
-hKe
-qPk
+fwm
+mjz
+fVq
xMs
aYR
dUS
@@ -114392,9 +114382,9 @@ jZd
vit
bzo
vMo
-knm
-sPY
-knm
+mjE
+nMa
+mjE
lhB
pxD
bDs
@@ -114409,9 +114399,9 @@ iIl
bDs
ujV
bJt
-xbg
-xbg
-lyW
+cER
+cER
+qbs
ajZ
avo
avs
@@ -114471,9 +114461,9 @@ adF
aef
afs
agA
-eWN
-lOn
-rmB
+dyG
+oXo
+vGt
vOy
mTp
wiW
@@ -114493,10 +114483,10 @@ lON
dVu
oDR
vOP
-kGS
-fAW
-vlR
-qPv
+eBy
+gkl
+aHV
+eqV
qvL
wmP
wmP
@@ -114510,10 +114500,10 @@ cXF
rLU
dKp
cHu
-mRU
-jtU
-vpf
-woU
+lYm
+iTV
+dhe
+ckw
aag
aag
aag
@@ -114554,12 +114544,12 @@ bdH
bdH
bdH
aad
-kyw
-deq
-sJa
-bwG
-pGG
-sab
+nnw
+xnn
+cnP
+pAH
+weW
+jXC
izk
hds
aQF
@@ -114571,9 +114561,9 @@ qZH
bsN
buB
aWD
-qPk
-hKe
-qPk
+fVq
+mjz
+fVq
xMs
bXw
eiw
@@ -114595,9 +114585,9 @@ boh
qDP
wbP
vMo
-knm
-sPY
-cbL
+mjE
+nMa
+hoT
bJt
qom
bDs
@@ -114612,8 +114602,8 @@ idx
hAz
gHj
bJt
-oqI
-xbg
+ygb
+cER
avo
avo
avo
@@ -114674,9 +114664,9 @@ adD
sOw
afs
agA
-eWN
-lOn
-rmB
+dyG
+oXo
+vGt
vOy
axn
dRh
@@ -114696,10 +114686,10 @@ vOy
aRd
aIo
vOy
-gyb
-lOn
-rmB
-aRl
+vdI
+oXo
+vGt
+bUH
pBG
lvb
eAN
@@ -114713,10 +114703,10 @@ bHk
vZw
bHk
cHu
-mRU
-vpf
-mRU
-woU
+lYm
+dhe
+lYm
+ckw
aag
aag
aag
@@ -114757,10 +114747,10 @@ bdH
bdH
bdH
aad
-kyw
-lfx
-deq
-jgK
+nnw
+wli
+xnn
+mfc
aNs
aNs
hyw
@@ -114774,9 +114764,9 @@ fHF
bml
buB
aWD
-eZC
-pSF
-eZC
+sDE
+dAn
+sDE
xMs
xMs
xMs
@@ -114798,9 +114788,9 @@ vMo
vMo
vMo
vMo
-hBW
-ltv
-kGw
+uBI
+naO
+fRF
bJt
bJt
nFI
@@ -114815,8 +114805,8 @@ gSk
bDs
bpI
bJt
-jLH
-xbg
+rrp
+cER
lpy
avC
avC
@@ -114877,9 +114867,9 @@ adF
aef
afs
agA
-eWN
-lOn
-rmB
+dyG
+oXo
+vGt
vOy
aAr
pGK
@@ -114899,9 +114889,9 @@ aCD
hFC
qmy
vOy
-eWN
-lOn
-rmB
+dyG
+oXo
+vGt
pBG
pBG
hEl
@@ -114916,10 +114906,10 @@ vzp
vZw
erd
cHu
-mRU
-vzB
-mRU
-woU
+lYm
+eLq
+lYm
+ckw
aag
aag
aag
@@ -114960,10 +114950,10 @@ bdH
bdH
bdH
aad
-kyw
-txp
-iGc
-bwG
+nnw
+dDd
+sro
+pAH
vMr
vMr
izk
@@ -114977,9 +114967,9 @@ htL
aUL
buB
aWD
-qPk
-hKe
-qPk
+fVq
+mjz
+fVq
nyw
iXU
hDw
@@ -115001,9 +114991,9 @@ vEH
uFH
tQd
nyw
-knm
-sPY
-knm
+mjE
+nMa
+mjE
yfS
sEi
dck
@@ -115018,8 +115008,8 @@ gSk
reL
wiI
bJt
-tqV
-dSm
+kbz
+meM
avo
avo
avo
@@ -115080,9 +115070,9 @@ aef
aef
pHG
abE
-ciI
-jao
-rmB
+jtr
+pEH
+vGt
vOy
aID
gLc
@@ -115102,9 +115092,9 @@ aoM
aoM
vgB
kgs
-eWN
-jao
-rmB
+dyG
+pEH
+vGt
bvX
ojQ
eAN
@@ -115119,10 +115109,10 @@ bHk
vZw
bHk
cHu
-mRU
-vpf
-mRU
-woU
+lYm
+dhe
+lYm
+ckw
aah
aag
aag
@@ -115163,10 +115153,10 @@ bdH
bdH
bdH
aad
-kyw
-cme
-whm
-bwG
+nnw
+kQZ
+ohw
+pAH
mTi
lJK
izk
@@ -115180,9 +115170,9 @@ aTZ
aUM
gJP
aQF
-rmz
-wKN
-qPk
+bHU
+jYZ
+fVq
nyw
beH
dcd
@@ -115204,9 +115194,9 @@ beH
beH
beH
nyw
-knm
-sPY
-knm
+mjE
+nMa
+mjE
yfS
hgL
swt
@@ -115221,9 +115211,9 @@ gSk
bDs
vwI
bJt
-lAa
-mgb
-lyW
+qxb
+jbS
+qbs
ajZ
avo
avs
@@ -115283,9 +115273,9 @@ adF
aef
aGS
agA
-eWN
-jao
-rmB
+dyG
+pEH
+vGt
vOy
aMd
pGK
@@ -115305,9 +115295,9 @@ prx
fpT
eVT
kgs
-eWN
-jao
-rmB
+dyG
+pEH
+vGt
bvX
kVV
vQR
@@ -115322,10 +115312,10 @@ pRy
wwW
mRW
cHu
-mRU
-jtU
-vpf
-woU
+lYm
+iTV
+dhe
+ckw
aaa
aad
aag
@@ -115366,15 +115356,15 @@ bdH
bdH
bdH
aad
-kyw
-cGY
-ipn
-bwG
+nnw
+eSH
+hWV
+pAH
aQF
aQF
sPc
xIQ
-sab
+jXC
aWD
olM
aRy
@@ -115383,9 +115373,9 @@ eXr
iFH
buv
aWE
-qPk
-ckh
-htl
+fVq
+nsO
+bRl
aum
emr
emr
@@ -115407,9 +115397,9 @@ rCO
rCO
rCO
eVv
-wwE
-mDZ
-knm
+goS
+dHS
+mjE
ykj
rlQ
ven
@@ -115424,9 +115414,9 @@ gSk
bDs
fUB
bJt
-mgb
-nhw
-lyW
+jbS
+fLl
+qbs
ajZ
avo
avo
@@ -115486,9 +115476,9 @@ adF
aef
nIS
uZZ
-kGS
-jao
-rmB
+eBy
+pEH
+vGt
vOy
aMg
aSo
@@ -115508,16 +115498,16 @@ ger
aoM
aFf
mmN
-eWN
-jao
-rmB
+dyG
+pEH
+vGt
bvX
maO
lPm
iZV
fdx
cuq
-eQJ
+edn
fVF
pBG
qWR
@@ -115525,10 +115515,10 @@ wJH
wJH
wJH
sNR
-mRU
-jtU
-vpf
-woU
+lYm
+iTV
+dhe
+ckw
aaa
aae
aah
@@ -115569,10 +115559,10 @@ bdH
bdH
bdH
aad
-kyw
-oif
-deq
-bwG
+nnw
+jtG
+xnn
+pAH
weR
aPE
izk
@@ -115586,9 +115576,9 @@ pOi
pOi
nVF
aWF
-qPk
-wKN
-qPk
+fVq
+jYZ
+fVq
nyw
eGZ
ieX
@@ -115610,9 +115600,9 @@ bhq
dcd
eTd
nyw
-knm
-rDO
-hqp
+mjE
+dIs
+rDM
kKk
rDt
gpI
@@ -115627,9 +115617,9 @@ gSk
bDs
nqO
bJt
-nQo
-pgJ
-lyW
+lBj
+rzK
+qbs
ajZ
aaa
avo
@@ -115689,9 +115679,9 @@ adF
aef
nIS
eWF
-kGS
-jao
-rmB
+eBy
+pEH
+vGt
vOy
aQZ
bkT
@@ -115709,11 +115699,11 @@ ggl
jjS
qMP
kBP
-aSl
+qIB
vOy
-ciI
-jao
-hCF
+jtr
+pEH
+dFr
pBG
pBG
pBG
@@ -115724,14 +115714,14 @@ pBG
pBG
pBG
pBG
-mRU
-mRU
-mRU
-mRU
-mRU
-jtU
-tMU
-woU
+lYm
+lYm
+lYm
+lYm
+lYm
+iTV
+enA
+ckw
bdH
bdH
bdH
@@ -115772,12 +115762,12 @@ bdH
bdH
bdH
aad
-kyw
-byt
-lfx
-bwG
-iWQ
-iWQ
+nnw
+pDZ
+wli
+pAH
+esV
+esV
uFd
mUq
qwt
@@ -115789,9 +115779,9 @@ tou
tou
jhy
aQF
-eZC
-hMk
-mkw
+sDE
+dPO
+ojn
bdd
bdd
bdd
@@ -115813,9 +115803,9 @@ bdd
bdd
bdd
bdd
-xwm
-ltv
-hBW
+uHi
+naO
+uBI
yfS
ape
ven
@@ -115830,9 +115820,9 @@ cnu
bDs
knK
bJt
-xbg
-oUZ
-lyW
+cER
+wRn
+qbs
ajZ
bdH
bdH
@@ -115892,9 +115882,9 @@ adF
aef
kqN
agA
-eWN
-lOn
-rmB
+dyG
+oXo
+vGt
vOy
dVd
lea
@@ -115914,27 +115904,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
@@ -115975,13 +115965,13 @@ bdH
bdH
bdH
aad
-kyw
-jNo
-lfx
-bwG
-iWQ
-iWQ
-sab
+nnw
+vEQ
+wli
+pAH
+esV
+esV
+jXC
aNr
pQY
aWD
@@ -115992,9 +115982,9 @@ dVO
bsR
aQr
aQF
-qPk
-wKN
-qPk
+fVq
+jYZ
+fVq
tda
ngI
dkq
@@ -116016,9 +116006,9 @@ qby
btY
bAJ
huU
-knm
-sPY
-knm
+mjE
+nMa
+mjE
yfS
ape
ven
@@ -116033,9 +116023,9 @@ gSk
ljG
tSp
bJt
-xbg
-ssk
-lyW
+cER
+meC
+qbs
ajZ
bdH
bdH
@@ -116095,9 +116085,9 @@ fcE
aef
uNN
abE
-iGZ
-lOn
-rmB
+wOm
+oXo
+vGt
vOy
vOy
vOy
@@ -116117,9 +116107,9 @@ nPE
oqZ
uaI
vOy
-eFI
-lOn
-rmB
+mKO
+oXo
+vGt
fKh
iuG
sOv
@@ -116130,14 +116120,14 @@ dzp
rMT
dzp
pBG
-jtU
-mRU
-mRU
-mRU
-mRU
-vpf
-mRU
-woU
+iTV
+lYm
+lYm
+lYm
+lYm
+dhe
+lYm
+ckw
bdH
bdH
bdH
@@ -116178,10 +116168,10 @@ bdH
bdH
bdH
aad
-kyw
-deq
-lfx
-bwG
+nnw
+xnn
+wli
+pAH
mTi
lJK
mTi
@@ -116195,9 +116185,9 @@ aQF
aQF
aQF
aQF
-ldb
-rYI
-fzc
+dvK
+rAc
+kQm
bdg
vyg
bni
@@ -116219,9 +116209,9 @@ snb
xbd
bAU
bdg
-jlD
-pYN
-raE
+vze
+lyP
+sZW
bJt
wbC
lHu
@@ -116236,9 +116226,9 @@ gSk
oDE
bJt
bJt
-xbg
-mgb
-lyW
+cER
+jbS
+qbs
ajZ
bdH
bdH
@@ -116298,11 +116288,11 @@ aeI
eva
xzf
abE
-ciI
-jao
-uZI
-cSM
-xfo
+jtr
+pEH
+puV
+rvt
+vaA
vOy
vOy
vOy
@@ -116320,9 +116310,9 @@ vOy
vOy
vOy
vOy
-czJ
-jao
-rmB
+wZt
+pEH
+vGt
fKh
ubI
nQA
@@ -116333,14 +116323,14 @@ nTR
gDp
rwq
pBG
-jtU
-mRU
-oyO
-nve
-mRU
-vzB
-mRU
-woU
+iTV
+lYm
+fhb
+vlj
+lYm
+eLq
+lYm
+ckw
bdH
bdH
bdH
@@ -116381,10 +116371,10 @@ bdH
bdH
bdH
aad
-kyw
-xbI
-lfx
-bwG
+nnw
+dwU
+wli
+pAH
aQF
aQF
aQF
@@ -116394,13 +116384,13 @@ aQF
aQF
aQF
aQF
-wYG
-yhR
-gHi
-bwG
-pzj
-uhq
-pzj
+beA
+hmM
+gFc
+pAH
+dJs
+rTr
+dJs
bdg
apz
dyd
@@ -116422,9 +116412,9 @@ vPw
bvr
bBQ
bdg
-sgL
-aRL
-sgL
+nre
+hyu
+nre
rde
vjC
iMm
@@ -116438,10 +116428,10 @@ bDs
gSk
luS
bJt
-uCw
-xbg
-mgb
-lyW
+ebL
+cER
+jbS
+qbs
ajZ
bdH
bdH
@@ -116483,11 +116473,11 @@ aaa
aaa
aaa
aaa
-vHn
-cGd
-moK
-cGd
-cGd
+qdy
+rOR
+jZD
+rOR
+rOR
aNi
aNi
bWr
@@ -116501,11 +116491,11 @@ aNi
aNi
aNi
aNi
-eFI
-jao
-gfv
-gfv
-rmB
+mKO
+pEH
+uaR
+uaR
+vGt
vOy
elR
xXh
@@ -116523,9 +116513,9 @@ dMK
vOy
vOy
vOy
-eWN
-jao
-rmB
+dyG
+pEH
+vGt
pBG
mGT
nQA
@@ -116536,14 +116526,14 @@ pBG
pBG
pBG
pBG
-jtU
-rXF
-jtU
-vzB
-mRU
-kuK
-mRU
-woU
+iTV
+pmS
+iTV
+eLq
+lYm
+jDh
+lYm
+ckw
aaa
aaa
aaa
@@ -116584,26 +116574,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
@@ -116625,9 +116615,9 @@ bpv
tMW
bBY
bCh
-mPM
-esd
-mPM
+oUo
+xXC
+oUo
ejw
xML
iMm
@@ -116641,10 +116631,10 @@ bDs
gSk
vSp
lHG
-kOJ
-mgb
-mgb
-lyW
+rHA
+jbS
+jbS
+qbs
ajZ
bdH
bdH
@@ -116686,11 +116676,11 @@ aaf
aaf
aaf
aaf
-vHn
-ejV
-hoT
-hoT
-vyh
+qdy
+qTv
+oKB
+oKB
+nSm
aNi
cYT
aNm
@@ -116704,11 +116694,11 @@ bhx
vif
aOR
bsw
-eWN
-uSZ
-rDm
-ldq
-rmB
+dyG
+rYs
+onq
+xAC
+vGt
vOy
wWz
vHO
@@ -116724,29 +116714,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
@@ -116780,33 +116770,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
@@ -116828,9 +116818,9 @@ mng
wTm
wCI
tda
-oSM
-ter
-oSM
+npi
+vJx
+npi
bJt
swE
wpI
@@ -116844,17 +116834,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
@@ -116889,11 +116879,11 @@ aag
aag
aag
aag
-vHn
-dGg
-tob
-hoT
-tob
+qdy
+bEj
+nxJ
+oKB
+nxJ
aNi
aZe
aNm
@@ -116907,11 +116897,11 @@ aco
aco
dYu
bsw
-cKW
-xNl
-dpS
-jao
-hCF
+yks
+fqX
+nTU
+pEH
+dFr
vOy
wWz
anw
@@ -116927,11 +116917,11 @@ wLy
eiE
wTM
vOy
-eWN
-gFL
-gDQ
-xgE
-rmB
+dyG
+sfv
+hJt
+xVd
+vGt
fKh
eYn
nQA
@@ -116942,14 +116932,14 @@ eAN
eAN
eAN
pBG
-vpf
-mRU
-mRU
-mRU
-mRU
-vpI
-vpf
-woU
+dhe
+lYm
+lYm
+lYm
+lYm
+uCU
+dhe
+ckw
aag
aag
aag
@@ -116982,22 +116972,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
@@ -117007,9 +116997,9 @@ bdd
bdd
bdd
bdd
-nhE
-naa
-nVQ
+cnx
+kCH
+czH
bdd
vuA
vuA
@@ -117031,9 +117021,9 @@ vuA
vuA
vuA
bdd
-fvV
-ter
-gvK
+kko
+vJx
+raq
bdd
bdd
bdd
@@ -117048,17 +117038,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
@@ -117092,11 +117082,11 @@ aag
aag
aag
aag
-vHn
-oSG
-tob
-tob
-tob
+qdy
+xIp
+nxJ
+nxJ
+nxJ
aNi
aZr
aNm
@@ -117112,9 +117102,9 @@ cCa
aNi
aNi
aNi
-jMP
-mxg
-rmB
+wal
+xJr
+vGt
vOy
wWz
ovG
@@ -117130,11 +117120,11 @@ gxP
aOe
wTM
vOy
-nLM
-lOn
-acQ
-acQ
-rmB
+gyR
+oXo
+oao
+oao
+vGt
fKh
wvo
nQA
@@ -117145,14 +117135,14 @@ skR
oxc
nBi
pBG
-vzB
-mRU
-pGh
-xEs
-mRU
-jtU
-tMU
-woU
+eLq
+lYm
+mre
+flK
+lYm
+iTV
+enA
+ckw
aag
aag
aag
@@ -117185,22 +117175,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
@@ -117210,9 +117200,9 @@ eYj
aSp
mho
bdg
-fZE
-iLm
-fZE
+owO
+daA
+owO
bdg
bqZ
bqZ
@@ -117234,9 +117224,9 @@ bqZ
bqZ
bqZ
bdg
-oSM
-xub
-oSM
+npi
+cbo
+npi
bdg
lCE
oZD
@@ -117251,17 +117241,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
@@ -117295,11 +117285,11 @@ aag
aag
aag
aag
-vHn
-oeH
-tob
-hoT
-tob
+qdy
+pPq
+nxJ
+oKB
+nxJ
aNi
aZs
aNm
@@ -117315,9 +117305,9 @@ qiy
ahR
ahR
egt
-tzF
-gIN
-rmB
+eQJ
+nmj
+vGt
vOy
woh
vgO
@@ -117333,13 +117323,13 @@ qxm
vgO
xAe
vOy
-oxg
-jao
-iUV
-xNl
-xZf
+wYQ
+pEH
+bfG
+fqX
+miG
fKh
-lDa
+sSP
eAN
eAN
vEG
@@ -117348,14 +117338,14 @@ pBG
pBG
pBG
pBG
-vpf
-tra
-vpf
-vzB
-mRU
-iJT
-vpf
-woU
+dhe
+whr
+dhe
+eLq
+lYm
+iQR
+dhe
+ckw
aag
aag
aag
@@ -117388,9 +117378,9 @@ bdH
bdH
bdH
bdH
-kyw
-deq
-lfx
+nnw
+xnn
+wli
nsY
nsY
pRT
@@ -117400,10 +117390,10 @@ nsY
nsY
nsY
nsY
-bwG
-bwG
-msC
-bwG
+pAH
+pAH
+vwU
+pAH
bdd
xwE
dAQ
@@ -117413,9 +117403,9 @@ tGG
bpA
mho
bdg
-fZE
-naa
-fZE
+owO
+kCH
+owO
bdg
bqZ
beH
@@ -117437,9 +117427,9 @@ beH
beH
bqZ
bdg
-oSM
-ter
-oSM
+npi
+vJx
+npi
bdg
lCE
uek
@@ -117462,9 +117452,9 @@ nsY
nsY
nsY
nsY
-kqb
-mgb
-lyW
+ogM
+jbS
+qbs
aaa
aaa
aaa
@@ -117498,11 +117488,11 @@ aag
aag
aag
aag
-vHn
-mId
-hoT
-hoT
-hoT
+qdy
+brD
+oKB
+oKB
+oKB
aNi
jWr
aNm
@@ -117518,9 +117508,9 @@ hpY
aOR
aOR
bgK
-kGS
-mxg
-rmB
+eBy
+xJr
+vGt
vOy
vOy
vOy
@@ -117536,29 +117526,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
@@ -117591,9 +117581,9 @@ aaa
aaa
aaa
aaa
-kyw
-lfx
-deq
+nnw
+wli
+xnn
nsY
xWT
kxd
@@ -117603,10 +117593,10 @@ rSG
rur
oqS
nsY
-hsh
-cPP
-deq
-eLH
+hnK
+niy
+xnn
+fLI
bdd
eUZ
lCr
@@ -117616,9 +117606,9 @@ tGG
lJD
mho
bdg
-fZE
-naa
-fZE
+owO
+kCH
+owO
bdg
bqZ
beH
@@ -117640,9 +117630,9 @@ gBo
beH
bqZ
bdg
-oSM
-ter
-oSM
+npi
+vJx
+npi
bdg
lCE
fMe
@@ -117665,9 +117655,9 @@ rSG
qkP
oqS
nsY
-mgb
-mgb
-lyW
+jbS
+jbS
+qbs
aaa
aaa
aaa
@@ -117701,11 +117691,11 @@ aag
aag
aag
aag
-vHn
-eDq
-jFI
-cGd
-moK
+qdy
+rMG
+fra
+rOR
+jZD
aNi
aNi
aNi
@@ -117721,9 +117711,9 @@ aOR
aOR
agr
aNi
-eWN
-bNT
-rmB
+dyG
+tje
+vGt
vOy
vOy
vOy
@@ -117739,11 +117729,11 @@ vOy
vOy
vOy
vOy
-kbT
-bNT
-rmB
-mRU
-vpf
+mba
+tje
+vGt
+lYm
+dhe
pBG
xiU
xUa
@@ -117754,14 +117744,14 @@ pZH
nnL
lgt
pBG
-vpI
-mRU
-bhV
-jtU
-mRU
-vzB
-mRU
-woU
+uCU
+lYm
+aHx
+iTV
+lYm
+eLq
+lYm
+ckw
aag
aag
aag
@@ -117794,9 +117784,9 @@ aaa
aaa
aaa
aaa
-kyw
-lfx
-deq
+nnw
+wli
+xnn
nsY
xWT
kxd
@@ -117806,10 +117796,10 @@ iIP
kxd
dDt
nsY
-exb
-deq
-deq
-qLY
+krA
+xnn
+xnn
+uoF
bdd
ljW
bDP
@@ -117819,9 +117809,9 @@ lCr
mpn
pZR
bdd
-atH
-iEM
-atH
+mqu
+tvc
+mqu
bCx
bqZ
beH
@@ -117843,9 +117833,9 @@ bgO
beH
bqZ
bCx
-oSM
-ter
-oSM
+npi
+vJx
+npi
bdd
tSF
lsn
@@ -117868,9 +117858,9 @@ dmR
kxd
dDt
nsY
-mgb
-xbg
-lyW
+jbS
+cER
+qbs
aaa
aaa
aaa
@@ -117904,15 +117894,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
@@ -117924,9 +117914,9 @@ aNi
aNi
aNi
aNi
-glc
-bNT
-rmB
+oFZ
+tje
+vGt
bPF
aqG
ata
@@ -117939,14 +117929,14 @@ vYz
awR
uoi
vOy
-jyJ
-niF
+pOR
+vlf
bPF
-ciI
-lOn
-rmB
-mRU
-vpf
+jtr
+oXo
+vGt
+lYm
+dhe
pBG
pBG
pBG
@@ -117957,14 +117947,14 @@ pBG
pBG
pBG
pBG
-jtU
-mRU
-mRU
-mRU
-mRU
-vpf
-mRU
-woU
+iTV
+lYm
+lYm
+lYm
+lYm
+dhe
+lYm
+ckw
aag
aag
aag
@@ -117997,9 +117987,9 @@ aaa
aaa
aaa
aaa
-kyw
-lfx
-deq
+nnw
+wli
+xnn
nsY
gsg
vHq
@@ -118009,10 +117999,10 @@ rNb
bxC
jiU
nsY
-jvt
-hiu
-deq
-vSr
+dXU
+tIN
+xnn
+vgY
bdd
asr
asr
@@ -118022,9 +118012,9 @@ nYp
fZG
phd
pmv
-mzv
-yfg
-fZE
+kcR
+vXV
+owO
nyw
bqZ
beH
@@ -118046,9 +118036,9 @@ tmB
eBg
vKe
eVv
-cVZ
-xdf
-cVZ
+rqn
+onn
+rqn
hLS
vKe
vKe
@@ -118071,9 +118061,9 @@ iSm
bxC
jiU
nsY
-mgb
-xbg
-lyW
+jbS
+cER
+qbs
aaa
aaa
aaa
@@ -118097,39 +118087,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
@@ -118142,42 +118132,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
@@ -118200,9 +118190,9 @@ aaa
aac
aaf
aaf
-kyw
-lfx
-deq
+nnw
+wli
+xnn
nsY
nsY
qxC
@@ -118212,10 +118202,10 @@ nsY
ntx
nsY
nsY
-qWL
-kIk
-eXD
-kMr
+biv
+oSy
+waS
+pJE
bdd
bdd
bdd
@@ -118225,9 +118215,9 @@ bdd
bdd
bdd
bdd
-fZE
-iLm
-fZE
+owO
+daA
+owO
bdg
bqZ
beH
@@ -118249,9 +118239,9 @@ bgO
beH
bqZ
bdg
-oSM
-xub
-oSM
+npi
+cbo
+npi
bdd
bdd
bdd
@@ -118274,9 +118264,9 @@ nsY
gLZ
nsY
nsY
-mgb
-nhw
-lyW
+jbS
+fLl
+qbs
aaf
aaf
ajY
@@ -118300,7 +118290,7 @@ aaa
aaa
aaa
aaa
-gxm
+uWv
dxF
dxF
aaH
@@ -118311,28 +118301,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
@@ -118348,28 +118338,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
@@ -118380,7 +118370,7 @@ aeT
nnD
aZF
aZF
-gxm
+uWv
aaa
aaa
aaa
@@ -118401,11 +118391,11 @@ aaa
aaa
aaa
aad
-kyw
-kyw
-kyw
-deq
-caq
+nnw
+nnw
+nnw
+xnn
+jkb
nsY
tUS
bNh
@@ -118415,10 +118405,10 @@ fPp
lqN
vlO
nsY
-xxG
-smA
-ktR
-lfx
+kkj
+mIX
+lls
+wli
bdd
dJI
jaf
@@ -118428,9 +118418,9 @@ mPR
osU
vKe
dYX
-mzv
-xhW
-fZE
+kcR
+hFU
+owO
bdg
bqZ
beH
@@ -118452,9 +118442,9 @@ bgO
beH
bqZ
bdg
-oSM
-iOo
-cVZ
+npi
+mEr
+rqn
iUk
cIx
fUC
@@ -118477,11 +118467,11 @@ iQt
uZo
xmJ
nsY
-xbg
-mgb
-lyW
-lyW
-lyW
+cER
+jbS
+qbs
+qbs
+qbs
ajZ
aaa
aaa
@@ -118503,7 +118493,7 @@ aaa
aaa
aaa
aaa
-gxm
+uWv
dxF
dxF
aaH
@@ -118514,28 +118504,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
@@ -118551,28 +118541,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
@@ -118583,7 +118573,7 @@ aeT
nnD
aZF
aZF
-gxm
+uWv
aaa
aaa
aaa
@@ -118603,12 +118593,12 @@ aaa
aaa
aaa
aaa
-kyw
-kyw
-veq
-deq
-deq
-lfx
+nnw
+nnw
+dle
+xnn
+xnn
+wli
nsY
kio
sJY
@@ -118618,10 +118608,10 @@ xTW
oGP
cnM
nsY
-kqB
-txH
-txH
-deq
+foa
+chi
+chi
+xnn
bdd
fva
lkL
@@ -118631,9 +118621,9 @@ cHB
hDV
vmP
bdd
-fZE
-iLm
-fZE
+owO
+daA
+owO
bdg
bqZ
bqZ
@@ -118655,9 +118645,9 @@ bgO
bqZ
bqZ
bdg
-oSM
-xub
-oSM
+npi
+cbo
+npi
bdd
oNP
tge
@@ -118680,12 +118670,12 @@ pyc
uMn
ivz
nsY
-xbg
-mgb
-xbg
-xbg
-lyW
-lyW
+cER
+jbS
+cER
+cER
+qbs
+qbs
aaa
aaa
aaa
@@ -118706,7 +118696,7 @@ aaa
aaa
aaa
aaa
-gxm
+uWv
dxF
dxF
aaH
@@ -118717,28 +118707,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
@@ -118754,28 +118744,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
@@ -118786,7 +118776,7 @@ aeT
nnD
aZF
aZF
-gxm
+uWv
aaa
aaa
aaa
@@ -118806,12 +118796,12 @@ aaa
aaa
aaa
aaa
-kyw
-lHB
-lfx
-lfx
-lfx
-lfx
+nnw
+cXh
+wli
+wli
+wli
+wli
heK
kam
axc
@@ -118821,10 +118811,10 @@ vHh
pvh
sZs
nsY
-bwG
-erL
-scX
-caq
+pAH
+mtR
+vmZ
+jkb
bdd
cDH
cHB
@@ -118834,9 +118824,9 @@ wmz
rhy
rec
bdg
-fZE
-naa
-onn
+owO
+kCH
+sVp
bdd
bdd
bDQ
@@ -118858,9 +118848,9 @@ bgO
cab
bdd
bdd
-tmE
-ter
-oSM
+alu
+vJx
+npi
bdg
jLS
xdP
@@ -118883,12 +118873,12 @@ xuQ
uPW
kYv
oDx
-sAS
-sAS
-sAS
-rCh
-xbg
-lyW
+lTL
+lTL
+lTL
+tzC
+cER
+qbs
aaa
aaa
aaa
@@ -118909,39 +118899,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
@@ -118957,39 +118947,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
@@ -119009,12 +118999,12 @@ aaa
aaa
aaa
aaa
-kyw
-eqm
-lfx
-vvH
-bwG
-bwG
+nnw
+hpO
+wli
+pzi
+pAH
+pAH
nsY
wpz
oEX
@@ -119024,10 +119014,10 @@ xxm
qSK
ieu
nsY
-mZc
-lfx
-neH
-deq
+aSV
+wli
+eKE
+xnn
bdd
xXW
gVu
@@ -119037,10 +119027,10 @@ wmz
vbI
rec
bdg
-atH
-iEM
-atH
-ppV
+mqu
+tvc
+mqu
+nxg
bdd
bqZ
bgO
@@ -119060,10 +119050,10 @@ gAj
bgO
bqZ
bdd
-eoy
-brq
-jnc
-brq
+eXc
+iIQ
+uYP
+iIQ
bdg
jLS
frb
@@ -119086,12 +119076,12 @@ mzV
pML
ivz
nsY
-iZd
-mgb
-xbg
-jPx
-xQd
-lyW
+gcu
+jbS
+cER
+fKC
+dvD
+qbs
aaa
aaa
aaa
@@ -119112,7 +119102,7 @@ aaa
aaa
aaa
aaa
-gxm
+uWv
ojH
ojH
taV
@@ -119126,25 +119116,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
@@ -119160,25 +119150,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
@@ -119192,7 +119182,7 @@ qXS
hXX
xDe
xDe
-gxm
+uWv
aaa
aaa
aaa
@@ -119212,12 +119202,12 @@ aaa
aaa
aaa
aaa
-kyw
-htg
-deq
-deq
-qCH
-cXm
+nnw
+slx
+xnn
+xnn
+mSc
+wgw
nsY
hUz
dbn
@@ -119227,10 +119217,10 @@ uRM
ipe
ehR
nsY
-xEe
-lfx
-tdH
-igw
+sEE
+wli
+tLD
+rMk
bdd
sgm
kEg
@@ -119240,10 +119230,10 @@ xgN
vgn
xgN
bdg
-fZE
-naa
-fZE
-fZE
+owO
+kCH
+owO
+owO
bdg
bqZ
qMR
@@ -119263,10 +119253,10 @@ tXb
fOk
bqZ
bdg
-oSM
-oSM
-ter
-oSM
+npi
+npi
+vJx
+npi
bdg
vLg
loy
@@ -119289,12 +119279,12 @@ sZH
rjV
ivz
nsY
-qZy
-jfS
-bUH
-ciB
-soT
-lyW
+eCZ
+rEF
+vDk
+woQ
+kHx
+qbs
aaa
aaa
aaa
@@ -119315,7 +119305,7 @@ aaa
aaa
aaa
aaa
-gxm
+uWv
ojH
ojH
taV
@@ -119329,25 +119319,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
@@ -119363,25 +119353,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
@@ -119395,7 +119385,7 @@ qXS
hXX
xDe
xDe
-gxm
+uWv
aaa
aaa
aaa
@@ -119415,12 +119405,12 @@ aaa
aaa
aaa
aaa
-kyw
-lfx
-lfx
-yih
-qCH
-spT
+nnw
+wli
+wli
+ijw
+mSc
+hYE
nsY
nsY
nsY
@@ -119430,10 +119420,10 @@ nsY
nsY
nsY
nsY
-bwG
-bwG
-bwG
-bwG
+pAH
+pAH
+pAH
+pAH
bdd
bdd
bdd
@@ -119443,10 +119433,10 @@ bdd
bdd
bdd
bdd
-tvl
-naa
-meQ
-fZE
+cwe
+kCH
+laC
+owO
bdg
bqZ
beH
@@ -119466,10 +119456,10 @@ gAj
beH
bqZ
bdg
-oSM
-awE
-ter
-gvK
+npi
+jEv
+vJx
+raq
bdd
bdd
bdd
@@ -119492,12 +119482,12 @@ nsY
nsY
nsY
nsY
-ecj
-bZf
-lZI
-faR
-wxu
-lyW
+fXy
+leL
+kIr
+nZp
+ffL
+qbs
aaa
aaa
aaa
@@ -119518,7 +119508,7 @@ aaa
aaa
aaa
aaa
-gxm
+uWv
ojH
ojH
taV
@@ -119543,14 +119533,14 @@ cuN
cQW
lQa
wjE
-vuE
-bkb
-kGS
-kGS
-pvi
-bgh
-spW
-pjQ
+cgj
+mcY
+eBy
+eBy
+wvN
+hAb
+waH
+bVW
vOy
wWz
qxP
@@ -119566,14 +119556,14 @@ gxP
nMe
wTM
vOy
-bgh
-spW
-pjQ
-eJg
-bkb
-kGS
-rRf
-pOC
+hAb
+waH
+bVW
+bnO
+mcY
+eBy
+jHs
+mse
qtj
fpA
qUx
@@ -119598,7 +119588,7 @@ qXS
hXX
xDe
xDe
-gxm
+uWv
aaa
aaa
aaa
@@ -119618,38 +119608,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
@@ -119669,38 +119659,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
@@ -119721,17 +119711,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
@@ -119746,14 +119736,14 @@ jlc
kbv
dTn
ngE
-acQ
-acQ
-acQ
-acQ
-xdl
-klr
-bNT
-dOW
+oao
+oao
+oao
+oao
+nJJ
+deW
+tje
+fqN
vOy
woh
vgO
@@ -119769,14 +119759,14 @@ vgO
vgO
xAe
vOy
-gTV
-mGk
-xFW
-lrd
-kkI
-kkI
-kkI
-kkI
+jkp
+hlP
+eYx
+rzC
+oSP
+oSP
+oSP
+oSP
usL
gsC
cMz
@@ -119791,17 +119781,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
@@ -119821,38 +119811,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
@@ -119872,38 +119862,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
@@ -119931,10 +119921,10 @@ aag
aag
aag
aag
-vHn
-fbe
-hoT
-rpG
+qdy
+xEq
+oKB
+oFg
bGa
dVn
vwC
@@ -119949,14 +119939,14 @@ sdv
xMO
wDg
vHA
-waV
-iGE
-kGS
-kGS
-pjY
-gqv
-hKJ
-nww
+myx
+mMC
+eBy
+eBy
+wtW
+stm
+wXf
+cBq
vOy
vOy
vOy
@@ -119972,14 +119962,14 @@ vOy
vOy
vOy
vOy
-xvO
-peu
-nww
-vcO
-ssF
-kGS
-bij
-hux
+kYs
+lZt
+cBq
+jeN
+vsK
+eBy
+vJd
+vMt
kfo
rCl
ePM
@@ -119994,10 +119984,10 @@ dbc
cNM
ofU
njk
-rXF
-jtU
-vzB
-woU
+pmS
+iTV
+eLq
+ckw
aag
aag
aag
@@ -120024,38 +120014,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
@@ -120075,38 +120065,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
@@ -120134,73 +120124,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
@@ -120227,18 +120217,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
@@ -120254,11 +120244,11 @@ mWy
jeb
jeb
jeb
-fZE
-meQ
-iEM
-meQ
-fZE
+owO
+laC
+tvc
+laC
+owO
bdg
bqZ
udi
@@ -120278,11 +120268,11 @@ veu
mDW
bqZ
bdg
-oSM
-awE
-jnc
-awE
-oSM
+npi
+jEv
+uYP
+jEv
+npi
vra
vra
vra
@@ -120298,18 +120288,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
@@ -120337,73 +120327,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
@@ -120430,18 +120420,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
@@ -120457,11 +120447,11 @@ xHp
hmF
vlX
jeb
-bMf
-meQ
-iEM
-meQ
-fZE
+jJF
+laC
+tvc
+laC
+owO
bdg
bqZ
udi
@@ -120481,11 +120471,11 @@ fIZ
mDW
bqZ
bdg
-oSM
-awE
-jnc
-awE
-eOx
+npi
+jEv
+uYP
+jEv
+fcv
vra
asX
chf
@@ -120501,18 +120491,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
@@ -120540,73 +120530,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
@@ -120633,18 +120623,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
@@ -120660,11 +120650,11 @@ xHp
xwl
rHf
jeb
-rrU
-meQ
-iEM
-meQ
-fZE
+rUq
+laC
+tvc
+laC
+owO
bdg
bqZ
ngI
@@ -120684,11 +120674,11 @@ xAt
nNH
bqZ
bdg
-oSM
-awE
-jnc
-awE
-uNp
+npi
+jEv
+uYP
+jEv
+sGJ
vra
bMq
qUq
@@ -120704,18 +120694,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
@@ -120744,31 +120734,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
@@ -120784,31 +120774,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
@@ -120836,18 +120826,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
@@ -120863,11 +120853,11 @@ gAA
fFD
vlX
jeb
-wEK
-meQ
-iEM
-meQ
-fZE
+oue
+laC
+tvc
+laC
+owO
bdg
bqZ
beH
@@ -120887,11 +120877,11 @@ beH
beH
bqZ
bdg
-oSM
-awE
-jnc
-awE
-dNW
+npi
+jEv
+uYP
+jEv
+mBa
vra
asX
drj
@@ -120907,18 +120897,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
@@ -120947,31 +120937,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
@@ -120987,31 +120977,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
@@ -121039,18 +121029,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
@@ -121066,11 +121056,11 @@ xHp
xwl
vlX
jeb
-dQV
-meQ
-iEM
-meQ
-onn
+idv
+laC
+tvc
+laC
+sVp
bdd
bDQ
lnm
@@ -121090,11 +121080,11 @@ sCA
bVw
cab
bdd
-tmE
-awE
-jnc
-awE
-gvK
+alu
+jEv
+uYP
+jEv
+raq
vra
asX
qUq
@@ -121110,18 +121100,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
@@ -121150,31 +121140,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
@@ -121190,31 +121180,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
@@ -121242,18 +121232,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
@@ -121269,11 +121259,11 @@ xHp
diJ
rHf
jeb
-fZE
-meQ
-iEM
-meQ
-fZE
+owO
+laC
+tvc
+laC
+owO
bCx
bqZ
cNf
@@ -121293,11 +121283,11 @@ nuK
dVe
bqZ
bCx
-oSM
-awE
-vOZ
-awE
-oSM
+npi
+jEv
+fBW
+jEv
+npi
vra
bMq
drj
@@ -121313,18 +121303,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
@@ -121353,31 +121343,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
@@ -121393,31 +121383,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
@@ -121440,23 +121430,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
@@ -121472,11 +121462,11 @@ xHp
xwl
vlX
jeb
-fZE
-meQ
-cmL
-czR
-jzT
+owO
+laC
+vLe
+jrx
+jtH
bCy
bDS
cNf
@@ -121496,11 +121486,11 @@ qnC
dVe
cac
bCy
-hQf
-sTU
-xLX
-awE
-hCf
+icd
+qsK
+rNT
+jEv
+eVf
vra
asX
qUq
@@ -121516,23 +121506,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
@@ -121556,31 +121546,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
@@ -121596,31 +121586,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
@@ -121643,23 +121633,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
@@ -121675,11 +121665,11 @@ xWd
oSL
jeb
jeb
-fZE
-meQ
-dAm
-fEF
-otC
+owO
+laC
+uQE
+cDd
+ycb
bdd
bDT
tHv
@@ -121699,11 +121689,11 @@ iXb
pzV
cad
bdd
-vMA
-oYi
-sIR
-awE
-oSM
+vij
+xPU
+qay
+jEv
+npi
vra
vra
eUh
@@ -121719,23 +121709,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
@@ -121759,31 +121749,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
@@ -121799,31 +121789,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
@@ -121846,23 +121836,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
@@ -121878,11 +121868,11 @@ gAA
cGV
tkN
jeb
-hjQ
-meQ
-fNd
-oUi
-qdV
+rSI
+laC
+dYa
+uIX
+lRL
bdd
bDU
bqZ
@@ -121902,11 +121892,11 @@ bqZ
bqZ
cae
bdd
-huP
-nbu
-kcg
-awE
-oSM
+sUA
+unm
+bJN
+jEv
+npi
vra
gNq
hXb
@@ -121922,23 +121912,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
@@ -121962,31 +121952,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
@@ -122002,31 +121992,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
@@ -122049,23 +122039,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
@@ -122081,11 +122071,11 @@ xHp
cGV
nBa
jeb
-atH
-atH
-dAm
-aCX
-suH
+mqu
+mqu
+uQE
+sEz
+unA
bdd
beQ
beQ
@@ -122105,11 +122095,11 @@ beQ
beQ
beQ
bdd
-oCb
-wwv
-sIR
-brq
-brq
+uxy
+kGz
+qay
+iIQ
+iIQ
vra
bMu
hXb
@@ -122125,23 +122115,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
@@ -122165,31 +122155,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
@@ -122205,31 +122195,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
@@ -122252,23 +122242,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
@@ -122284,11 +122274,11 @@ xHp
aUi
iow
jeb
-fZE
-meQ
-rTA
-tAW
-stR
+owO
+laC
+jgu
+ehZ
+jjE
bCz
bDV
bGw
@@ -122308,18 +122298,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
@@ -122328,23 +122318,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
@@ -122368,31 +122358,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
@@ -122408,31 +122398,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
@@ -122455,23 +122445,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
@@ -122487,11 +122477,11 @@ aQL
aQL
aQL
aQL
-dQV
-meQ
-dAm
-fEF
-fZE
+idv
+laC
+uQE
+cDd
+owO
bCA
bCA
bdj
@@ -122511,11 +122501,11 @@ bCA
bdj
bCA
bCA
-oSM
-oYi
-sIR
-awE
-gvK
+npi
+xPU
+qay
+jEv
+raq
bJC
bJC
bJC
@@ -122531,23 +122521,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
@@ -122571,31 +122561,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
@@ -122611,31 +122601,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
@@ -122658,23 +122648,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
@@ -122690,11 +122680,11 @@ aQL
mJP
bSn
aQL
-hEm
-kti
-eFa
-fEF
-exQ
+fPk
+xdN
+qor
+cDd
+pgg
bCB
bCB
bCB
@@ -122714,11 +122704,11 @@ bCB
bCB
bCB
bCB
-uuI
-oYi
-mkx
-bIW
-eMZ
+diu
+xPU
+fed
+slr
+xvB
bJC
jSp
lAQ
@@ -122734,23 +122724,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
@@ -122774,31 +122764,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
@@ -122814,31 +122804,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
@@ -122861,21 +122851,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
@@ -122893,11 +122883,11 @@ aTw
aUj
kLk
aQL
-npw
-vzi
-eFa
-fEF
-rbd
+rZb
+yaW
+qor
+cDd
+huI
bdk
bdk
bgR
@@ -122917,11 +122907,11 @@ myJ
eKI
bdk
bdk
-cxF
-oYi
-mkx
-fic
-kjW
+aXa
+xPU
+fed
+lBO
+wVz
bJC
ojF
bNG
@@ -122938,22 +122928,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
@@ -122978,30 +122968,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
@@ -123017,30 +123007,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
@@ -123064,10 +123054,10 @@ aKQ
aaa
aaa
aab
-kyw
-lfx
-gUn
-wDr
+nnw
+wli
+egM
+wdA
bdY
bdY
bdY
@@ -123078,7 +123068,7 @@ aaF
aaF
aaF
aaF
-wDr
+wdA
aLT
aLT
aLT
@@ -123097,10 +123087,10 @@ aQL
aQL
aQL
aQL
-uBj
-eFa
-fEF
-wMB
+hQs
+qor
+cDd
+rkn
bdl
bdl
bdl
@@ -123120,10 +123110,10 @@ bdl
bdl
bdl
bdl
-opd
-oYi
-mkx
-jwP
+fws
+xPU
+fed
+ndT
bJC
bJC
bJC
@@ -123141,8 +123131,8 @@ bSJ
bSJ
bSJ
bSJ
-ljv
-wDr
+lij
+wdA
anm
anm
anm
@@ -123153,10 +123143,10 @@ anm
pfp
pfp
pfp
-wDr
-nEl
-xbg
-lyW
+wdA
+xIB
+cER
+qbs
aaa
aab
aaa
@@ -123195,16 +123185,16 @@ aeA
bbe
aeA
aeA
-cGd
-tob
-cGd
+rOR
+nxJ
+rOR
afQ
aiw
aiw
nph
-kCo
-hqx
-kCo
+ksH
+wXx
+ksH
ioU
lPO
vJg
@@ -123220,16 +123210,16 @@ eEo
aGN
rub
aHq
-gar
-gft
-kCo
+tSm
+tbG
+ksH
aGz
eqB
obC
hcf
-mRU
-cpQ
-mRU
+lYm
+dlt
+lYm
lJY
lJY
lFK
@@ -123267,10 +123257,10 @@ aKQ
aaa
aaa
aab
-kyw
-oxn
-oxn
-wDr
+nnw
+nsh
+nsh
+wdA
bdY
bdY
bdY
@@ -123281,7 +123271,7 @@ aaF
aaF
aaF
aaF
-wDr
+wdA
aLT
aLT
bbY
@@ -123300,17 +123290,17 @@ brn
aRT
buM
aQL
-fZE
-eFa
-fEF
-wMB
+owO
+qor
+cDd
+rkn
bdl
bEr
bEs
bIs
bdm
rbY
-eAG
+gwD
bOK
bPD
bYa
@@ -123323,10 +123313,10 @@ bYu
nmK
caf
bdl
-oDU
-oYi
-mkx
-oSM
+eII
+xPU
+fed
+npi
bJC
cdT
cfo
@@ -123344,8 +123334,8 @@ clI
clg
clW
bSJ
-ljv
-wDr
+lij
+wdA
anm
anm
anm
@@ -123356,10 +123346,10 @@ anm
pfp
pfp
pfp
-wDr
-cZI
-xGT
-lyW
+wdA
+xzx
+mSm
+qbs
aaa
aab
aaa
@@ -123398,16 +123388,16 @@ asA
amF
kmE
aeA
-cGd
-iTQ
-cGd
+rOR
+rLQ
+rOR
ahJ
ahJ
ahJ
adO
-kCo
-tSY
-kCo
+ksH
+mns
+ksH
ioU
dnS
viN
@@ -123423,16 +123413,16 @@ aRi
aGN
qrv
aHq
-oUO
-gft
-kCo
+aWC
+tbG
+ksH
aUH
aGz
aGz
aGz
-mRU
-vzB
-mRU
+lYm
+eLq
+lYm
lJY
qbx
dcp
@@ -123470,10 +123460,10 @@ aKQ
aaa
aaa
aab
-emA
-vIg
-vIg
-wDr
+kHq
+fhT
+fhT
+wdA
bdY
bdY
bdY
@@ -123484,7 +123474,7 @@ aaF
aaF
aaF
aaF
-wDr
+wdA
aLT
aLT
bca
@@ -123503,10 +123493,10 @@ aQL
aUY
buN
aQL
-fZE
-eFa
-fEF
-wMB
+owO
+qor
+cDd
+rkn
bdl
bDX
bCA
@@ -123526,10 +123516,10 @@ rIH
tUh
cag
bdl
-jDz
-oYi
-mkx
-oSM
+lYT
+xPU
+fed
+npi
bJC
cdU
bMy
@@ -123547,8 +123537,8 @@ bSJ
bVo
clX
bSJ
-ljv
-wDr
+lij
+wdA
anm
anm
anm
@@ -123559,10 +123549,10 @@ anm
pfp
pfp
pfp
-wDr
-cOo
-rJf
-tcO
+wdA
+hgR
+kzd
+nhJ
aaa
aab
aaa
@@ -123601,16 +123591,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
@@ -123626,16 +123616,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
@@ -123673,21 +123663,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
@@ -123706,10 +123696,10 @@ aQL
aQL
aQL
aQL
-dQV
-eFa
-fEF
-fNH
+idv
+qor
+cDd
+ghy
bdl
bDY
bCA
@@ -123729,10 +123719,10 @@ jac
bCA
cah
bdl
-wPi
-oYi
-mkx
-gvK
+oKF
+xPU
+fed
+raq
bJC
bJC
bJC
@@ -123750,22 +123740,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
@@ -123804,16 +123794,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
@@ -123829,16 +123819,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
@@ -123876,22 +123866,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
@@ -123909,10 +123899,10 @@ brr
aUZ
buO
aQL
-fZE
-eFa
-fEF
-tLZ
+owO
+qor
+cDd
+xEs
bdl
bDZ
bdj
@@ -123932,10 +123922,10 @@ jac
xxa
cai
bdl
-tkg
-oYi
-mkx
-oSM
+cNI
+xPU
+fed
+npi
bJC
cdV
bMx
@@ -123953,22 +123943,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
@@ -124007,16 +123997,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
@@ -124032,16 +124022,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
@@ -124079,22 +124069,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
@@ -124112,17 +124102,17 @@ brr
aRT
buO
aQL
-fZE
-eFa
-fEF
-xpc
+owO
+qor
+cDd
+oPG
bdl
lOr
lOr
iwI
bdl
bdl
-reH
+bEt
bNP
bmD
bNP
@@ -124135,10 +124125,10 @@ bYv
tiE
tiE
bdl
-fJt
-oYi
-mkx
-oSM
+poj
+xPU
+fed
+npi
bJC
cdV
cfo
@@ -124156,22 +124146,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
@@ -124210,16 +124200,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
@@ -124235,16 +124225,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
@@ -124282,22 +124272,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
@@ -124315,16 +124305,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
@@ -124338,10 +124328,10 @@ eHa
cmo
xAB
mCo
-brq
-wwv
-sIR
-brq
+iIQ
+kGz
+qay
+iIQ
bJC
bKX
cfo
@@ -124359,22 +124349,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
@@ -124413,16 +124403,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
@@ -124438,16 +124428,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
@@ -124489,18 +124479,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
@@ -124518,10 +124508,10 @@ brr
aRT
buO
aQL
-jpW
-eFa
-svw
-mzv
+jAu
+qor
+srA
+kcR
bmv
bEg
bGU
@@ -124541,10 +124531,10 @@ bYw
nDM
bWL
sSa
-bRo
-dOG
-gKw
-tgz
+enc
+cmi
+pKd
+xpG
bJC
cdV
cfo
@@ -124562,18 +124552,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
@@ -124616,16 +124606,16 @@ wXh
aeC
ajs
qon
-taw
-obJ
+mBf
+nUS
aep
ggQ
ggQ
aME
aep
-ivV
-jnx
-iPK
+dRm
+leC
+xJv
jvY
ari
aoP
@@ -124641,16 +124631,16 @@ axo
atm
aOr
jvY
-ivV
-otE
-ivV
+dRm
+gIe
+dRm
aep
aME
ggQ
aME
aep
-hog
-kNq
+eWV
+fcW
dHe
kUV
vcE
@@ -124692,18 +124682,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
@@ -124721,10 +124711,10 @@ brr
aUY
buO
aQL
-fZE
-eFa
-fEF
-tLZ
+owO
+qor
+cDd
+xEs
mCo
bEh
bNQ
@@ -124744,10 +124734,10 @@ bKA
cXR
cal
mCo
-wcD
-oYi
-mkx
-oSM
+ueq
+xPU
+fed
+npi
bJC
cdV
bMy
@@ -124765,18 +124755,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
@@ -124819,16 +124809,16 @@ aeC
aeC
ajs
aeC
-taw
-oxy
+mBf
+nHf
aep
afj
afk
agM
aep
-pEd
-tbD
-fDk
+qRq
+kTn
+jEt
jvY
arj
atm
@@ -124844,16 +124834,16 @@ bzD
atm
aOs
jvY
-pEd
-hqx
-xhi
+qRq
+wXx
+usl
aep
aHS
afk
sHo
aep
-vmu
-kNq
+waa
+fcW
vcE
kUV
vcE
@@ -124895,18 +124885,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
@@ -124924,10 +124914,10 @@ aQL
aQL
aQL
aQL
-fZE
-eFa
-fEF
-bNr
+owO
+qor
+cDd
+gQd
bdl
bEi
bZr
@@ -124947,10 +124937,10 @@ bKA
cir
bdl
bdl
-sXC
-oYi
-mkx
-oSM
+kag
+xPU
+fed
+npi
bJC
bJC
bJC
@@ -124968,18 +124958,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
@@ -125022,16 +125012,16 @@ aeC
aeA
ajk
aeA
-taw
-oxy
+mBf
+nHf
aep
afk
afk
afk
aep
-pEd
-tbD
-fDk
+qRq
+kTn
+jEt
jvY
ark
atm
@@ -125047,16 +125037,16 @@ axo
atm
thv
jvY
-pEd
-hqx
-xhi
+qRq
+wXx
+usl
aep
afk
aHl
afk
aep
-hLt
-kNq
+tWL
+fcW
lJY
itR
kKR
@@ -125107,9 +125097,9 @@ aaa
aaa
aaa
aaa
-emA
-ikT
-jEM
+kHq
+hsf
+aYf
aLT
bcE
aMB
@@ -125127,10 +125117,10 @@ brt
aUZ
buS
aQL
-fZE
-eFa
-fEF
-tLZ
+owO
+qor
+cDd
+xEs
bdl
brp
bZr
@@ -125149,11 +125139,11 @@ bNQ
bNQ
bNQ
bGz
-egD
-oQn
-oYi
-mkx
-oSM
+mUE
+rCP
+xPU
+fed
+npi
bJC
cdX
bMx
@@ -125171,9 +125161,9 @@ clL
bVn
clZ
bSJ
-tgm
-xhO
-tcO
+dOr
+aCr
+nhJ
aaa
aaa
aaa
@@ -125225,16 +125215,16 @@ asA
amF
ohL
aeA
-taw
-oQL
+mBf
+sJo
aep
aep
aep
aep
aep
-pvE
-tbD
-fDk
+qsj
+kTn
+jEt
jvY
alL
atk
@@ -125250,16 +125240,16 @@ jvY
aAy
alL
jvY
-pEd
-hqx
-xhi
+qRq
+wXx
+usl
aep
aep
aep
aep
aep
-ddF
-kNq
+vKo
+fcW
lJY
ucw
dcp
@@ -125310,9 +125300,9 @@ aaa
aaa
aaa
aaa
-emA
-qGC
-jEM
+kHq
+bhe
+aYf
aLT
bcE
bdr
@@ -125330,10 +125320,10 @@ brt
bpC
buS
aQL
-bMf
-eFa
-fEF
-tLZ
+jJF
+qor
+cDd
+xEs
bdl
bEl
wup
@@ -125352,11 +125342,11 @@ krN
krN
krN
oqY
-lde
-oSM
-oYi
-mkx
-oSM
+wqQ
+npi
+xPU
+fed
+npi
bJC
cdX
cfo
@@ -125374,9 +125364,9 @@ clL
clg
clZ
bSJ
-xMm
-pFr
-tcO
+iLH
+tRd
+nhJ
aaa
aaa
aaa
@@ -125428,16 +125418,16 @@ ntI
aeA
aeC
puO
-taw
-oxy
-eRG
+mBf
+nHf
+nXv
aep
aep
aep
aep
-pEd
-tbD
-fDk
+qRq
+kTn
+jEt
jvY
arl
atm
@@ -125453,16 +125443,16 @@ alL
aMo
aOt
jvY
-pEd
-hqx
-jhm
+qRq
+wXx
+cGk
oIB
jgr
gGp
dMf
oIB
-vmu
-kNq
+waa
+fcW
lJY
uxC
lJY
@@ -125513,9 +125503,9 @@ aaa
aaa
aaa
aaa
-emA
-ikT
-jEM
+kHq
+hsf
+aYf
aLT
abS
bdr
@@ -125533,10 +125523,10 @@ brs
bpC
abT
aQL
-atH
-dAm
-aCX
-atH
+mqu
+uQE
+sEz
+mqu
bdl
buz
bZr
@@ -125555,11 +125545,11 @@ ibc
uly
bNN
vbR
-eGq
-uuI
-wwv
-sIR
-brq
+qZh
+diu
+kGz
+qay
+iIQ
bJC
ack
cfo
@@ -125577,9 +125567,9 @@ clK
clg
acp
bSJ
-qKK
-gEh
-tcO
+mAO
+gbz
+nhJ
aaa
aaa
aaa
@@ -125625,22 +125615,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
@@ -125656,22 +125646,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
@@ -125716,9 +125706,9 @@ aaa
aaa
aaa
aaa
-emA
-jEM
-ikT
+kHq
+aYf
+hsf
aLT
bcE
aMC
@@ -125736,10 +125726,10 @@ brt
aUY
buS
aQL
-fZE
-eFa
-fEF
-hvz
+owO
+qor
+cDd
+vgN
bdl
bEm
bZr
@@ -125759,10 +125749,10 @@ uys
uys
uys
uys
-bfd
-oYi
-mkx
-oSM
+sbV
+xPU
+fed
+npi
bJC
cdX
bMy
@@ -125780,9 +125770,9 @@ clL
bVo
clZ
bSJ
-hTU
-lNk
-tcO
+cBR
+uIF
+nhJ
aaa
aaa
aaa
@@ -125828,22 +125818,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
@@ -125859,22 +125849,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
@@ -125919,9 +125909,9 @@ aaa
aaa
aaa
aaa
-emA
-rIV
-dYc
+kHq
+kin
+omi
aLT
aLT
aLT
@@ -125939,10 +125929,10 @@ aQL
aQL
aQL
aQL
-edn
-qRd
-gtH
-edn
+jpy
+hUh
+urv
+jpy
bdl
bpT
bNN
@@ -125962,10 +125952,10 @@ dyx
eYr
bUo
uys
-kKB
-rsL
-jts
-kKB
+qob
+rWV
+lFZ
+qob
bJC
bJC
bJC
@@ -125983,9 +125973,9 @@ bSJ
bSJ
bSJ
bSJ
-xsv
-gEh
-tcO
+sFO
+gbz
+nhJ
aaa
aaa
aaa
@@ -126031,22 +126021,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
@@ -126062,22 +126052,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
@@ -126122,9 +126112,9 @@ aaa
aaa
aaa
aaa
-emA
-jEM
-kDd
+kHq
+aYf
+dJF
aLT
bdJ
bds
@@ -126142,20 +126132,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
@@ -126165,10 +126155,10 @@ dyx
hGN
pVx
uys
-wKm
-ekM
-aVM
-wVm
+umb
+jPA
+uTc
+hkI
bJC
cfp
cgu
@@ -126186,9 +126176,9 @@ bSJ
clM
clS
bSJ
-cZp
-gEh
-tcO
+oeY
+gbz
+nhJ
aaa
aaa
aaa
@@ -126228,28 +126218,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
@@ -126265,28 +126255,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
@@ -126325,9 +126315,9 @@ aaa
aaa
aaa
aaa
-emA
-jEM
-ikT
+kHq
+aYf
+hsf
aLT
beT
bdr
@@ -126345,20 +126335,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
@@ -126368,10 +126358,10 @@ uys
uys
uys
uys
-gyw
-bFX
-gyw
-hza
+kIR
+pVF
+kIR
+bQr
bJC
bMA
cfo
@@ -126389,9 +126379,9 @@ clG
clg
bVq
bSJ
-ien
-dFL
-tcO
+fNY
+fcx
+nhJ
aaa
aaa
aaa
@@ -126431,28 +126421,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
@@ -126468,28 +126458,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
@@ -126528,9 +126518,9 @@ aaa
aaa
aaa
aaa
-emA
-sEg
-ikT
+kHq
+pMI
+hsf
aLT
aLT
aLT
@@ -126548,20 +126538,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
@@ -126571,10 +126561,10 @@ sgc
xCa
bUy
bdl
-eTx
-ekM
-cJs
-pOW
+pgq
+jPA
+wCN
+rPl
bJC
bJC
bJC
@@ -126592,9 +126582,9 @@ bSJ
bSJ
bSJ
bSJ
-cZp
-xhO
-tcO
+oeY
+aCr
+nhJ
aaa
aaa
aaa
@@ -126634,28 +126624,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
@@ -126671,28 +126661,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
@@ -126731,9 +126721,9 @@ aaa
aaa
aaa
aaa
-emA
-jEM
-ikT
+kHq
+aYf
+hsf
aLT
beT
bdr
@@ -126751,10 +126741,10 @@ mUx
bpC
dnE
aQL
-bqc
-tcS
-mww
-sZe
+ivi
+fEb
+gZO
+hQo
bdl
fgm
bdj
@@ -126774,10 +126764,10 @@ fYZ
vYC
noj
hpS
-gyE
-ekM
-cJs
-pOW
+sUk
+jPA
+wCN
+rPl
bJC
bMA
cfo
@@ -126795,9 +126785,9 @@ clH
oFV
bVq
bSJ
-vUJ
-hCq
-tcO
+vEv
+lkg
+nhJ
aaa
aaa
aaa
@@ -126837,28 +126827,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
@@ -126874,9 +126864,9 @@ amx
amx
aOC
alO
-mQF
-rnO
-mQF
+sGP
+mju
+sGP
loP
loP
loP
@@ -126885,17 +126875,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
@@ -126934,9 +126924,9 @@ aaa
aaa
aaa
aaa
-emA
-ikT
-jEM
+kHq
+hsf
+aYf
aLT
beU
bdv
@@ -126954,13 +126944,13 @@ aQL
bsW
xvX
aQL
-bqc
-noI
-dJG
-sZe
+ivi
+jFn
+xkM
+hQo
bdl
ntd
-hgO
+iVj
eqb
mLR
hdE
@@ -126977,10 +126967,10 @@ scH
nzO
kxL
hpS
-gyE
-nzt
-jhs
-pOW
+sUk
+mgN
+lLe
+rPl
bJC
cfq
cgv
@@ -126998,9 +126988,9 @@ bSJ
clN
clT
bSJ
-xsv
-gEh
-tcO
+sFO
+gbz
+nhJ
aaa
aaa
aaa
@@ -127040,28 +127030,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
@@ -127077,9 +127067,9 @@ atq
amx
aoT
inw
-ivV
-fQU
-hPr
+dRm
+iSu
+jhJ
loP
iwB
tOC
@@ -127088,17 +127078,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
@@ -127137,9 +127127,9 @@ aaa
aaa
aaa
aaa
-emA
-qGC
-jEM
+kHq
+bhe
+aYf
aLT
aLT
aLT
@@ -127157,10 +127147,10 @@ aQL
aQL
aQL
aQL
-bqc
-ubQ
-fpM
-bEk
+ivi
+llQ
+tMu
+iPL
bdl
tFS
bdj
@@ -127180,10 +127170,10 @@ jaR
mJa
wWP
rsK
-cBC
-feo
-ekM
-pOW
+wOb
+iZq
+jPA
+rPl
bJC
bJC
bJC
@@ -127201,9 +127191,9 @@ bSJ
bSJ
bSJ
bSJ
-goM
-tfQ
-tcO
+kTt
+toh
+nhJ
aaa
aaa
aaa
@@ -127243,28 +127233,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
@@ -127280,9 +127270,9 @@ atq
atq
wwJ
inw
-pEd
-tbD
-xhi
+qRq
+kTn
+usl
loP
joG
sDu
@@ -127291,17 +127281,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
@@ -127336,13 +127326,13 @@ aaa
aaa
aaa
aaa
-emA
-emA
-emA
-emA
-emA
-ikT
-ikT
+kHq
+kHq
+kHq
+kHq
+kHq
+hsf
+hsf
aLT
vZb
tnY
@@ -127360,10 +127350,10 @@ aUZ
uqA
bES
kcl
-bqc
-ubQ
-uPX
-rHr
+ivi
+llQ
+lLs
+rwk
bdl
wIr
aQy
@@ -127383,10 +127373,10 @@ nPT
bdl
bdl
bdl
-jLg
-uEO
-ekM
-pOW
+iCf
+gMC
+jPA
+rPl
hNw
wos
bMC
@@ -127404,13 +127394,13 @@ hcI
hcI
vPK
bSJ
-cZp
-gEh
-tcO
-tcO
-tcO
-tcO
-tcO
+oeY
+gbz
+nhJ
+nhJ
+nhJ
+nhJ
+nhJ
aaa
aaa
aaa
@@ -127446,28 +127436,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
@@ -127483,9 +127473,9 @@ amx
amx
aBs
inw
-pEd
-tbD
-xhi
+qRq
+kTn
+usl
loP
kxo
wSn
@@ -127494,17 +127484,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
@@ -127539,13 +127529,13 @@ aaa
aaa
aaa
aaa
-emA
-hyb
-kjY
-kcG
-tIF
-jEM
-ikT
+kHq
+enq
+iJU
+gQz
+qXm
+aYf
+hsf
aWT
aMH
beV
@@ -127563,9 +127553,9 @@ aSE
aVf
bES
kcl
-bqc
-sUk
-slo
+ivi
+nIL
+ruC
bdl
bdl
bdl
@@ -127575,21 +127565,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
@@ -127607,13 +127597,13 @@ aMI
wGE
erG
ewO
-sEu
-xhO
-ffx
-jhK
-srl
-lWY
-tcO
+bYd
+aCr
+uFE
+eMt
+eQa
+vRW
+nhJ
aaa
aaa
aaa
@@ -127649,28 +127639,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
@@ -127686,9 +127676,9 @@ atq
atq
aBs
alO
-pEd
-gBg
-fiH
+qRq
+psT
+xJV
fTF
xBY
xBY
@@ -127697,17 +127687,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
@@ -127742,13 +127732,13 @@ aaa
aaa
aaa
aaa
-emA
-jkN
-ikT
-ikT
-ikT
-ikT
-ikT
+kHq
+pkv
+hsf
+hsf
+hsf
+hsf
+hsf
aLT
aZf
duV
@@ -127766,33 +127756,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
@@ -127810,13 +127800,13 @@ jGR
jGR
oqu
bSJ
-gEh
-gEh
-gEh
-gEh
-gEh
-xhO
-tcO
+gbz
+gbz
+gbz
+gbz
+gbz
+aCr
+nhJ
aaa
aaa
aaa
@@ -127852,28 +127842,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
@@ -127889,9 +127879,9 @@ atq
atq
aBs
alO
-pvE
-tbD
-xhi
+qsj
+kTn
+usl
gdS
wSn
kXN
@@ -127900,17 +127890,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
@@ -127945,9 +127935,9 @@ aaa
aaa
aaa
aaa
-emA
-fGi
-ikT
+kHq
+kSA
+hsf
aLT
aLT
aLT
@@ -127969,16 +127959,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
@@ -127986,16 +127976,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
@@ -128017,9 +128007,9 @@ bSJ
bSJ
bSJ
bSJ
-gEh
-dFL
-tcO
+gbz
+fcx
+nhJ
aaa
aaa
aaa
@@ -128055,28 +128045,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
@@ -128092,9 +128082,9 @@ auB
atc
aOF
alO
-pEd
-tbD
-xhi
+qRq
+kTn
+usl
gdS
lBg
dXd
@@ -128103,17 +128093,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
@@ -128148,9 +128138,9 @@ aaa
aaa
aaa
aaa
-emA
-jEM
-ikT
+kHq
+aYf
+hsf
aLT
bBg
vPv
@@ -128172,9 +128162,9 @@ brA
aVf
lQz
aQL
-bqc
-qIf
-bqc
+ivi
+bWD
+ivi
bbs
cbh
xYP
@@ -128196,9 +128186,9 @@ tez
gsm
bCM
bbr
-uPE
-ekM
-pOW
+wOC
+jPA
+rPl
bJC
jht
jZv
@@ -128220,9 +128210,9 @@ qNd
hzu
hcI
bSJ
-xhO
-xhO
-tcO
+aCr
+aCr
+nhJ
aaa
aaa
aaa
@@ -128258,28 +128248,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
@@ -128295,9 +128285,9 @@ aIU
aMq
aOG
alO
-pEd
-gBg
-xhi
+qRq
+psT
+usl
loP
loP
loP
@@ -128307,16 +128297,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
@@ -128351,9 +128341,9 @@ aaa
aaa
aaa
aaa
-emA
-jEM
-jEM
+kHq
+aYf
+aYf
aLT
nuN
nuN
@@ -128375,9 +128365,9 @@ bOG
aVf
iaq
aQL
-bqc
-qIf
-bqc
+ivi
+bWD
+ivi
bbs
bKD
vTS
@@ -128399,9 +128389,9 @@ tez
ccQ
bCN
bbr
-uPE
-ekM
-pOW
+wOC
+jPA
+rPl
bJC
cjC
jZv
@@ -128423,9 +128413,9 @@ rYp
oEo
oEo
bSJ
-xhO
-lMO
-tcO
+aCr
+aCB
+nhJ
aaa
aaa
aaa
@@ -128461,28 +128451,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
@@ -128498,9 +128488,9 @@ xBe
xBe
xBe
xBe
-pEd
-gBg
-xhi
+qRq
+psT
+usl
jWh
eFK
wGd
@@ -128510,16 +128500,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
@@ -128554,9 +128544,9 @@ aaa
aaa
aaa
aaa
-emA
-oPF
-jEM
+kHq
+slG
+aYf
aLT
vug
vug
@@ -128578,9 +128568,9 @@ bRg
aVf
aQL
aQL
-ylN
-qIf
-bqc
+ycS
+bWD
+ivi
bbs
ydM
xYP
@@ -128602,9 +128592,9 @@ tez
ccQ
cdn
bbr
-uPE
-ekM
-pOW
+wOC
+jPA
+rPl
bJC
bJC
kGF
@@ -128626,9 +128616,9 @@ yle
wWX
wWX
bSJ
-xhO
-xHa
-tcO
+aCr
+dvi
+nhJ
aaa
aaa
aaa
@@ -128664,28 +128654,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
@@ -128701,9 +128691,9 @@ aIV
qqr
arH
xBe
-pEd
-gBg
-xhi
+qRq
+psT
+usl
vXd
duF
hSk
@@ -128713,16 +128703,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
@@ -128757,9 +128747,9 @@ aaa
aaa
aaa
aaa
-emA
-rIV
-nvI
+kHq
+kin
+iZh
aLT
iPS
vAE
@@ -128781,9 +128771,9 @@ jOi
aVf
bES
kcl
-bqc
-qIf
-bqc
+ivi
+bWD
+ivi
bbs
dvs
xYP
@@ -128805,9 +128795,9 @@ tez
ccQ
bCM
bbr
-uPE
-ekM
-pOW
+wOC
+jPA
+rPl
hNw
sZq
lef
@@ -128829,9 +128819,9 @@ vSW
scy
kPJ
bSJ
-xhO
-eeR
-tcO
+aCr
+wkJ
+nhJ
aaa
aaa
aaa
@@ -128867,28 +128857,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
@@ -128904,9 +128894,9 @@ azo
aJg
abR
xBe
-pEd
-gBg
-jhm
+qRq
+psT
+cGk
jWh
oih
khE
@@ -128916,16 +128906,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
@@ -128960,9 +128950,9 @@ aaa
aaa
aaa
aaa
-emA
-sEg
-kDd
+kHq
+pMI
+dJF
aLT
aLT
aLT
@@ -128984,9 +128974,9 @@ vfx
aVf
bES
kcl
-lhs
-uvh
-lhs
+uLs
+uos
+uLs
kFY
jmK
bDL
@@ -129008,9 +128998,9 @@ tez
ccQ
bCN
jhb
-kAj
-bFX
-hza
+iFJ
+pVF
+bQr
hNw
sZq
ltI
@@ -129032,9 +129022,9 @@ bSJ
bSJ
bSJ
bSJ
-qid
-lNk
-tcO
+twi
+uIF
+nhJ
aaa
aaa
aaa
@@ -129070,28 +129060,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
@@ -129107,9 +129097,9 @@ atv
auV
amE
xBe
-pEd
-gBg
-xhi
+qRq
+psT
+usl
jWh
jWh
uUz
@@ -129119,16 +129109,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
@@ -129163,9 +129153,9 @@ aaa
aaa
aaa
aaa
-emA
-eTD
-ikT
+kHq
+aEE
+hsf
aLT
bBg
vPv
@@ -129187,9 +129177,9 @@ bRV
bSe
bES
kcl
-bqc
-qIf
-bqc
+ivi
+bWD
+ivi
bBd
aPr
bfl
@@ -129211,9 +129201,9 @@ bSb
bEa
bFp
bBd
-uPE
-ekM
-pOW
+wOC
+jPA
+rPl
hNw
sZq
lwJ
@@ -129235,9 +129225,9 @@ mAV
hzu
hcI
bSJ
-rqz
-xhO
-tcO
+dpM
+aCr
+nhJ
aaa
aaa
aaa
@@ -129273,17 +129263,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
@@ -129292,9 +129282,9 @@ tfb
tfb
tfb
ptK
-pEd
-tbD
-xhi
+qRq
+kTn
+usl
wDM
aOM
aoW
@@ -129310,9 +129300,9 @@ atv
auV
amE
xBe
-pEd
-tbD
-xhi
+qRq
+kTn
+usl
jWh
xXa
xXa
@@ -129322,16 +129312,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
@@ -129366,9 +129356,9 @@ aaa
aaa
aaa
aaa
-emA
-efP
-ikT
+kHq
+gER
+hsf
aLT
cjc
cjc
@@ -129390,9 +129380,9 @@ csZ
odB
aQL
aQL
-bqc
-sUk
-ade
+ivi
+nIL
+rNY
bBe
bFq
bfm
@@ -129414,9 +129404,9 @@ bCD
bEb
bFq
bBe
-hWD
-iyC
-pOW
+rWy
+nQb
+rPl
bJC
bJC
rbH
@@ -129438,9 +129428,9 @@ yfm
fXN
fXN
bSJ
-gEh
-xhO
-tcO
+gbz
+aCr
+nhJ
aaa
aaa
aaa
@@ -129476,17 +129466,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
@@ -129495,9 +129485,9 @@ jhx
jhx
dnH
gpc
-fiH
-tbD
-xhi
+xJV
+kTn
+usl
wDM
uto
aoX
@@ -129513,9 +129503,9 @@ nNY
qKi
abR
xBe
-pvE
-gxR
-pym
+qsj
+cqB
+aPc
dEt
soP
pDr
@@ -129525,16 +129515,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
@@ -129569,9 +129559,9 @@ aaa
aaa
aaa
aaa
-emA
-uzv
-ikT
+kHq
+kAN
+hsf
aLT
cjc
cjc
@@ -129593,9 +129583,9 @@ vil
bpC
qZX
aQL
-pjP
-qIf
-lfz
+cbO
+bWD
+tBp
bbs
cdp
cdp
@@ -129617,9 +129607,9 @@ fJO
fJO
fJO
bbs
-wMI
-ekM
-oHt
+xJY
+jPA
+iVq
bJC
lbf
cft
@@ -129641,9 +129631,9 @@ yfm
fXN
fXN
bSJ
-xhO
-dFL
-tcO
+aCr
+fcx
+nhJ
aaa
aaa
aaa
@@ -129679,13 +129669,13 @@ aag
aag
aag
aag
-fTl
-wTn
-mOE
-sWp
-nUm
-moL
-taw
+sTT
+lOa
+oPv
+dFW
+gog
+bBO
+mBf
mDJ
owg
xUA
@@ -129698,9 +129688,9 @@ nwU
owg
owg
ptK
-nhT
-gqf
-xhi
+raD
+qTd
+usl
wDM
aOQ
fxI
@@ -129716,9 +129706,9 @@ azp
qJf
anV
xBe
-pEd
-tbD
-xhi
+qRq
+kTn
+usl
jWh
iqH
khE
@@ -129728,16 +129718,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
@@ -129772,9 +129762,9 @@ aaa
aaa
aaa
aaa
-emA
-hfO
-ikT
+kHq
+aDY
+hsf
aLT
iPS
vAE
@@ -129796,9 +129786,9 @@ vil
bpC
qDq
kbc
-bqc
-ubQ
-bqc
+ivi
+llQ
+ivi
bbs
bdw
bfo
@@ -129820,9 +129810,9 @@ lJu
bEd
bFs
bbs
-uPE
-ekM
-pOW
+wOC
+jPA
+rPl
fzq
oXb
cft
@@ -129844,9 +129834,9 @@ gEo
scy
kPJ
bSJ
-gEh
-pFr
-tcO
+gbz
+tRd
+nhJ
aaa
aaa
aaa
@@ -129882,13 +129872,13 @@ aag
aag
aag
aag
-fTl
-oxy
-oxy
-tIN
-oxy
-oxy
-kiR
+sTT
+nHf
+nHf
+fcK
+nHf
+nHf
+vMv
owg
owg
uKV
@@ -129901,9 +129891,9 @@ eNi
eNi
eNi
eNi
-pEd
-gBg
-jhm
+qRq
+psT
+cGk
wDM
aOH
aJf
@@ -129919,9 +129909,9 @@ xBe
xBe
xBe
xBe
-pEd
-tbD
-rXV
+qRq
+kTn
+ufM
jWh
jWh
jlQ
@@ -129931,16 +129921,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
@@ -129975,9 +129965,9 @@ aaa
aaa
aaa
aaa
-emA
-jkN
-ikT
+kHq
+pkv
+hsf
aLT
aLT
aLT
@@ -129999,9 +129989,9 @@ ngA
koC
koC
xGE
-jno
-fqw
-bqc
+lYg
+tBd
+ivi
lgy
ccb
xYP
@@ -130023,9 +130013,9 @@ rXk
xYP
jew
laU
-uPE
-dEL
-rzy
+wOC
+hPk
+lpM
uCM
lNw
eFj
@@ -130047,9 +130037,9 @@ bSJ
bSJ
bSJ
bSJ
-gEh
-kMR
-tcO
+gbz
+owD
+nhJ
aaa
aaa
aaa
@@ -130085,13 +130075,13 @@ aah
aag
aag
aag
-fTl
-pWw
-hbE
-cbc
-qIa
-qIa
-taw
+sTT
+jaF
+emX
+iGH
+mtj
+mtj
+mBf
ptK
afX
ptK
@@ -130104,9 +130094,9 @@ olO
wiG
nWN
eNi
-pEd
-tbD
-xhi
+qRq
+kTn
+usl
wDM
wDM
wDM
@@ -130122,9 +130112,9 @@ aJh
arq
ufx
alR
-pEd
-tbD
-jhm
+qRq
+kTn
+cGk
jWh
hSk
hSk
@@ -130134,16 +130124,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
@@ -130178,14 +130168,14 @@ aaa
aaa
aaa
aaa
-emA
-hyb
-jEM
-jEM
-jEM
-jEM
-hyb
-jEM
+kHq
+enq
+aYf
+aYf
+aYf
+aYf
+enq
+aYf
aLT
cjc
cjc
@@ -130202,9 +130192,9 @@ jOx
bpC
qDq
aQL
-nYR
-bww
-lhs
+xRK
+klk
+uLs
lgy
bsG
xYP
@@ -130226,9 +130216,9 @@ lJu
xYP
hLI
laU
-gyw
-uNQ
-gyw
+kIR
+gRV
+kIR
bJC
oXb
cfo
@@ -130245,14 +130235,14 @@ kPJ
fXN
fXN
bSJ
-enY
-srl
-gEh
-xhO
-xhO
-xhO
-jay
-tcO
+hMV
+eQa
+gbz
+aCr
+aCr
+aCr
+sce
+nhJ
aaa
aaa
aaa
@@ -130288,13 +130278,13 @@ aaa
aad
aag
aag
-fTl
-prX
-oYs
-odG
-biC
-qlu
-taw
+sTT
+hEB
+ojg
+mbp
+bib
+bZu
+mBf
bKm
hsr
mDJ
@@ -130307,9 +130297,9 @@ ueG
rPt
jyE
eNi
-pEd
-tbD
-xhi
+qRq
+kTn
+usl
hwC
rcS
amx
@@ -130325,9 +130315,9 @@ aJi
azs
atq
alR
-pEd
-tbD
-xhi
+qRq
+kTn
+usl
jlQ
tst
uUe
@@ -130337,16 +130327,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
@@ -130381,14 +130371,14 @@ aaa
aaa
aaa
aaa
-emA
-emA
-emA
-emA
-emA
-jEM
-ikT
-jEM
+kHq
+kHq
+kHq
+kHq
+kHq
+aYf
+hsf
+aYf
aLT
iPS
vAE
@@ -130405,9 +130395,9 @@ jOx
bpC
ksp
aQL
-bqc
-wqO
-wxD
+ivi
+lWA
+rez
cau
bCG
cgE
@@ -130427,11 +130417,11 @@ xYP
jmK
hcw
cgE
-yht
-blq
-ddL
-eZR
-uPE
+qGS
+dPf
+jyX
+fza
+wOC
bJC
kIP
cfo
@@ -130448,14 +130438,14 @@ oer
vSW
scy
bSJ
-mCE
-qid
-hCq
-tcO
-tcO
-tcO
-tcO
-tcO
+ljD
+twi
+lkg
+nhJ
+nhJ
+nhJ
+nhJ
+nhJ
aaa
aaa
aaa
@@ -130491,13 +130481,13 @@ aaa
aad
aag
aag
-fTl
-fTl
-fTl
-fTl
-fTl
-fTl
-fTl
+sTT
+sTT
+sTT
+sTT
+sTT
+sTT
+sTT
qJx
hsr
mDJ
@@ -130510,9 +130500,9 @@ iKD
rPt
rPt
eNi
-pEd
-tbD
-xhi
+qRq
+kTn
+usl
alR
amA
atq
@@ -130528,9 +130518,9 @@ aJj
aMD
atq
alR
-pEd
-tbD
-xhi
+qRq
+kTn
+usl
jlQ
tZZ
gLz
@@ -130540,16 +130530,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
@@ -130588,10 +130578,10 @@ aaa
aaa
aaa
aaa
-emA
-oPF
-ikT
-jEM
+kHq
+slG
+hsf
+aYf
aLT
meY
meY
@@ -130608,9 +130598,9 @@ pyl
pDt
aQL
aQL
-bqc
-ubQ
-bqc
+ivi
+llQ
+ivi
lgy
ccN
xYP
@@ -130630,11 +130620,11 @@ wLm
wLm
lJu
xYP
-wbV
+hko
laU
-uPE
-vuV
-uPE
+wOC
+iQx
+wOC
bJC
bJC
vLA
@@ -130651,10 +130641,10 @@ oer
oer
oer
oer
-uVp
-gEh
-pFr
-tcO
+tQw
+gbz
+tRd
+nhJ
aaa
aaa
aaa
@@ -130713,9 +130703,9 @@ eNi
eNi
gIh
eNi
-iIQ
-gBg
-xhi
+gUt
+psT
+usl
alR
amA
atq
@@ -130731,9 +130721,9 @@ amA
ayl
amx
alR
-pEd
-tbD
-xhi
+qRq
+kTn
+usl
jWh
jmQ
vcu
@@ -130791,18 +130781,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
@@ -130811,9 +130801,9 @@ jOx
bpC
qZX
aQL
-bqc
-ubQ
-bqc
+ivi
+llQ
+ivi
lgy
ccb
xYP
@@ -130835,9 +130825,9 @@ rXk
xYP
jew
laU
-uPE
-vuV
-uPE
+wOC
+iQx
+wOC
bJC
lbf
cfo
@@ -130846,18 +130836,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
@@ -130916,9 +130906,9 @@ aWb
dyK
vzK
wYY
-pEd
-gBg
-xhi
+qRq
+psT
+usl
alR
amA
atq
@@ -130934,9 +130924,9 @@ aJl
amx
atq
alR
-pEd
-tbD
-xhi
+qRq
+kTn
+usl
jlQ
snE
sGL
@@ -130994,18 +130984,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
@@ -131014,9 +131004,9 @@ jOx
bpC
qDq
bTb
-bqc
-ubQ
-bqc
+ivi
+llQ
+ivi
bbs
ccd
ccN
@@ -131038,9 +131028,9 @@ lJu
huK
jeQ
bbs
-uPE
-vuV
-uPE
+wOC
+iQx
+wOC
xSw
oXb
cfo
@@ -131049,18 +131039,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
@@ -131119,9 +131109,9 @@ tii
eJX
sAC
wYY
-pEd
-gBg
-xhi
+qRq
+psT
+usl
alR
amA
amx
@@ -131137,9 +131127,9 @@ aJk
amx
atq
alR
-pEd
-tbD
-xhi
+qRq
+kTn
+usl
jlQ
tZZ
cBj
@@ -131197,18 +131187,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
@@ -131217,9 +131207,9 @@ osA
cHl
cHl
bTb
-lhs
-bww
-lhs
+uLs
+klk
+uLs
bbs
cdp
cdp
@@ -131241,9 +131231,9 @@ fJO
fJO
fJO
bbs
-gyw
-uNQ
-gyw
+kIR
+gRV
+kIR
xSw
ejo
ejo
@@ -131252,18 +131242,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
@@ -131322,9 +131312,9 @@ sjj
fzP
sAC
wYY
-pEd
-tbD
-xhi
+qRq
+kTn
+usl
alR
amA
atq
@@ -131340,9 +131330,9 @@ xEO
xEO
lnP
alR
-pEd
-tbD
-jhm
+qRq
+kTn
+cGk
jWh
qLs
qLs
@@ -131409,9 +131399,9 @@ aaa
aaa
aaa
aaa
-emA
-qGC
-hyb
+kHq
+bhe
+enq
aQL
ksp
ksp
@@ -131420,33 +131410,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
@@ -131455,10 +131445,10 @@ kIP
qer
kIP
bJC
-xhO
-wYd
-pFr
-tcO
+aCr
+wFG
+tRd
+nhJ
aaa
aaa
aaa
@@ -131525,9 +131515,9 @@ fcM
uzE
qsL
nim
-prV
-gqf
-xhi
+sFo
+qTd
+usl
alR
amA
atq
@@ -131543,9 +131533,9 @@ iWR
iWR
kbx
alR
-pEd
-tbD
-xhi
+qRq
+kTn
+usl
jWh
jWh
jlQ
@@ -131612,9 +131602,9 @@ aaa
aaa
aaa
aaa
-emA
-ikT
-jEM
+kHq
+hsf
+aYf
aQL
aQL
aQL
@@ -131623,33 +131613,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
@@ -131658,10 +131648,10 @@ bJC
bJC
bJC
bJC
-gEh
-gEh
-gEh
-tcO
+gbz
+gbz
+gbz
+nhJ
aaa
aaa
aaa
@@ -131728,9 +131718,9 @@ xlC
gyO
kTN
eNi
-pvE
-tbD
-xhi
+qsj
+kTn
+usl
alR
amA
atq
@@ -131746,14 +131736,14 @@ xEO
xEO
aOV
alR
-pEd
-tbD
-xhi
+qRq
+kTn
+usl
jWh
-kUw
-dod
-eNv
-rxV
+pnV
+nqp
+vyI
+fVM
thV
fCL
uIv
@@ -131815,56 +131805,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
@@ -131931,9 +131921,9 @@ oNb
iFC
qAA
eNi
-pEd
-gBg
-xhi
+qRq
+psT
+usl
alR
arK
atc
@@ -131949,15 +131939,15 @@ aJq
aMG
aOW
alR
-pEd
-tbD
-xhi
+qRq
+kTn
+usl
jWh
-tZP
-hSk
-hSk
+qkz
+nqp
+vyI
+vyI
vyI
-thV
fCL
uIv
hSk
@@ -132018,27 +132008,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
@@ -132046,28 +132036,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
@@ -132134,9 +132124,9 @@ eNi
eNi
eNi
eNi
-mQF
-rnO
-mQF
+sGP
+mju
+sGP
alO
alO
alO
@@ -132152,14 +132142,14 @@ alO
alO
alO
alO
-mQF
-rnO
-mQF
+sGP
+mju
+sGP
jWh
-nDL
-vyI
+pnV
+nqp
vyI
-wTJ
+qJb
thV
uWV
uIv
@@ -132221,22 +132211,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
@@ -132254,23 +132244,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
@@ -132337,9 +132327,9 @@ dWX
owg
owg
ptK
-bZq
-hfc
-jgS
+oaE
+whg
+xLC
aqq
aPa
eky
@@ -132355,9 +132345,9 @@ eky
eky
aPa
aqq
-bZq
-hfc
-lBf
+oaE
+whg
+hKS
jWh
xXa
xXa
@@ -132424,22 +132414,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
@@ -132457,23 +132447,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
@@ -132540,9 +132530,9 @@ keR
jhx
keR
dwI
-pym
-jae
-tGW
+aPc
+efE
+hOb
hal
uYg
nau
@@ -132558,9 +132548,9 @@ uYg
nau
uYg
hal
-rrG
-jae
-pym
+eQP
+efE
+aPc
mPh
soP
tWi
@@ -132627,22 +132617,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
@@ -132660,23 +132650,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
@@ -132743,9 +132733,9 @@ kPG
kPG
cVw
ptK
-iOP
-xjI
-fzm
+xdr
+sXG
+enK
aqq
eky
aNl
@@ -132761,9 +132751,9 @@ eky
aNl
eky
aqq
-iOP
-xSl
-fzm
+xdr
+fAQ
+enK
jWh
tim
uWV
@@ -132844,8 +132834,8 @@ sqg
rwB
lKM
sqg
-nSq
-oBr
+vJJ
+qwE
fcS
gdJ
cjt
@@ -132863,8 +132853,8 @@ pRZ
fcS
nAY
jOE
-ljv
-mPc
+lij
+lGo
sqg
qEL
vmE
@@ -132946,9 +132936,9 @@ ucp
cIW
ptK
ptK
-ybk
-sDe
-ybk
+oaI
+pFh
+oaI
aHe
jlT
exi
@@ -132964,9 +132954,9 @@ eky
ins
wRP
aHe
-eZm
-eZm
-eZm
+wUB
+wUB
+wUB
jWh
jWh
sWC
@@ -133047,8 +133037,8 @@ sqg
eKy
wQA
sqg
-jEM
-oBr
+aYf
+qwE
uYn
jaM
oXM
@@ -133066,8 +133056,8 @@ mkP
muQ
ojh
nxx
-ljv
-xhO
+lij
+aCr
sqg
gEC
skC
@@ -133149,9 +133139,9 @@ gPc
trB
exy
ptK
-fLl
-fLl
-fLl
+diy
+diy
+diy
eky
eky
aNl
@@ -133167,9 +133157,9 @@ eky
aNl
eky
rqj
-eZm
-jYm
-aZI
+wUB
+pLB
+tpk
jWh
duz
hXG
@@ -133352,9 +133342,9 @@ eet
fcP
pDh
ptK
-aqZ
-aqZ
-ptQ
+uQp
+uQp
+rlO
aMT
aMT
dPm
@@ -133370,9 +133360,9 @@ okg
dPm
aMT
aMT
-hbp
-mwP
-mwP
+qtZ
+aBO
+aBO
jWh
axR
mIP
@@ -133555,9 +133545,9 @@ wxj
lht
rYv
ptK
-haO
-pKB
-fLl
+frq
+iDx
+diy
svf
arV
wZX
@@ -133573,9 +133563,9 @@ eky
wZX
arV
vUh
-eZm
-xUy
-mwP
+wUB
+dnW
+aBO
jWh
vpv
pgw
@@ -133758,9 +133748,9 @@ ptK
afX
ptK
ptK
-haO
-fLl
-fLl
+frq
+diy
+diy
lDn
arV
wZX
@@ -133776,9 +133766,9 @@ eky
wZX
arV
wkA
-eZm
-eZm
-mwP
+wUB
+wUB
+aBO
jWh
jWh
kLc
@@ -133953,16 +133943,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
@@ -133980,16 +133970,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
@@ -134156,16 +134146,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
@@ -134183,16 +134173,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
@@ -134265,8 +134255,8 @@ aWZ
qAB
gEC
sqg
-aIh
-eTb
+jon
+iQK
kkW
iwf
uFg
@@ -134284,8 +134274,8 @@ vXo
gWu
xMl
lft
-eTb
-aIh
+iQK
+jon
sqg
siN
cjt
@@ -134359,17 +134349,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
@@ -134385,17 +134375,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
@@ -134468,14 +134458,14 @@ ggQ
pYS
ivS
sqg
-ppM
-eTb
+xjU
+iQK
hbs
vZU
elx
jnI
oJk
-xef
+ggx
dPQ
ams
eni
@@ -134487,8 +134477,8 @@ nYn
elx
mDL
fSF
-eTb
-ppM
+iQK
+xjU
sqg
lvh
iks
@@ -134562,17 +134552,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
@@ -134588,17 +134578,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
@@ -134671,8 +134661,8 @@ aep
mkL
gEC
sqg
-ppM
-eTb
+xjU
+iQK
hsy
hsy
baJ
@@ -134690,8 +134680,8 @@ foC
kph
hsy
hsy
-eTb
-eUe
+iQK
+nJm
sqg
wWl
trh
@@ -134768,14 +134758,14 @@ tgK
tfb
wuT
lMx
-gJF
-gJF
-gJF
-gJF
-gJF
-gJF
-gJF
-gJF
+bma
+bma
+bma
+bma
+bma
+bma
+bma
+bma
aPw
avu
mhG
@@ -134791,14 +134781,14 @@ dxK
dPC
aMU
aPw
-wxy
-wxy
-wxy
-wxy
-wxy
-wxy
-wxy
-wxy
+nzC
+nzC
+nzC
+nzC
+nzC
+nzC
+nzC
+nzC
jFY
qKY
jHL
@@ -134874,27 +134864,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
@@ -135077,8 +135067,8 @@ vgw
vgw
vgw
vgw
-aIh
-aIh
+jon
+jon
hsy
wed
uXk
@@ -135096,8 +135086,8 @@ tos
uXk
wed
hsy
-qBS
-lib
+hts
+afA
vgw
vgw
vgw
@@ -135279,11 +135269,11 @@ aah
aag
aag
aag
-nic
-tmQ
-ppM
+eUf
+ioT
+xjU
hsy
-txS
+ujr
bVN
oGJ
xpZ
@@ -135297,11 +135287,11 @@ coH
oTO
uqh
iAE
-sct
+vji
hsy
-iWa
-fZR
-nic
+gMX
+uSI
+eUf
aag
aag
aag
@@ -135482,29 +135472,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
@@ -135685,29 +135675,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
@@ -135888,29 +135878,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
@@ -136091,29 +136081,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
@@ -136294,29 +136284,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
@@ -136497,29 +136487,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
@@ -136701,9 +136691,9 @@ aad
aag
aag
aag
-nic
-qBS
-lib
+eUf
+hts
+afA
hsy
hsy
suJ
@@ -136719,9 +136709,9 @@ hsy
wdv
hsy
hsy
-yjE
-ppM
-nic
+sUq
+xjU
+eUf
aag
aag
aag
@@ -136904,9 +136894,9 @@ aad
aag
aag
aag
-nic
-aIh
-vsi
+eUf
+jon
+mtQ
hsy
uiC
sIr
@@ -136922,9 +136912,9 @@ rlc
hfb
hUk
hsy
-ppM
-fZR
-nic
+xjU
+uSI
+eUf
aag
aag
aag
@@ -137107,9 +137097,9 @@ aad
aag
aag
aag
-nic
-ppM
-ppM
+eUf
+xjU
+xjU
hsy
thc
sIr
@@ -137125,9 +137115,9 @@ pAm
sIr
fZl
hsy
-mxV
-aIh
-nic
+tyY
+jon
+eUf
aag
aag
aag
@@ -137310,9 +137300,9 @@ aad
aag
aag
aag
-nic
-aIh
-aIh
+eUf
+jon
+jon
hsy
tIe
uAK
@@ -137328,9 +137318,9 @@ bVv
nJa
jPd
hsy
-ppM
-eeC
-nic
+xjU
+flY
+eUf
aag
aag
aag
@@ -137513,9 +137503,9 @@ aad
aag
aag
aag
-nic
-ppM
-ppM
+eUf
+xjU
+xjU
hsy
dPH
sov
@@ -137531,9 +137521,9 @@ pAm
fZl
oex
hsy
-aIh
-aIh
-nic
+jon
+jon
+eUf
aag
aag
aag
@@ -137716,9 +137706,9 @@ aad
aag
aag
aag
-nic
-aIh
-aIh
+eUf
+jon
+jon
hsy
rBv
sov
@@ -137734,9 +137724,9 @@ pAm
fZl
snt
hsy
-ppM
-ppM
-nic
+xjU
+xjU
+eUf
aag
aag
aag
@@ -137919,9 +137909,9 @@ aad
aag
aag
aag
-nic
-ppM
-ppM
+eUf
+xjU
+xjU
hsy
fqW
qYq
@@ -137937,9 +137927,9 @@ mQn
wQD
fqW
hsy
-aIh
-aIh
-nic
+jon
+jon
+eUf
aag
aag
aag
@@ -138122,9 +138112,9 @@ aad
aag
aag
aag
-nic
-aIh
-ppM
+eUf
+jon
+xjU
hsy
hsy
hsy
@@ -138140,9 +138130,9 @@ hsy
hsy
hsy
hsy
-ppM
-ppM
-nic
+xjU
+xjU
+eUf
aag
aag
aag
@@ -138325,11 +138315,11 @@ aad
aag
aag
aag
-nic
-aIh
-ppM
-csd
-dDJ
+eUf
+jon
+xjU
+liF
+aBK
hsy
haz
fQn
@@ -138341,11 +138331,11 @@ pzM
mtZ
haz
hsy
-dDJ
-rXH
-aIh
-aIh
-nic
+aBK
+feZ
+jon
+jon
+eUf
aag
aag
aag
@@ -138419,7 +138409,7 @@ aaa
cuC
cuC
jPq
-xgm
+jZS
aqK
cuC
uiR
@@ -138528,11 +138518,11 @@ aad
aag
aag
aag
-nic
-aIh
-aIh
-aIh
-aIh
+eUf
+jon
+jon
+jon
+jon
hsy
haz
pLt
@@ -138544,11 +138534,11 @@ mZL
lOX
haz
hsy
-fpi
-aIh
-aIh
-aIh
-nic
+gvt
+jon
+jon
+jon
+eUf
aag
aag
aag
@@ -138731,11 +138721,11 @@ aad
aag
aag
aag
-nic
-nic
-mem
-piJ
-piJ
+eUf
+eUf
+ydb
+hEy
+hEy
hsy
mkI
aPS
@@ -138747,11 +138737,11 @@ nop
aPS
ddf
hsy
-atS
-ppM
-fZR
-nic
-nic
+wQV
+xjU
+uSI
+eUf
+eUf
aag
aag
aag
@@ -138935,10 +138925,10 @@ aag
aag
aag
aag
-nic
-aIh
-ppM
-sER
+eUf
+jon
+xjU
+wri
hsy
hsy
hsy
@@ -138950,10 +138940,10 @@ hsy
hsy
hsy
hsy
-aIh
-aIh
-aIh
-nic
+jon
+jon
+jon
+eUf
aag
aag
aag
@@ -139138,25 +139128,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
@@ -139910,10 +139900,10 @@ sbJ
sbJ
daz
eKJ
-gBO
-gBO
+qQS
+qQS
sKY
-gBO
+qQS
bIp
fKe
dDp
@@ -140928,7 +140918,7 @@ clw
viB
dIi
qLS
-deB
+erN
wkM
jvB
jtj
@@ -141940,10 +141930,10 @@ sbJ
sbJ
daz
eKJ
-gBO
-gBO
+qQS
+qQS
aCd
-gBO
+qQS
mFN
igr
sEK
diff --git a/maps/shuttles/dropship_alamo.dmm b/maps/shuttles/dropship_alamo.dmm
index 7ea59dbb1185..dd799ca7cd6e 100644
--- a/maps/shuttles/dropship_alamo.dmm
+++ b/maps/shuttles/dropship_alamo.dmm
@@ -18,14 +18,6 @@
/obj/structure/shuttle/part/dropship1/transparent/nose_center,
/turf/template_noop,
/area/shuttle/drop1/sulaco)
-"bc" = (
-/obj/effect/attach_point/electronics/dropship1{
- dir = 1;
- attach_id = 5
- },
-/obj/structure/shuttle/part/dropship1/transparent/inner_left_weapons,
-/turf/template_noop,
-/area/shuttle/drop1/sulaco)
"be" = (
/obj/structure/shuttle/part/dropship1/transparent/upper_right_wing,
/turf/template_noop,
@@ -81,15 +73,6 @@
icon_state = "floor8"
},
/area/shuttle/drop1/sulaco)
-"ed" = (
-/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds1{
- dir = 1;
- id = "starboard_door"
- },
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
-/area/shuttle/drop1/sulaco)
"eD" = (
/obj/structure/shuttle/part/dropship1/transparent/engine_right_cap,
/turf/template_noop,
@@ -229,14 +212,6 @@
/obj/structure/shuttle/part/dropship1/transparent/left_outer_bottom_wing,
/turf/template_noop,
/area/shuttle/drop1/sulaco)
-"sm" = (
-/obj/effect/attach_point/fuel/dropship1{
- attach_id = 10
- },
-/turf/closed/shuttle/dropship1/transparent{
- icon_state = "28"
- },
-/area/shuttle/drop1/sulaco)
"sA" = (
/obj/structure/shuttle/part/dropship1/lower_left_wall,
/turf/template_noop,
@@ -319,6 +294,14 @@
icon_state = "63"
},
/area/shuttle/drop1/sulaco)
+"BM" = (
+/obj/effect/attach_point/crew_weapon/dropship1/floor{
+ attach_id = 9
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
+ },
+/area/shuttle/drop1/sulaco)
"BS" = (
/turf/closed/shuttle/dropship1{
icon_state = "48"
@@ -369,6 +352,15 @@
icon_state = "39"
},
/area/shuttle/drop1/sulaco)
+"GQ" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds1{
+ dir = 1;
+ id = "starboard_door"
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
+ },
+/area/shuttle/drop1/sulaco)
"Ho" = (
/obj/structure/machinery/computer/dropship_weapons/dropship1,
/obj/structure/transmitter/rotary{
@@ -401,6 +393,23 @@
icon_state = "35"
},
/area/shuttle/drop1/sulaco)
+"Iu" = (
+/obj/effect/attach_point/fuel/dropship1{
+ dir = 1;
+ pixel_x = -32
+ },
+/turf/closed/shuttle/dropship1/transparent{
+ icon_state = "33"
+ },
+/area/shuttle/drop1/sulaco)
+"IP" = (
+/obj/effect/attach_point/electronics/dropship1{
+ dir = 1;
+ attach_id = 6
+ },
+/obj/structure/shuttle/part/dropship1/transparent/inner_right_weapons,
+/turf/template_noop,
+/area/shuttle/drop1/sulaco)
"Jb" = (
/turf/closed/shuttle/dropship1/transparent{
icon_state = "80"
@@ -415,16 +424,10 @@
icon_state = "62"
},
/area/shuttle/drop1/sulaco)
-"Kk" = (
-/obj/effect/attach_point/crew_weapon/dropship1/floor{
- attach_id = 7
- },
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
+"Kt" = (
+/obj/structure/machinery/door/airlock/hatch/cockpit{
+ dir = 1
},
-/area/shuttle/drop1/sulaco)
-"KC" = (
-/obj/structure/machinery/door/airlock/hatch/cockpit,
/obj/structure/blocker/forcefield/multitile_vehicles,
/turf/open/shuttle/dropship{
icon_state = "rasputin15"
@@ -449,23 +452,6 @@
icon_state = "64"
},
/area/shuttle/drop1/sulaco)
-"Nv" = (
-/obj/effect/attach_point/crew_weapon/dropship1/floor{
- attach_id = 8
- },
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
-/area/shuttle/drop1/sulaco)
-"ND" = (
-/obj/effect/attach_point/fuel/dropship1{
- pixel_x = -32;
- attach_id = 11
- },
-/turf/closed/shuttle/dropship1/transparent{
- icon_state = "33"
- },
-/area/shuttle/drop1/sulaco)
"NQ" = (
/obj/structure/shuttle/part/dropship1/transparent/left_inner_bottom_wing,
/turf/template_noop,
@@ -506,9 +492,9 @@
icon_state = "rasputin15"
},
/area/shuttle/drop1/sulaco)
-"PV" = (
+"PA" = (
/obj/effect/attach_point/crew_weapon/dropship1/floor{
- attach_id = 9
+ attach_id = 7
},
/turf/open/shuttle/dropship{
icon_state = "rasputin15"
@@ -598,6 +584,14 @@
icon_state = "rasputin15"
},
/area/shuttle/drop1/sulaco)
+"UN" = (
+/obj/effect/attach_point/electronics/dropship1{
+ dir = 1;
+ attach_id = 5
+ },
+/obj/structure/shuttle/part/dropship1/transparent/inner_left_weapons,
+/turf/template_noop,
+/area/shuttle/drop1/sulaco)
"Vm" = (
/turf/closed/shuttle/dropship1/transparent{
icon_state = "78"
@@ -634,7 +628,15 @@
icon_state = "rasputin7"
},
/area/shuttle/drop1/sulaco)
-"XP" = (
+"XH" = (
+/obj/effect/attach_point/fuel/dropship1{
+ dir = 1
+ },
+/turf/closed/shuttle/dropship1/transparent{
+ icon_state = "28"
+ },
+/area/shuttle/drop1/sulaco)
+"XI" = (
/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds1{
id = "port_door";
dir = 2
@@ -643,13 +645,13 @@
icon_state = "rasputin15"
},
/area/shuttle/drop1/sulaco)
-"Ye" = (
-/obj/effect/attach_point/electronics/dropship1{
- dir = 1;
- attach_id = 6
+"YV" = (
+/obj/effect/attach_point/crew_weapon/dropship1/floor{
+ attach_id = 8
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
},
-/obj/structure/shuttle/part/dropship1/transparent/inner_right_weapons,
-/turf/template_noop,
/area/shuttle/drop1/sulaco)
"Za" = (
/turf/closed/shuttle/dropship1{
@@ -683,7 +685,7 @@ mb
mb
FA
Oq
-sm
+XH
iz
EN
mb
@@ -700,7 +702,7 @@ Et
iI
JP
il
-XP
+XI
mW
qn
sA
@@ -717,7 +719,7 @@ NQ
mb
mb
mb
-bc
+UN
oo
TK
ws
@@ -787,7 +789,7 @@ ax
EB
Py
tR
-KC
+Kt
dU
Ph
BB
@@ -796,11 +798,11 @@ BB
OK
OU
il
-Kk
+PA
il
-Nv
+YV
il
-PV
+BM
il
mb
mb
@@ -855,7 +857,7 @@ Wg
mb
mb
mb
-Ye
+IP
oo
TK
cr
@@ -884,7 +886,7 @@ iv
zV
MP
il
-ed
+GQ
nC
nE
rl
@@ -913,7 +915,7 @@ mb
mb
eD
Gw
-ND
+Iu
qy
Jm
mb
diff --git a/maps/shuttles/dropship_normandy.dmm b/maps/shuttles/dropship_normandy.dmm
index 0cf629e638e1..969e5927d3f8 100644
--- a/maps/shuttles/dropship_normandy.dmm
+++ b/maps/shuttles/dropship_normandy.dmm
@@ -15,6 +15,16 @@
icon_state = "rasputin15"
},
/area/shuttle/drop2/sulaco)
+"ba" = (
+/obj/effect/attach_point/fuel/dropship2{
+ dir = 1;
+ pixel_x = -32;
+ attach_id = 11
+ },
+/turf/closed/shuttle/dropship2/transparent{
+ icon_state = "33"
+ },
+/area/shuttle/drop2/sulaco)
"bc" = (
/obj/structure/shuttle/part/dropship2/transparent/left_outer_bottom_wing,
/turf/template_noop,
@@ -36,6 +46,14 @@
/obj/structure/shuttle/part/dropship2/transparent/right_outer_bottom_wing,
/turf/template_noop,
/area/shuttle/drop2/sulaco)
+"db" = (
+/obj/effect/attach_point/crew_weapon/dropship2/floor{
+ attach_id = 7
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin3"
+ },
+/area/shuttle/drop2/sulaco)
"eu" = (
/turf/closed/shuttle/dropship2{
icon_state = "75"
@@ -51,6 +69,14 @@
icon_state = "29"
},
/area/shuttle/drop2/sulaco)
+"ft" = (
+/obj/effect/attach_point/crew_weapon/dropship2/floor{
+ attach_id = 8
+ },
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin3"
+ },
+/area/shuttle/drop2/sulaco)
"fx" = (
/turf/closed/shuttle/dropship2{
icon_state = "69"
@@ -79,14 +105,6 @@
icon_state = "54"
},
/area/shuttle/drop2/sulaco)
-"gH" = (
-/obj/effect/attach_point/electronics/dropship2{
- dir = 1;
- attach_id = 6
- },
-/obj/structure/shuttle/part/dropship2/transparent/inner_right_weapons,
-/turf/template_noop,
-/area/shuttle/drop2/sulaco)
"gP" = (
/obj/structure/bed/chair/dropship/pilot{
dir = 1
@@ -95,12 +113,22 @@
icon_state = "rasputin15"
},
/area/shuttle/drop2/sulaco)
-"hn" = (
-/obj/effect/attach_point/crew_weapon/dropship2/floor{
- attach_id = 8
+"gV" = (
+/obj/effect/attach_point/fuel/dropship2{
+ dir = 1;
+ attach_id = 10
+ },
+/turf/closed/shuttle/dropship2/transparent{
+ icon_state = "28"
+ },
+/area/shuttle/drop2/sulaco)
+"he" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{
+ dir = 1;
+ id = "starboard_door"
},
/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
+ icon_state = "rasputin15"
},
/area/shuttle/drop2/sulaco)
"it" = (
@@ -151,6 +179,15 @@
icon_state = "26"
},
/area/shuttle/drop2/sulaco)
+"lj" = (
+/obj/structure/machinery/door/airlock/hatch/cockpit/two{
+ dir = 1
+ },
+/obj/structure/blocker/forcefield/multitile_vehicles,
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin15"
+ },
+/area/shuttle/drop2/sulaco)
"lz" = (
/obj/effect/attach_point/weapon/dropship2/right_fore,
/obj/structure/shuttle/part/dropship2/transparent/outer_right_weapons,
@@ -175,14 +212,6 @@
icon_state = "62"
},
/area/shuttle/drop2/sulaco)
-"mn" = (
-/obj/effect/attach_point/fuel/dropship2{
- attach_id = 10
- },
-/turf/closed/shuttle/dropship2/transparent{
- icon_state = "28"
- },
-/area/shuttle/drop2/sulaco)
"mz" = (
/obj/structure/machinery/camera/autoname/almayer/dropship_two{
dir = 4;
@@ -200,15 +229,6 @@
icon_state = "rasputin15"
},
/area/shuttle/drop2/sulaco)
-"mA" = (
-/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{
- id = "port_door";
- dir = 2
- },
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
-/area/shuttle/drop2/sulaco)
"nq" = (
/obj/effect/attach_point/weapon/dropship2/left_fore,
/obj/structure/shuttle/part/dropship2/transparent/outer_left_weapons,
@@ -267,18 +287,26 @@
/obj/structure/shuttle/part/dropship2/transparent/upper_left_wing,
/turf/template_noop,
/area/shuttle/drop2/sulaco)
-"vd" = (
+"ut" = (
+/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{
+ id = "port_door";
+ dir = 2
+ },
/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
+ icon_state = "rasputin15"
},
/area/shuttle/drop2/sulaco)
-"vh" = (
-/obj/structure/machinery/door/airlock/multi_tile/almayer/dropshiprear/dropshipside/ds2{
- dir = 1;
- id = "starboard_door"
+"uC" = (
+/obj/effect/attach_point/crew_weapon/dropship2/floor{
+ attach_id = 9
},
/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
+ icon_state = "rasputin3"
+ },
+/area/shuttle/drop2/sulaco)
+"vd" = (
+/turf/open/shuttle/dropship{
+ icon_state = "rasputin3"
},
/area/shuttle/drop2/sulaco)
"wX" = (
@@ -325,14 +353,6 @@
icon_state = "56"
},
/area/shuttle/drop2/sulaco)
-"Bg" = (
-/obj/effect/attach_point/crew_weapon/dropship2/floor{
- attach_id = 7
- },
-/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
- },
-/area/shuttle/drop2/sulaco)
"Bi" = (
/turf/closed/shuttle/dropship2/transparent{
icon_state = "97"
@@ -362,6 +382,14 @@
icon_state = "rasputin4"
},
/area/shuttle/drop2/sulaco)
+"Dq" = (
+/obj/effect/attach_point/electronics/dropship2{
+ dir = 1;
+ attach_id = 6
+ },
+/obj/structure/shuttle/part/dropship2/transparent/inner_right_weapons,
+/turf/template_noop,
+/area/shuttle/drop2/sulaco)
"Dy" = (
/turf/closed/shuttle/dropship2/transparent{
icon_state = "35"
@@ -477,14 +505,6 @@
/obj/structure/shuttle/part/dropship2/transparent/nose_top_left,
/turf/template_noop,
/area/shuttle/drop2/sulaco)
-"MA" = (
-/obj/effect/attach_point/crew_weapon/dropship2/floor{
- attach_id = 9
- },
-/turf/open/shuttle/dropship{
- icon_state = "rasputin3"
- },
-/area/shuttle/drop2/sulaco)
"ME" = (
/turf/closed/shuttle/dropship2/transparent{
icon_state = "96"
@@ -516,15 +536,6 @@
/obj/structure/shuttle/part/dropship2/left_outer_wing_connector,
/turf/template_noop,
/area/shuttle/drop2/sulaco)
-"Od" = (
-/obj/effect/attach_point/fuel/dropship2{
- pixel_x = -32;
- attach_id = 11
- },
-/turf/closed/shuttle/dropship2/transparent{
- icon_state = "33"
- },
-/area/shuttle/drop2/sulaco)
"Ov" = (
/obj/structure/shuttle/part/dropship2/transparent/right_inner_bottom_wing,
/turf/template_noop,
@@ -672,13 +683,6 @@
icon_state = "25"
},
/area/shuttle/drop2/sulaco)
-"VW" = (
-/obj/structure/machinery/door/airlock/hatch/cockpit/two,
-/obj/structure/blocker/forcefield/multitile_vehicles,
-/turf/open/shuttle/dropship{
- icon_state = "rasputin15"
- },
-/area/shuttle/drop2/sulaco)
"VZ" = (
/obj/item/device/radio/intercom/normandy{
layer = 3.5;
@@ -715,7 +719,7 @@ Rr
Rr
BG
SQ
-mn
+gV
sk
Xr
Rr
@@ -732,7 +736,7 @@ OI
GE
lJ
PJ
-mA
+ut
jc
pU
nS
@@ -819,7 +823,7 @@ LY
Bi
MQ
VZ
-VW
+lj
GN
bJ
ZK
@@ -828,11 +832,11 @@ Bb
Iv
rc
vd
-Bg
+db
vd
-hn
+ft
vd
-MA
+uC
PJ
Rr
Rr
@@ -887,7 +891,7 @@ RJ
Rr
Rr
Rr
-gH
+Dq
yl
SY
it
@@ -916,7 +920,7 @@ fI
fx
Tp
PJ
-vh
+he
gG
RG
QK
@@ -945,7 +949,7 @@ Rr
Rr
yh
UP
-Od
+ba
zt
Uu
Rr
diff --git a/maps/shuttles/escape_shuttle_e.dmm b/maps/shuttles/escape_shuttle_e.dmm
index 0ba589df217e..65efffe43619 100644
--- a/maps/shuttles/escape_shuttle_e.dmm
+++ b/maps/shuttles/escape_shuttle_e.dmm
@@ -9,10 +9,10 @@
icon_state = "wall2"
},
/area/shuttle/escape_pod)
-"e" = (
-/obj/docking_port/mobile/crashable/escape_shuttle/e,
-/turf/closed/shuttle/escapepod{
- icon_state = "wall9"
+"f" = (
+/turf/open/shuttle/escapepod{
+ icon_state = "floor0";
+ dir = 8
},
/area/shuttle/escape_pod)
"i" = (
@@ -53,10 +53,6 @@
icon_state = "wall13"
},
/area/shuttle/escape_pod)
-"z" = (
-/obj/structure/machinery/cryopod/evacuation,
-/turf/open/shuttle/escapepod,
-/area/shuttle/escape_pod)
"E" = (
/turf/closed/shuttle/escapepod{
icon_state = "wall10"
@@ -67,16 +63,16 @@
icon_state = "wall11"
},
/area/shuttle/escape_pod)
-"L" = (
+"M" = (
/obj/structure/machinery/cryopod/evacuation,
-/obj/structure/sign/safety/cryo{
- pixel_x = -18
+/turf/open/shuttle/escapepod{
+ icon_state = "floor4"
},
-/turf/open/shuttle/escapepod,
/area/shuttle/escape_pod)
-"N" = (
-/turf/open/shuttle/escapepod{
- icon_state = "floor10"
+"O" = (
+/obj/docking_port/mobile/crashable/escape_shuttle/e,
+/turf/closed/shuttle/escapepod{
+ icon_state = "wall9"
},
/area/shuttle/escape_pod)
"Q" = (
@@ -87,6 +83,15 @@
icon_state = "floor0"
},
/area/shuttle/escape_pod)
+"T" = (
+/obj/structure/machinery/cryopod/evacuation,
+/obj/structure/sign/safety/cryo{
+ pixel_x = -18
+ },
+/turf/open/shuttle/escapepod{
+ icon_state = "floor4"
+ },
+/area/shuttle/escape_pod)
"W" = (
/turf/closed/shuttle/escapepod{
icon_state = "wall4"
@@ -98,20 +103,20 @@ w
t
I
E
-e
+O
"}
(2,1,1) = {"
k
-z
-L
-z
+M
+T
+M
s
"}
(3,1,1) = {"
d
Q
o
-N
+f
s
"}
(4,1,1) = {"
diff --git a/maps/shuttles/escape_shuttle_e_cl.dmm b/maps/shuttles/escape_shuttle_e_cl.dmm
index 490f0abdfa95..4b605503d7de 100644
--- a/maps/shuttles/escape_shuttle_e_cl.dmm
+++ b/maps/shuttles/escape_shuttle_e_cl.dmm
@@ -25,31 +25,24 @@
icon_state = "wall13"
},
/area/shuttle/escape_pod)
-"i" = (
-/obj/structure/machinery/cryopod/evacuation,
-/obj/structure/sign/safety/cryo{
- pixel_x = -18
+"n" = (
+/turf/open/shuttle/escapepod{
+ icon_state = "floor0";
+ dir = 8
},
-/turf/open/shuttle/escapepod,
/area/shuttle/escape_pod)
"s" = (
/turf/closed/shuttle/escapepod{
icon_state = "wall2"
},
/area/shuttle/escape_pod)
-"u" = (
+"z" = (
/obj/structure/machinery/cryopod/evacuation,
-/turf/open/shuttle/escapepod,
-/area/shuttle/escape_pod)
-"v" = (
-/obj/structure/machinery/computer/shuttle/escape_pod_panel/liaison{
- pixel_y = 30
- },
/turf/open/shuttle/escapepod{
- icon_state = "floor0"
+ icon_state = "floor4"
},
/area/shuttle/escape_pod)
-"y" = (
+"D" = (
/obj/structure/machinery/door/airlock/evacuation/liaison{
name = "\improper Evacuation Airlock CL-1";
id_tag = "cl_evac"
@@ -68,11 +61,6 @@
icon_state = "wall6"
},
/area/shuttle/escape_pod)
-"K" = (
-/turf/open/shuttle/escapepod{
- icon_state = "floor10"
- },
-/area/shuttle/escape_pod)
"O" = (
/turf/closed/shuttle/escapepod{
icon_state = "wall4"
@@ -88,11 +76,28 @@
icon_state = "wall12"
},
/area/shuttle/escape_pod)
+"T" = (
+/obj/structure/machinery/cryopod/evacuation,
+/obj/structure/sign/safety/cryo{
+ pixel_x = -18
+ },
+/turf/open/shuttle/escapepod{
+ icon_state = "floor4"
+ },
+/area/shuttle/escape_pod)
"X" = (
/turf/closed/shuttle/escapepod{
icon_state = "wall10"
},
/area/shuttle/escape_pod)
+"Z" = (
+/obj/structure/machinery/computer/shuttle/escape_pod_panel/liaison{
+ pixel_y = 30
+ },
+/turf/open/shuttle/escapepod{
+ icon_state = "floor0"
+ },
+/area/shuttle/escape_pod)
(1,1,1) = {"
h
@@ -103,22 +108,22 @@ a
"}
(2,1,1) = {"
Q
-u
-i
-u
+z
+T
+z
E
"}
(3,1,1) = {"
s
-v
+Z
b
-K
+n
E
"}
(4,1,1) = {"
g
O
O
-y
+D
I
"}
diff --git a/maps/shuttles/escape_shuttle_n.dmm b/maps/shuttles/escape_shuttle_n.dmm
index 71f8515daba8..a7a4e9a69252 100644
--- a/maps/shuttles/escape_shuttle_n.dmm
+++ b/maps/shuttles/escape_shuttle_n.dmm
@@ -1,23 +1,4 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/turf/closed/shuttle/escapepod{
- icon_state = "wall6"
- },
-/area/shuttle/escape_pod)
-"c" = (
-/obj/docking_port/mobile/crashable/escape_shuttle/n,
-/turf/closed/shuttle/escapepod{
- icon_state = "wall9"
- },
-/area/shuttle/escape_pod)
-"f" = (
-/obj/structure/machinery/computer/shuttle/escape_pod_panel{
- pixel_y = 30
- },
-/turf/open/shuttle/escapepod{
- icon_state = "floor7"
- },
-/area/shuttle/escape_pod)
"g" = (
/turf/closed/shuttle/escapepod,
/area/shuttle/escape_pod)
@@ -26,11 +7,6 @@
icon_state = "wall1"
},
/area/shuttle/escape_pod)
-"j" = (
-/turf/open/shuttle/escapepod{
- icon_state = "floor9"
- },
-/area/shuttle/escape_pod)
"k" = (
/obj/structure/machinery/door/airlock/evacuation{
dir = 2;
@@ -45,36 +21,64 @@
icon_state = "wall2"
},
/area/shuttle/escape_pod)
-"F" = (
-/turf/closed/shuttle/escapepod{
- icon_state = "wall3"
+"n" = (
+/turf/open/shuttle/escapepod{
+ icon_state = "floor0"
},
/area/shuttle/escape_pod)
-"H" = (
-/obj/structure/machinery/cryopod/evacuation,
-/turf/open/shuttle/escapepod,
+"p" = (
+/obj/structure/machinery/computer/shuttle/escape_pod_panel{
+ pixel_y = 30
+ },
+/turf/open/shuttle/escapepod{
+ icon_state = "floor2"
+ },
/area/shuttle/escape_pod)
-"L" = (
+"v" = (
+/obj/docking_port/mobile/crashable/escape_shuttle/n,
/turf/closed/shuttle/escapepod{
- icon_state = "wall7"
+ icon_state = "wall9"
},
/area/shuttle/escape_pod)
-"Q" = (
-/turf/closed/shuttle/escapepod{
- icon_state = "wall11"
+"x" = (
+/obj/structure/machinery/cryopod/evacuation,
+/turf/open/shuttle/escapepod{
+ icon_state = "floor4"
},
/area/shuttle/escape_pod)
-"V" = (
+"z" = (
/obj/structure/machinery/cryopod/evacuation,
/obj/structure/sign/safety/cryo{
pixel_x = 8;
pixel_y = -35
},
-/turf/open/shuttle/escapepod,
+/turf/open/shuttle/escapepod{
+ icon_state = "floor4"
+ },
/area/shuttle/escape_pod)
-"W" = (
+"D" = (
/turf/open/shuttle/escapepod{
- icon_state = "floor8"
+ dir = 4
+ },
+/area/shuttle/escape_pod)
+"F" = (
+/turf/closed/shuttle/escapepod{
+ icon_state = "wall3"
+ },
+/area/shuttle/escape_pod)
+"K" = (
+/turf/closed/shuttle/escapepod{
+ icon_state = "wall6"
+ },
+/area/shuttle/escape_pod)
+"L" = (
+/turf/closed/shuttle/escapepod{
+ icon_state = "wall7"
+ },
+/area/shuttle/escape_pod)
+"Q" = (
+/turf/closed/shuttle/escapepod{
+ icon_state = "wall11"
},
/area/shuttle/escape_pod)
"Y" = (
@@ -87,29 +91,29 @@
g
Q
Q
-c
+v
"}
(2,1,1) = {"
i
-f
-H
+p
+x
L
"}
(3,1,1) = {"
k
-W
-V
+D
+z
L
"}
(4,1,1) = {"
l
-j
-H
+n
+x
L
"}
(5,1,1) = {"
F
Y
Y
-a
+K
"}
diff --git a/maps/shuttles/escape_shuttle_s.dmm b/maps/shuttles/escape_shuttle_s.dmm
index 82391a5218d5..db3f602bdb5a 100644
--- a/maps/shuttles/escape_shuttle_s.dmm
+++ b/maps/shuttles/escape_shuttle_s.dmm
@@ -4,20 +4,29 @@
icon_state = "wall1"
},
/area/shuttle/escape_pod)
-"f" = (
+"c" = (
+/obj/structure/machinery/cryopod/evacuation,
/turf/open/shuttle/escapepod{
- icon_state = "floor12"
+ icon_state = "floor4"
},
/area/shuttle/escape_pod)
-"g" = (
-/obj/structure/machinery/cryopod/evacuation,
-/turf/open/shuttle/escapepod,
-/area/shuttle/escape_pod)
"n" = (
/turf/closed/shuttle/escapepod{
icon_state = "wall2"
},
/area/shuttle/escape_pod)
+"o" = (
+/obj/docking_port/mobile/crashable/escape_shuttle/s,
+/turf/closed/shuttle/escapepod{
+ icon_state = "wall9"
+ },
+/area/shuttle/escape_pod)
+"q" = (
+/turf/open/shuttle/escapepod{
+ icon_state = "floor0";
+ dir = 1
+ },
+/area/shuttle/escape_pod)
"v" = (
/turf/closed/shuttle/escapepod{
icon_state = "wall15"
@@ -33,11 +42,26 @@
icon_state = "wall6"
},
/area/shuttle/escape_pod)
+"B" = (
+/obj/structure/machinery/cryopod/evacuation,
+/obj/structure/sign/safety/cryo{
+ pixel_x = 8;
+ pixel_y = 28
+ },
+/turf/open/shuttle/escapepod{
+ icon_state = "floor4"
+ },
+/area/shuttle/escape_pod)
"D" = (
/turf/closed/shuttle/escapepod{
icon_state = "wall10"
},
/area/shuttle/escape_pod)
+"I" = (
+/turf/open/shuttle/escapepod{
+ dir = 8
+ },
+/area/shuttle/escape_pod)
"J" = (
/turf/closed/shuttle/escapepod{
icon_state = "wall14"
@@ -48,9 +72,13 @@
icon_state = "wall4"
},
/area/shuttle/escape_pod)
-"P" = (
+"N" = (
+/obj/structure/machinery/computer/shuttle/escape_pod_panel{
+ pixel_x = 30
+ },
/turf/open/shuttle/escapepod{
- icon_state = "floor11"
+ icon_state = "floor0";
+ dir = 8
},
/area/shuttle/escape_pod)
"Q" = (
@@ -58,14 +86,6 @@
icon_state = "wall13"
},
/area/shuttle/escape_pod)
-"R" = (
-/obj/structure/machinery/computer/shuttle/escape_pod_panel{
- pixel_x = 30
- },
-/turf/open/shuttle/escapepod{
- icon_state = "floor2"
- },
-/area/shuttle/escape_pod)
"T" = (
/obj/structure/machinery/door/airlock/evacuation{
dir = 2;
@@ -75,43 +95,29 @@
icon_state = "test_floor4"
},
/area/shuttle/escape_pod)
-"U" = (
-/obj/docking_port/mobile/crashable/escape_shuttle/s,
-/turf/closed/shuttle/escapepod{
- icon_state = "wall9"
- },
-/area/shuttle/escape_pod)
-"V" = (
-/obj/structure/machinery/cryopod/evacuation,
-/obj/structure/sign/safety/cryo{
- pixel_x = 8;
- pixel_y = 28
- },
-/turf/open/shuttle/escapepod,
-/area/shuttle/escape_pod)
(1,1,1) = {"
Q
D
D
-U
+o
"}
(2,1,1) = {"
n
-g
-f
+c
+q
v
"}
(3,1,1) = {"
a
-V
-P
+B
+I
T
"}
(4,1,1) = {"
n
-g
-R
+c
+N
J
"}
(5,1,1) = {"
diff --git a/maps/shuttles/escape_shuttle_w.dmm b/maps/shuttles/escape_shuttle_w.dmm
index 8f81c83b500b..b6b7452c798f 100644
--- a/maps/shuttles/escape_shuttle_w.dmm
+++ b/maps/shuttles/escape_shuttle_w.dmm
@@ -1,20 +1,25 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
-"a" = (
-/obj/docking_port/mobile/crashable/escape_shuttle/w,
-/turf/closed/shuttle/escapepod{
- icon_state = "wall9"
- },
-/area/shuttle/escape_pod)
"b" = (
/turf/closed/shuttle/escapepod{
icon_state = "wall8"
},
/area/shuttle/escape_pod)
+"d" = (
+/turf/open/shuttle/escapepod{
+ dir = 1
+ },
+/area/shuttle/escape_pod)
"e" = (
/turf/closed/shuttle/escapepod{
icon_state = "wall6"
},
/area/shuttle/escape_pod)
+"g" = (
+/obj/docking_port/mobile/crashable/escape_shuttle/w,
+/turf/closed/shuttle/escapepod{
+ icon_state = "wall9"
+ },
+/area/shuttle/escape_pod)
"j" = (
/turf/closed/shuttle/escapepod{
icon_state = "wall7"
@@ -30,6 +35,12 @@
icon_state = "wall2"
},
/area/shuttle/escape_pod)
+"r" = (
+/obj/structure/machinery/cryopod/evacuation,
+/turf/open/shuttle/escapepod{
+ icon_state = "floor4"
+ },
+/area/shuttle/escape_pod)
"B" = (
/turf/closed/shuttle/escapepod{
icon_state = "wall10"
@@ -45,21 +56,19 @@
icon_state = "wall4"
},
/area/shuttle/escape_pod)
-"H" = (
+"N" = (
+/obj/structure/machinery/computer/shuttle/escape_pod_panel{
+ pixel_y = 30
+ },
/turf/open/shuttle/escapepod{
- icon_state = "floor5"
+ icon_state = "floor2"
},
/area/shuttle/escape_pod)
-"I" = (
-/obj/structure/machinery/cryopod/evacuation,
-/obj/structure/sign/safety/cryo{
- pixel_x = 36
+"O" = (
+/turf/open/shuttle/escapepod{
+ icon_state = "floor0";
+ dir = 1
},
-/turf/open/shuttle/escapepod,
-/area/shuttle/escape_pod)
-"M" = (
-/obj/structure/machinery/cryopod/evacuation,
-/turf/open/shuttle/escapepod,
/area/shuttle/escape_pod)
"P" = (
/turf/closed/shuttle/escapepod{
@@ -74,39 +83,35 @@
icon_state = "test_floor4"
},
/area/shuttle/escape_pod)
-"V" = (
-/obj/structure/machinery/computer/shuttle/escape_pod_panel{
- pixel_y = 30
+"T" = (
+/obj/structure/machinery/cryopod/evacuation,
+/obj/structure/sign/safety/cryo{
+ pixel_x = 36
},
/turf/open/shuttle/escapepod{
icon_state = "floor4"
},
/area/shuttle/escape_pod)
-"W" = (
-/turf/open/shuttle/escapepod{
- icon_state = "floor12"
- },
-/area/shuttle/escape_pod)
(1,1,1) = {"
P
B
S
B
-a
+g
"}
(2,1,1) = {"
F
-V
-H
-W
+N
+d
+O
b
"}
(3,1,1) = {"
p
-M
-I
-M
+r
+T
+r
j
"}
(4,1,1) = {"